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

  /external/valgrind/main/coregrind/
m_mallocfree.c 87 freelist previous ptr (sizeof(void*) bytes)
91 freelist next ptr (sizeof(void*) bytes)
189 // An arena. 'freelist' is a circular, doubly-linked list. 'rz_szB' is
207 Block* freelist[N_MALLOC_LISTS]; member in struct:__anon15210
230 ULong stats__nsearches; /* total # freelist checks */
521 for (i = 0; i < N_MALLOC_LISTS; i++) a->freelist[i] = NULL;
    [all...]
  /external/grub/stage2/
jfs.h 345 s8 freelist; /* 1: freelist header */ member in struct:__anon7131::__anon7132
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:__anon7133::__anon7134
  /bionic/linker/
linker.cpp 88 static soinfo *freelist = NULL; variable
282 /* The freelist is populated when we call soinfo_free(), which in turn is
285 if (!freelist) {
290 freelist = sopool + socount++;
291 freelist->next = NULL;
294 soinfo* si = freelist;
295 freelist = freelist->next;
335 si->next = freelist;
336 freelist = si
    [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/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/valgrind/main/coregrind/m_debuginfo/
readpdb.c 340 unsigned short freelist; member in struct:PDB_JG_HEADER
    [all...]

Completed in 294 milliseconds