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

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

Completed in 59 milliseconds