Home
last modified time | relevance | path

Searched refs:Dblk (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A Dmalloc.c100 static int reclaim(Dblk, uint, int);
154 insert(Dblk newblk, uint len) in insert()
430 Dblk retblk; /* block returned to the user */ in malloc()
518 Dblk nblk; in malloc()
569 Dblk neighbor_blk; /* Ptr to potential neighbor */ in free()
571 Dblk oldblk; /* Ptr to block to be freed */ in free()
604 oldblk = (Dblk)((char*)ptr - ALIGNSIZ); in free()
626 Dblk nblk = nextblk(oldblk,nbytes); in free()
651 Dblk nblk = nextblk(neighbor_blk, neighbor_size); in free()
708 shrink(Dblk oldblk, uint oldsize, uint newsize) in shrink()
[all …]
H A Dmemalign.c62 register Dblk blk; /* For addressing fragment blocks */
65 register Dblk aligned_blk; /* The block to be returned */
93 blk = (Dblk)(p - ALIGNSIZ); /* back up to get length word */
101 aligned_blk = (Dblk)(alignedp - ALIGNSIZ);
H A Dmallint.h56 typedef struct dblk *Dblk; typedef
66 Dblk block; /* Ptr to the data block */
110 #define nextblk(p, size) ((Dblk) ((char *) (p) + (size)))
/titanic_50/usr/src/psm/stand/boot/common/
H A Dheap_kmem.c88 typedef struct dblk *Dblk; typedef
97 Dblk block; /* Ptr to the data block */
119 #define nextblk(p, size) ((Dblk) ((char *)(p) + (size)))
126 void insert(Dblk p, size_t len, Freehdr *tree);
210 insert(Dblk p, /* Ptr to the block to insert */ in insert()
693 insert((Dblk) ptr, nbytes, &kmem_info.free_root); in kmem_free()
783 Dblk p; in morecore()
790 p = (Dblk) resalloc(type, nbytes, (caddr_t)0, 0); in morecore()