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 89 freelist previous ptr (sizeof(void*) bytes)
93 freelist next ptr (sizeof(void*) bytes)
191 // An arena. 'freelist' is a circular, doubly-linked list. 'rz_szB' is
209 Block* freelist[N_MALLOC_LISTS]; member in struct:__anon37162
241 ULong stats__nsearches; /* total # freelist checks */
560 for (i = 0; i < N_MALLOC_LISTS; i++) a->freelist[i] = NULL;
    [all...]
  /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::__anon18955
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::__anon32352
brw_clip_tri.c 105 c->reg.freelist = brw_uw16_reg(BRW_GENERAL_REGISTER_FILE, i, 0);
  /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/chromium_org/third_party/cython/src/Cython/Compiler/
Code.py 634 freelist = self.temps_free.get((type, manage_ref))
635 if freelist is not None and len(freelist) > 0:
636 result = freelist.pop()
658 freelist = self.temps_free.get((type, manage_ref))
659 if freelist is None:
660 freelist = []
661 self.temps_free[(type, manage_ref)] = freelist
662 if name in freelist:
664 freelist.append(name
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
misc.c 34 static Bigint *freelist[Kmax+1]; variable
60 if (k <= Kmax && (rv = freelist[k]) !=0) {
61 freelist[k] = rv->next;
107 v->next = freelist[v->k];
108 freelist[v->k] = v;
  /external/chromium_org/third_party/skia/third_party/lua/src/
lauxlib.c 519 #define freelist 0 macro
529 lua_rawgeti(L, t, freelist); /* get first free element */
530 ref = (int)lua_tointeger(L, -1); /* ref = t[freelist] */
534 lua_rawseti(L, t, freelist); /* (t[freelist] = t[ref]) */
546 lua_rawgeti(L, t, freelist);
547 lua_rawseti(L, t, ref); /* t[ref] = t[freelist] */
549 lua_rawseti(L, t, freelist); /* t[freelist] = ref */
  /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
  /ndk/sources/android/support/src/stdio/
strtod.c 458 static Bigint *freelist[Kmax+1]; variable
623 if ((rv = freelist[k]) != NULL) {
624 freelist[k] = rv->next;
654 v->next = freelist[v->k];
655 freelist[v->k] = v;
    [all...]
  /external/srec/srec/Semproc/src/
SemanticGraphImpl.c 556 /* initialize the freelist */
    [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 && freelist[k]) {
552 rv = freelist[k];
553 freelist[k] = rv->next;
594 v->next = freelist[v->k];
595 freelist[v->k] = v;
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readpdb.c 318 unsigned short freelist; member in struct:PDB_JG_HEADER
    [all...]

Completed in 1146 milliseconds