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

  /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/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:__anon29676
231 ULong stats__nsearches; /* total # freelist checks */
553 for (i = 0; i < N_MALLOC_LISTS; i++) a->freelist[i] = NULL;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.cpp 208 PartitionFreelistEntry* freelist = page->freelistHead;
211 // This loop sets up the initial chain of freelist pointers in the new page.
213 PartitionFreelistEntry* next = reinterpret_cast<PartitionFreelistEntry*>(reinterpret_cast<char*>(freelist) + size);
214 freelist->next = partitionFreelistMask(next);
215 freelist = next;
217 freelist->next = partitionFreelistMask(0);
365 // Empty bucket with no freelist pages. Skip reporting it.
  /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
brw_clip_tri.c 105 c->reg.freelist = brw_uw16_reg(BRW_GENERAL_REGISTER_FILE, i, 0);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip.h 93 struct brw_reg freelist; member in struct:brw_clip_compile::__anon25422
brw_clip_tri.c 105 c->reg.freelist = brw_uw16_reg(BRW_GENERAL_REGISTER_FILE, i, 0);
  /external/grub/stage2/
jfs.h 345 s8 freelist; /* 1: freelist header */ member in struct:__anon20261::__anon20262
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:__anon20263::__anon20264
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.h 182 int freelist); // ON_NORMAL_FREELIST or ON_RETURNED_FREELIST
page_heap.cc 266 // We're about to put the merge span into the returned freelist and call
535 int freelist) {
537 CHECK_CONDITION(s->location == freelist); // NORMAL or RETURNED
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.h 172 int freelist); // ON_NORMAL_FREELIST or ON_RETURNED_FREELIST
page_heap.cc 472 int freelist) {
474 CHECK_CONDITION(s->location == freelist); // NORMAL or RETURNED
  /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...]
  /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...]
spaceanal.tcl 399 statline {Pages on the freelist (per header)} $free_pgcnt2 $free_percent2
400 statline {Pages on the freelist (calculated)} $free_pgcnt $free_percent
466 Pages on the freelist
469 future use. The percentage at the right is the number of freelist pages
  /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/srec/srec/Semproc/src/
SemanticGraphImpl.c 556 /* initialize the freelist */
    [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/valgrind/main/coregrind/m_debuginfo/
readpdb.c 317 unsigned short freelist; member in struct:PDB_JG_HEADER
    [all...]

Completed in 429 milliseconds