Searched refs:nextfree (Results 1 – 9 of 9) sorted by relevance
/titanic_41/usr/src/lib/libmalloc/common/ |
H A D | mallint.h | 63 struct header *nextfree; member 78 struct lblk *nextfree; member 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;\ 126 assert((x)->nextfree != (x));\ 128 #define MOVEHEAD(x) freeptr[1].prevfree->nextfree = freeptr[0].nextfree;\ [all …]
|
H A D | malloc.c | 162 p = p->nextfree; in checkq() 163 assert(p->prevfree->nextfree == p); in checkq() 170 assert(p->nextfree->prevfree == p); in checkq() 315 if (freeptr[0].nextfree == GROUND) { in malloc_unlocked() 321 freeptr[0].nextfree = &(freeptr[1]); in malloc_unlocked() 397 CLRSMAL(lblk->header.nextfree)) == in malloc_unlocked() 474 blk = blk->nextfree; in malloc_unlocked() 598 nblk = blk->nextfree; in malloc_unlocked() 673 lblk->header.nextfree = SETSMAL(holdblk->lfreeq); in free_unlocked() 977 if (freeptr[0].nextfree == GROUND) { in mallinfo() [all …]
|
/titanic_41/usr/src/cmd/fm/modules/common/eversholt/ |
H A D | config.c | 272 if ((cfgstr = cdata->begin) == cdata->nextfree) { in config_cook() 290 "nextfree is %p\n%p ", (void *)cdata->nextfree, (void *)cfgstr); in config_cook() 291 while (cfgstr < cdata->nextfree) { in config_cook() 302 while (cfgstr < cdata->nextfree) { in config_cook() 303 while (*cfgstr == '/' && cfgstr < cdata->nextfree) { in config_cook() 325 if (cfgstr >= cdata->nextfree) in config_cook()
|
H A D | platform.c | 375 if (rawdata->nextfree + addlen >= rawdata->end) { in cfgadjust() 376 newlen = (((rawdata->nextfree - rawdata->begin + 1 + addlen) in cfgadjust() 378 curnext = rawdata->nextfree - rawdata->begin; in cfgadjust() 380 rawdata->nextfree = rawdata->begin + curnext; in cfgadjust() 546 (void) snprintf(rawdata->nextfree, in add_prop_val() 547 rawdata->end - rawdata->nextfree, "%s=%s", in add_prop_val() 555 rawdata->nextfree += addlen; in add_prop_val() 584 (void) strcpy(rawdata->nextfree, path); in cfgcollect() 585 rawdata->nextfree += addlen; in cfgcollect() 671 Lastcfg->end = Lastcfg->nextfree = Lastcfg->begin + cfglen; in platform_restore_config() [all …]
|
H A D | config.h | 52 char *nextfree; member
|
H A D | fme.c | 820 cfgdata->end = cfgdata->nextfree = cfgdata->begin + rawsz; in fme_restart() 824 cfgdata->begin = cfgdata->end = cfgdata->nextfree = NULL; in fme_restart()
|
/titanic_41/usr/src/cmd/fs.d/pcfs/mkfs/ |
H A D | mkfs.c | 2649 pc_cluster32_t nextfree, ci; in build_fat() local 2693 nextfree = 2; in build_fat() 2715 mark_cluster(fatp, nextfree++, in build_fat() 2723 mark_cluster(fatp, nextfree, PCF_LASTCLUSTER32); in build_fat() 2724 wbpb->bpb32.root_dir_clust = nextfree++; in build_fat() 2732 *ffstartclust = nextfree; in build_fat() 2748 for (ci = 0; (int)ci < (int)(numclust-1); ci++, nextfree++) in build_fat() 2749 mark_cluster(fatp, nextfree, nextfree + 1); in build_fat() 2750 mark_cluster(fatp, nextfree++, in build_fat() 2767 fsinfop->fsi_incore.fs_next_free = LE_32(nextfree); in build_fat()
|
/titanic_41/usr/src/cmd/fs.d/pcfs/fsck/ |
H A D | fsck_pcfs.h | 120 #define nextfree _unionelem._nextfree macro
|
H A D | clusters.c | 416 pool[i].nextfree = &pool[i+1]; in newClusterInfo() 418 pool[CHUNKSIZE-1].nextfree = NULL; in newClusterInfo() 421 pool = pool->nextfree; in newClusterInfo() 466 old->nextfree = pool; in freeClusterInfo()
|