HomeSort by relevance Sort by last modified time
    Searched defs:used (Results 101 - 125 of 267) sorted by null

1 2 3 45 6 7 8 91011

  /external/dropbear/libtommath/
tommath.h 180 int used, alloc, sign; member in struct:__anon19216
188 #define USED(m) ((m)->used)
221 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
222 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
223 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
395 /* used to setup the Barrett reduction for a given modulus b */
555 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.h 86 unsigned used; member in struct:data_block
105 * This stores bulk data which is used for all memory allocations
148 /** Total memory used by the scene (in bytes). This sums all the
213 size, block->used, DATA_BLOCK_SIZE,
216 if (block->used + size > DATA_BLOCK_SIZE) {
225 ubyte *data = block->data + block->used;
226 block->used += size;
247 block->used, DATA_BLOCK_SIZE,
250 if (block->used + size + alignment - 1 > DATA_BLOCK_SIZE) {
257 ubyte *data = block->data + block->used;
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.c 22 struct list_head used; member in struct:mm_bucket
177 if (!LIST_IS_EMPTY(&bucket->used)) {
178 slab = LIST_ENTRY(struct mm_slab, bucket->used.next, head);
186 LIST_ADD(&slab->head, &bucket->used);
223 LIST_ADDTAIL(&slab->head, &bucket->used);
252 LIST_INITHEAD(&cache->bucket[i].used);
280 if (!LIST_IS_EMPTY(&cache->bucket[i].used) ||
286 nouveau_mm_free_slabs(&cache->bucket[i].used);
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_context.c 70 uint32_t used; member in struct:vmw_svga_winsys_context::__anon25310
77 uint32_t used; member in struct:vmw_svga_winsys_context::__anon25311
85 uint32_t used; member in struct:vmw_svga_winsys_context::__anon25312
142 for(i = 0; i < vswc->region.used; ++i) {
154 if (vswc->command.used || pfence != NULL)
159 vswc->command.used,
165 vswc->command.used = 0;
168 for(i = 0; i < vswc->surface.used + vswc->surface.staged; ++i) {
175 vswc->surface.used = 0;
178 for(i = 0; i < vswc->region.used + vswc->region.staged; ++i)
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_save.h 112 GLuint used; member in struct:vbo_save_vertex_store
118 GLuint used; member in struct:vbo_save_primitive_store
126 GLvertexformat vtxfmt_noop; /**< Used if out_of_memory is true */
  /external/openssl/crypto/bn/
bn_ctx.c 23 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
104 unsigned used, size; member in struct:bignum_pool
146 unsigned int used; member in struct:bignum_ctx
162 while(bnidx < ctx->used)
197 /* This function is an evil legacy and should not be used. This implementation
208 ctx->used = 0;
225 ret->used = 0;
262 else if(!BN_STACK_push(&ctx->stack, ctx->used))
279 if(fp < ctx->used)
280 BN_POOL_release(&ctx->pool, ctx->used - fp)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events.c 322 int i, used; local
329 used = 0;
333 used += SDL_AddEvent(&events[i]);
346 while ((used < numevents)&&(spot != SDL_EventQ.tail)) {
348 events[used++] = SDL_EventQ.event[spot];
362 used = -1;
364 return(used);
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.h 53 int used; member in struct:vidmem_bucket
88 int shadow_fb; /* Tells whether a shadow is being used. */
  /external/qemu/
net.h 18 /* Packets may still be sent if this returns zero. It's used to
92 int used; member in struct:NICInfo
  /external/skia/src/pathops/
SkIntersections.h 184 int used() const { function in class:SkIntersections
242 int computePoints(const SkDLine& line, int used);
243 // used by addCoincident to remove ordinary intersections in range
  /external/wpa_supplicant_8/src/tls/
tlsv1_client.c 117 * mask of zero is used per the RFC 4346, 6.2.3.2 CBC Block
148 int used; local
184 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
186 if (used < 0) {
192 if (used == 0) {
228 pos += used;
270 * This function is used after TLS handshake has been completed successfully to
303 * This function is used after TLS handshake has been completed successfully to
311 int used; local
342 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos
    [all...]
tlsv1_server.c 114 int used; local
130 used = tlsv1_record_receive(&conn->rl, pos, end - pos,
132 if (used < 0) {
138 if (used == 0) {
160 pos += used;
197 * This function is used after TLS handshake has been completed successfully to
230 * This function is used after TLS handshake has been completed successfully to
238 int used; local
250 used = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
252 if (used < 0)
    [all...]
  /frameworks/wilhelm/tools/permute/
permute.c 105 unsigned used; local
107 used = split(s, leftStart, leftLength, segmentBudget / 2);
108 used += split(s, rightStart, rightLength, segmentBudget - used);
110 used = split(s, rightStart, rightLength, segmentBudget / 2);
111 used += split(s, leftStart, leftLength, segmentBudget - used);
113 assert(used >= 2);
114 assert(used <= segmentBudget);
115 return used;
223 unsigned used; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
dhdioctl.h 42 uint used; /* bytes read or written (optional) */ member in struct:dhd_ioctl
  /system/core/cpio/
