Home
last modified time | relevance | path

Searched refs:_lbound (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Dmalloc.c85 char *_lbound = NULL; /* lower bound of heap */ variable
592 if( ptr < (ptr_t)_lbound || ptr > (ptr_t)_ubound ) { in free()
783 ptr < (ptr_t)_lbound || in realloc()
1133 if (_lbound == NULL) /* set _lbound the first time through */ in morecore()
1134 _lbound = (char*) p; in morecore()
1139 __mallinfo.arena = _ubound - _lbound; in morecore()
1177 if (_lbound == NULL) /* set _lbound on first allocation */ in getfreehdr()
1178 _lbound = (char*)blk; in getfreehdr()
1185 __mallinfo.arena = _ubound - _lbound; in getfreehdr()
1255 || ((Dblk)(p) < (Dblk)_lbound || (Dblk)(p) > (Dblk)_ubound)){\
[all …]
H A Dmallint.h113 #define heapsize() (_ubound - _lbound)
117 extern char *_lbound, *_ubound;