Searched refs:nextfree (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libmalloc/common/
H A Dmallint.h63 struct header *nextfree; member in struct:header
78 struct lblk *nextfree; member in union:lblk::__anon3575
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
[all...]
H A Dmalloc.c162 p = p->nextfree;
163 assert(p->prevfree->nextfree == p);
170 assert(p->nextfree->prevfree == p);
315 if (freeptr[0].nextfree == GROUND) {
321 freeptr[0].nextfree = &(freeptr[1]);
397 CLRSMAL(lblk->header.nextfree)) ==
474 blk = blk->nextfree;
598 nblk = blk->nextfree;
673 lblk->header.nextfree = SETSMAL(holdblk->lfreeq);
977 if (freeptr[0].nextfree
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dconfig.h48 * nextfree points to where the next string may be added.
52 char *nextfree; member in struct:cfgdata
H A Dconfig.c272 if ((cfgstr = cdata->begin) == cdata->nextfree) {
290 "nextfree is %p\n%p ", (void *)cdata->nextfree, (void *)cfgstr);
291 while (cfgstr < cdata->nextfree) {
302 while (cfgstr < cdata->nextfree) {
303 while (*cfgstr == '/' && cfgstr < cdata->nextfree) {
325 if (cfgstr >= cdata->nextfree)
H A Dplatform.c375 if (rawdata->nextfree + addlen >= rawdata->end) {
376 newlen = (((rawdata->nextfree - rawdata->begin + 1 + addlen)
378 curnext = rawdata->nextfree - rawdata->begin;
380 rawdata->nextfree = rawdata->begin + curnext;
546 (void) snprintf(rawdata->nextfree,
547 rawdata->end - rawdata->nextfree, "%s=%s",
555 rawdata->nextfree += addlen;
584 (void) strcpy(rawdata->nextfree, path);
585 rawdata->nextfree += addlen;
671 Lastcfg->end = Lastcfg->nextfree
[all...]
H A Dfme.c820 cfgdata->end = cfgdata->nextfree = cfgdata->begin + rawsz;
824 cfgdata->begin = cfgdata->end = cfgdata->nextfree = NULL;
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dfsck_pcfs.h120 #define nextfree _unionelem._nextfree macro
H A Dclusters.c416 pool[i].nextfree = &pool[i+1];
418 pool[CHUNKSIZE-1].nextfree = NULL;
421 pool = pool->nextfree;
466 old->nextfree = pool;
/illumos-gate/usr/src/cmd/fs.d/pcfs/mkfs/
H A Dmkfs.c2649 pc_cluster32_t nextfree, ci; local
2693 nextfree = 2;
2715 mark_cluster(fatp, nextfree++,
2723 mark_cluster(fatp, nextfree, PCF_LASTCLUSTER32);
2724 wbpb->bpb32.root_dir_clust = nextfree++;
2732 *ffstartclust = nextfree;
2748 for (ci = 0; (int)ci < (int)(numclust-1); ci++, nextfree++)
2749 mark_cluster(fatp, nextfree, nextfree + 1);
2750 mark_cluster(fatp, nextfree
[all...]

Completed in 90 milliseconds