Searched defs:freelist (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_clip.h93 struct brw_reg freelist; member in struct:brw_clip_compile::__anon14330
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.cc266 // 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
534 CheckList(Span* list, Length min_pages, Length max_pages, int freelist) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.cc472 int freelist) {
474 CHECK_CONDITION(s->location == freelist); // NORMAL or RETURNED
471 CheckList(Span* list, Length min_pages, Length max_pages, int freelist) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_clip.h93 struct brw_reg freelist; member in struct:brw_clip_compile::__anon27741
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dlow_level_alloc.cc75 // 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
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlow_level_alloc.cc75 // 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
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11wm.c111 unsigned long freelist[512]; local
115 freelist[nfree++] = i;
119 XFreeColors(GFX_Display, dcmap, freelist, nfree, 0);
H A DSDL_x11video.c1413 unsigned long *freelist; local
1418 freelist = SDL_stack_alloc(unsigned long, nc);
1423 freelist[nfree++] = pixel;
1427 XFreeColors(GFX_Display, SDL_XColorMap, freelist, nfree, 0);
1428 SDL_stack_free(freelist);
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlauxlib.c519 #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/valgrind/main/coregrind/
H A Dm_mallocfree.c89 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:__anon32558
241 ULong stats__nsearches; /* total # freelist checks */
560 for (i = 0; i < N_MALLOC_LISTS; i++) a->freelist[i] = NULL;
977 // Nb: Determination of which freelist a block lives on is based on the
980 // Convert a payload size in bytes to a freelist number.
1081 a->freelist[lno] with another block on the same list but with a
1092 p_best = a->freelist[ln
[all...]
/external/chromium_org/base/third_party/dmg_fp/
H A Ddtoa.cc532 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;
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c372 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
1144 static struct config *freelist = 0; /* List of free configurations */ variable in typeref:struct:config
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadpdb.c318 unsigned short freelist; member in struct:PDB_JG_HEADER

Completed in 2055 milliseconds