mkbootfs.c 89 // approximate range that was being used already, and avoiding small
282 int used = 0; local
293 if (used >= allocated) {
299 struct fs_config_entry* cc = canned_config + used;
310 ++used;
312 if (used >= allocated) {
317 canned_config[used].name = NULL;
  /external/bluetooth/bluedroid/btif/src/
btif_sock_thread.c 101 int used; member in struct:__anon3409
184 APPL_TRACE_DEBUG2("ts[%d].used:%d", i, ts[i].used);
185 if(!ts[i].used)
187 ts[i].used = 1;
199 ts[h].used = 0;
215 ts[h].used = 0;
250 /* create dummy socket pair used to wake up select loop */
  /external/chromium/net/disk_cache/
block_files.cc 23 // This array is used to perform a fast lookup of the nibble bit pattern to the
126 // Returns true if the specified block is used. Note that this is a simplified
164 // Returns true if the current block file should not be used as-is to store more
589 // We are interested in the total number of blocks used by this file type, and
591 // used blocks). In order to find out the number of used blocks, we have to
605 int used = header->max_entries; local
607 used -= header->empty[i] * (i + 1);
608 DCHECK_GE(used, 0);
610 *used_count += used;
    [all...]
  /external/chromium_org/courgette/
assembly_program.cc 286 // First see which indexes have not been used. The 'available' vector could
290 int used = 0; local
298 ++used;
302 VLOG(1) << used << " of " << labels->size() << " labels pre-assigned";
304 // Are there any unused labels that happen to be adjacent following a used
324 // Are there any unused labels that happen to be adjacent preceeding a used
  /external/chromium_org/net/disk_cache/
block_files.cc 24 // This array is used to perform a fast lookup of the nibble bit pattern to the
85 // than the actual number of used blocks.
657 // We are interested in the total number of blocks used by this file type, and
659 // used blocks). In order to find out the number of used blocks, we have to
673 int used = header->max_entries; local
675 used -= header->empty[i] * (i + 1);
676 DCHECK_GE(used, 0);
678 *used_count += used;
  /external/chromium_org/third_party/libxml/src/
parserInternals.c 281 int used; local
296 used = in->cur - in->buf->buffer->content;
297 ret = xmlBufferShrink(in->buf->buffer, used);
382 * This function removes used input for the parser.
386 int used; local
401 used = in->cur - in->buf->buffer->content;
406 if (used > INPUT_CHUNK) {
407 ret = xmlBufferShrink(in->buf->buffer, used - LINE_LEN);
1099 * We used to keep the internal content in the
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkScaledImageCache.cpp 320 size_t used = rec->bytesUsed(); local
321 SkASSERT(used <= bytesUsed);
322 bytesUsed -= used;
424 size_t used = 0; local
429 used += rec->bytesUsed();
430 SkASSERT(used <= fBytesUsed);
439 SkASSERT(used >= rec->bytesUsed());
440 used -= rec->bytesUsed();
445 SkASSERT(0 == used);
  /external/freetype/src/cff/
cf2hints.h 12 /* used, modified, and distributed under the FreeType Project License, */
88 FT_Bool used; /* DS positions are valid */ member in struct:CF2_StemHintRec_
108 * monotonically in the array. `CF2_Hint' elements are also used as
210 /* references used to call `cf2_hintmap_build', if necessary */
  /external/libxml2/
parserInternals.c 281 int used; local
296 used = in->cur - in->buf->buffer->content;
297 ret = xmlBufferShrink(in->buf->buffer, used);
382 * This function removes used input for the parser.
386 int used; local
401 used = in->cur - in->buf->buffer->content;
406 if (used > INPUT_CHUNK) {
407 ret = xmlBufferShrink(in->buf->buffer, used - LINE_LEN);
1099 * We used to keep the internal content in the
    [all...]
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 116 /// current basic block. When a LiveReg is used to represent a live-out
414 // Save live registers at end of MBB - used by enterBasicBlock().
538 SmallVector<int, 4> used; local
557 used.push_back(rx);
576 for (SmallVectorImpl<int>::iterator i=used.begin(), e=used.end(); i!=e; ++i) {
617 for (SmallVectorImpl<int>::iterator i=used.begin(), e=used.end(); i!=e; ++i)
655 // If no relevant registers are used in the function, we can skip it
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
AACTrackImpl.java 266 int used = (int) Math.ceil(brb.getPosition() / 8.0); local
268 used += 2;
270 inputStream.skip(used);
271 frameSize -= used;

Completed in 1497 milliseconds

1 2 3 45 6 7 8 91011