HomeSort by relevance Sort by last modified time
    Searched defs:freelist (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip.h 93 struct brw_reg freelist; member in struct:brw_clip_compile::__anon15057
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip.h 93 struct brw_reg freelist; member in struct:brw_clip_compile::__anon25401
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
low_level_alloc.cc 75 // Next two fields: in unallocated blocks: freelist skiplist data
88 // A trivial skiplist implementation. This is used to keep the freelist
171 RAW_CHECK(e == found, "element not in freelist");
188 SpinLock mu; // protects freelist, allocation_count,
190 AllocList freelist; // head of free list; sorted by addr (under mu) member in struct:LowLevelAlloc::Arena
268 while (arena->roundup < sizeof (arena->freelist.header)) {
274 arena->freelist.header.size = 0;
275 arena->freelist.header.magic =
276 Magic(kMagicUnallocated, &arena->freelist.header);
277 arena->freelist.header.arena = arena
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
low_level_alloc.cc 75 // Next two fields: in unallocated blocks: freelist skiplist data
88 // A trivial skiplist implementation. This is used to keep the freelist
171 RAW_CHECK(e == found, "element not in freelist");
188 SpinLock mu; // protects freelist, allocation_count,
190 AllocList freelist; // head of free list; sorted by addr (under mu) member in struct:LowLevelAlloc::Arena
268 while (arena->roundup < sizeof (arena->freelist.header)) {
274 arena->freelist.header.size = 0;
275 arena->freelist.header.magic =
276 Magic(kMagicUnallocated, &arena->freelist.header);
277 arena->freelist.header.arena = arena
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11wm.c 111 unsigned long freelist[512]; local
115 freelist[nfree++] = i;
119 XFreeColors(GFX_Display, dcmap, freelist, nfree, 0);
SDL_x11video.c 1413 unsigned long *freelist; local
    [all...]
  /bionic/libc/stdlib/
strtod.c 371 static Bigint *freelist[Kmax+1]; variable
412 if ((rv = freelist[k]) != NULL) {
413 freelist[k] = rv->next;
443 v->next = freelist[v->k];
444 freelist[v->k] = v;
    [all...]
  /external/grub/stage2/
jfs.h 345 s8 freelist; /* 1: freelist header */ member in struct:__anon20262::__anon20263
376 * end of entry stot list or freelist is marked with -1.
386 s8 freelist; /* 1: slot index of head of freelist */ member in struct:__anon20264::__anon20265
  /external/valgrind/main/coregrind/
m_mallocfree.c 88 freelist previous ptr (sizeof(void*) bytes)
92 freelist next ptr (sizeof(void*) bytes)
190 // An arena. 'freelist' is a circular, doubly-linked list. 'rz_szB' is
208 Block* freelist[N_MALLOC_LISTS]; member in struct:__anon29655
231 ULong stats__nsearches; /* total # freelist checks */
553 for (i = 0; i < N_MALLOC_LISTS; i++) a->freelist[i] = NULL;
    [all...]
  /external/chromium/base/third_party/dmg_fp/
dtoa.cc 532 static Bigint *freelist[Kmax+1]; member in namespace:dmg_fp
551 if (k <= Kmax && (rv = freelist[k]))
552 freelist[k] = rv->next;
592 v->next = freelist[v->k];
593 freelist[v->k] = v;
    [all...]
  /external/chromium_org/base/third_party/dmg_fp/
dtoa.cc 532 static Bigint *freelist[Kmax+1]; member in namespace:dmg_fp
551 if (k <= Kmax && (rv = freelist[k]))
552 freelist[k] = rv->next;
592 v->next = freelist[v->k];
593 freelist[v->k] = v;
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 372 static struct action *freelist = 0; local
375 if( freelist==0 ){
378 freelist = (struct action *)calloc(amt, sizeof(struct action));
379 if( freelist==0 ){
383 for(i=0; i<amt-1; i++) freelist[i].next = &freelist[i+1];
384 freelist[amt-1].next = 0;
386 newaction = freelist;
387 freelist = freelist->next
1144 static struct config *freelist = 0; \/* List of free configurations *\/ variable in typeref:struct:config
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readpdb.c 317 unsigned short freelist; member in struct:PDB_JG_HEADER
    [all...]

Completed in 1457 milliseconds