Searched refs:nextblk (Results 1 - 10 of 10) sorted by relevance

/illumos-gate/usr/src/lib/libmalloc/common/
H A Dmalloc.c283 hd->nextblk = ((struct header *)((char *)alloc_buf - minhead))->nextblk;
284 ((struct header *)((char *)alloc_buf - minhead))->nextblk = SETBUSY(hd);
317 arena[1].nextblk = (struct header *)BUSY;
318 arena[0].nextblk = (struct header *)BUSY;
322 freeptr[1].nextblk = &(arena[0]);
466 if ((freeptr[1].nextblk-&(freeptr[1])) < nb) {
476 next = blk->nextblk;
477 if (!TESTBUSY(nextnext = next->nextblk)) {
481 nextnext = next->nextblk;
[all...]
H A Dmallint.h62 struct header *nextblk; member in struct:header
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dmemalign.c118 aligned_blk = nextblk(aligned_blk,align);
136 blk = nextblk(aligned_blk, nbytes);
H A Dmalloc.c521 nblk = nextblk(retblk, nbytes); /* ^next block */
626 Dblk nblk = nextblk(oldblk,nbytes);
651 Dblk nblk = nextblk(neighbor_blk, neighbor_size);
716 remainder = nextblk(oldblk, newsize);
801 oldneighbor = nextblk(oldblk,oldsize);
943 oldneighbor = nextblk(oldblk, oldsize);
990 freeneighbor = nextblk(freeblk, freeblk->size);
1182 _ubound = (char*) nextblk(blk,size);
1318 if ( nextblk(db, probe->size) >= pdb ) /* overlap */
1325 * the left. All addresses must be > nextblk(
[all...]
H A Dmallint.h110 #define nextblk(p, size) ((Dblk) ((char *) (p) + (size))) macro
/illumos-gate/usr/src/psm/stand/boot/common/
H A Dheap_kmem.c119 #define nextblk(p, size) ((Dblk) ((char *)(p) + (size))) macro
556 kmem_free((caddr_t)nextblk(a->block, size),
561 x->block = nextblk(a->block, nbytes);
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_alloc.c541 daddr_t nextblk; local
588 nextblk = bap[indx - 1];
593 if (nextblk < 0 && nextblk != UFS_HOLE) {
594 nextblk = (-bap[indx - 1]) + fs->fs_frag;
596 nextblk = bap[indx - 1] + fs->fs_frag;
600 blkstofrags(fs, fs->fs_maxcontig) != nextblk) {
601 return (nextblk);
610 nextblk += roundup(fs->fs_rotdelay * fs->fs_rps * fs->fs_nsect /
612 return (nextblk);
[all...]
H A Dufs_vnops.c3987 nextblk:
4084 goto nextblk;
6247 daddr32_t *nextblk, *endblk; local
6344 nextblk = dblk + 1;
6355 if ((*dblk + fs->fs_frag) == *nextblk)
6360 nextblk++;
/illumos-gate/usr/src/uts/common/io/
H A Demul64_bsd.c1228 blklist_t *nextblk; local
1233 blk = nextblk) {
1238 nextblk = AVL_NEXT(&tgt->emul64_tgt_data, blk);
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmalloc.c1115 #define nextblk(p, size) ((TREE *)((char *)(p) + (size))) macro
1210 aligned_blk = nextblk(aligned_blk, align);

Completed in 160 milliseconds