smallcache
d->smallcache[j].max = 0;
d->smallcache[j].max =
sz += d->smallcache[j].max * sizeof(void *);
d->smallcache[j].pages = p;
p = (char *)p + d->smallcache[j].max *
struct smallcache smallcache[MAX_SMALLCACHEABLE_SIZE];
struct smallcache *cache;
cache = &d->smallcache[i];
struct smallcache *cache;
if (psz > MAX_SMALLCACHEABLE_SIZE || d->smallcache[psz - 1].max == 0) {
cache = &d->smallcache[psz - 1];
struct smallcache *cache;
if (psz <= MAX_SMALLCACHEABLE_SIZE && d->smallcache[psz - 1].max > 0) {
cache = &d->smallcache[psz - 1];