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

/illumos-gate/usr/src/lib/libc/port/gen/
H A Dmalloc.c138 #define NPS (WORDSIZE*8) macro
139 ASSERT((size + WORDSIZE) * NPS >= MINSIZE);
141 /* get NPS of these block types */
142 if ((List[i] = _malloc_unlocked((size + WORDSIZE) * NPS)) == 0)
146 for (n = 0, np = List[i]; n < NPS; ++n) {
/illumos-gate/usr/src/lib/watchmalloc/common/
H A Dmalloc.c110 #define NPS (WORDSIZE*8) macro
129 ASSERT((size + WORDSIZE) * NPS >= MINSIZE);
131 /* get NPS of these block types */
132 if ((np = malloc_unlocked((size + WORDSIZE)*NPS)) == NULL)
136 for (n = 0, List[i] = np; n < NPS; ++n) {
140 if (n == NPS - 1) {

Completed in 62 milliseconds