Home
last modified time | relevance | path

Searched refs:nextblk (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/libmalloc/common/
H A Dmalloc.c283 hd->nextblk = ((struct header *)((char *)alloc_buf - minhead))->nextblk; in memalign()
476 next = blk->nextblk; in malloc_unlocked()
489 blk->nextblk = next; in malloc_unlocked()
535 newblk->nextblk = newend; in malloc_unlocked()
608 newblk->nextblk = blk->nextblk; in malloc_unlocked()
617 blk->nextblk = SETBUSY(blk->nextblk); in malloc_unlocked()
695 next = blk->nextblk; in free_unlocked()
708 blk->nextblk = next; in free_unlocked()
777 next = blk->nextblk; in realloc_unlocked()
793 next = next->nextblk; in realloc_unlocked()
[all …]
H A Dmallint.h60 struct header *nextblk; member
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_alloc.c541 daddr_t nextblk; in blkpref() local
588 nextblk = bap[indx - 1]; in blkpref()
593 if (nextblk < 0 && nextblk != UFS_HOLE) { in blkpref()
594 nextblk = (-bap[indx - 1]) + fs->fs_frag; in blkpref()
596 nextblk = bap[indx - 1] + fs->fs_frag; in blkpref()
600 blkstofrags(fs, fs->fs_maxcontig) != nextblk) { in blkpref()
601 return (nextblk); in blkpref()
610 nextblk += roundup(fs->fs_rotdelay * fs->fs_rps * fs->fs_nsect / in blkpref()
612 return (nextblk); in blkpref()
H A Dufs_vnops.c3866 nextblk: in ufs_readdir()
3963 goto nextblk; in ufs_readdir()
6107 daddr32_t *nextblk, *endblk; in ufs_dumpctl() local
6204 nextblk = dblk + 1; in ufs_dumpctl()
6215 if ((*dblk + fs->fs_frag) == *nextblk) in ufs_dumpctl()
6220 nextblk++; in ufs_dumpctl()
/illumos-gate/usr/src/psm/stand/boot/common/
H A Dheap_kmem.c117 #define nextblk(p, size) ((Dblk) ((char *)(p) + (size))) macro
554 kmem_free((caddr_t)nextblk(a->block, size), in kmem_alloc()
559 x->block = nextblk(a->block, nbytes); in kmem_alloc()
/illumos-gate/usr/src/uts/common/io/
H A Demul64_bsd.c1228 blklist_t *nextblk; in bsd_freeblkrange() local
1233 blk = nextblk) { in bsd_freeblkrange()
1238 nextblk = AVL_NEXT(&tgt->emul64_tgt_data, blk); in bsd_freeblkrange()
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmalloc.c1113 #define nextblk(p, size) ((TREE *)((char *)(p) + (size))) macro
1208 aligned_blk = nextblk(aligned_blk, align); in memalign()