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

  /external/grub/stage2/
jfs.h 345 s8 freelist; /* 1: freelist header */ member in struct:__anon3821::__anon3822
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:__anon3823::__anon3824
  /bionic/linker/
linker.c 90 static soinfo *freelist = NULL; variable
272 /* The freelist is populated when we call free_info(), which in turn is
275 if (!freelist) {
280 freelist = sopool + socount++;
281 freelist->next = NULL;
284 si = freelist;
285 freelist = freelist->next;
322 si->next = freelist;
323 freelist = si
    [all...]
  /external/qemu/distrib/sdl-1.2.12/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 1388 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/v8/src/third_party/dtoa/
dtoa.c 487 static Bigint *freelist[Kmax+1]; variable
506 if (k <= Kmax && (rv = freelist[k])) {
507 freelist[k] = rv->next;
544 v->next = freelist[v->k];
545 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...]

Completed in 219 milliseconds