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

  /onnv/onnv-gate/usr/src/lib/libmalloc/common/
mallint.h 63 struct header *nextfree; member in struct:header
78 struct lblk *nextfree; member in union:lblk::__anon3756
119 (x)->nextfree = freeptr[0].nextfree;\
120 freeptr[0].nextfree->prevfree = (x);\
121 freeptr[0].nextfree = (x);\
122 assert((x)->nextfree != (x));\
124 #define DELFREEQ(x) (x)->prevfree->nextfree = (x)->nextfree;\
125 (x)->nextfree->prevfree = (x)->prevfree;
    [all...]
malloc.c 163 p = p->nextfree;
164 assert(p->prevfree->nextfree == p);
171 assert(p->nextfree->prevfree == p);
316 if (freeptr[0].nextfree == GROUND) {
322 freeptr[0].nextfree = &(freeptr[1]);
398 CLRSMAL(lblk->header.nextfree)) ==
475 blk = blk->nextfree;
599 nblk = blk->nextfree;
674 lblk->header.nextfree = SETSMAL(holdblk->lfreeq);
966 if (freeptr[0].nextfree == GROUND)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/eversholt/
config.h 51 * nextfree points to where the next string may be added.
55 char *nextfree; member in struct:cfgdata
config.c 273 if ((cfgstr = cdata->begin) == cdata->nextfree) {
291 "nextfree is %p\n%p ", (void *)cdata->nextfree, (void *)cfgstr);
292 while (cfgstr < cdata->nextfree) {
303 while (cfgstr < cdata->nextfree) {
304 while (*cfgstr == '/' && cfgstr < cdata->nextfree) {
326 if (cfgstr >= cdata->nextfree)
platform.c 336 if (rawdata->nextfree + addlen >= rawdata->end) {
337 newlen = (((rawdata->nextfree - rawdata->begin + 1 + addlen)
339 curnext = rawdata->nextfree - rawdata->begin;
341 rawdata->nextfree = rawdata->begin + curnext;
491 (void) snprintf(rawdata->nextfree,
492 rawdata->end - rawdata->nextfree, "%s=%s",
497 rawdata->nextfree += addlen;
526 (void) strcpy(rawdata->nextfree, path);
527 rawdata->nextfree += addlen;
613 Lastcfg->end = Lastcfg->nextfree = Lastcfg->begin + cfglen
    [all...]
fme.c 750 cfgdata->end = cfgdata->nextfree = cfgdata->begin + rawsz;
754 cfgdata->begin = cfgdata->end = cfgdata->nextfree = NULL;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/pcfs/fsck/
fsck_pcfs.h 120 #define nextfree _unionelem._nextfree macro
clusters.c 416 pool[i].nextfree = &pool[i+1];
418 pool[CHUNKSIZE-1].nextfree = NULL;
421 pool = pool->nextfree;
466 old->nextfree = pool;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/pcfs/mkfs/
mkfs.c 2672 pc_cluster32_t nextfree, ci; local
    [all...]

Completed in 240 milliseconds