Searched refs:MINSIZE (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/bin/sh/
H A Dmemalloc.c119 #define MINSIZE 496 /* minimum size of a block. */ macro
140 if (nbytes < MINSIZE)
141 nbytes = MINSIZE;
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_ohash.c44 #define MINSIZE (1UL << 4) macro
96 if (ns < MINSIZE)
97 ns = MINSIZE;
198 if (h->size < MINSIZE)
199 h->size = MINSIZE;
/freebsd-11-stable/lib/libopenbsd/
H A Dohash.c37 #define MINSIZE (1UL << 4) macro
89 if (ns < MINSIZE)
90 ns = MINSIZE;
191 if (h->size < MINSIZE)
192 h->size = MINSIZE;
/freebsd-11-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c1739 MINSIZE bytes long, it is replenished.
1761 #define MINSIZE \ macro
1772 low enough so that adding MINSIZE will also not wrap around zero.
1777 (unsigned long)(INTERNAL_SIZE_T)(-2 * MINSIZE))
1788 (((req) + sizeof(void *) + SIZE_SZ + MALLOC_ALIGN_MASK < MINSIZE) ? \
1789 MINSIZE : \
2336 /* top size is always at least MINSIZE */
2337 assert((unsigned long)(sz) >= MINSIZE);
2380 if ((unsigned long)(sz) >= MINSIZE)
2434 assert(chunksize(next) >= MINSIZE);
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dst.c110 * MINSIZE is the minimum size of a dictionary.
113 #define MINSIZE 8 macro
163 for (i = 0, newsize = MINSIZE;

Completed in 184 milliseconds