cachesize         162 libdb/bt_open.c 		b.cachesize = 0;
cachesize         300 libdb/bt_open.c 	if (b.cachesize && b.cachesize & (b.psize - 1))
cachesize         301 libdb/bt_open.c 		b.cachesize += (~b.cachesize & (b.psize - 1)) + 1;
cachesize         302 libdb/bt_open.c 	if (b.cachesize < b.psize * MINCACHE)
cachesize         303 libdb/bt_open.c 		b.cachesize = b.psize * MINCACHE;
cachesize         306 libdb/bt_open.c 	ncache = (b.cachesize + t->bt_psize - 1) / t->bt_psize;
cachesize         160 libdb/db.h     	u_int	cachesize;	/**< bytes to cache */
cachesize         179 libdb/db.h     	u_int	cachesize;	/**< bytes to cache */
cachesize         195 libdb/db.h     	u_int	cachesize;	/**< bytes to cache */
cachesize         286 libutil/dbop.c 	info.cachesize = GTAGSCACHE;
cachesize         288 libutil/dbop.c 		info.cachesize = atoi(getenv("GTAGSCACHE"));
cachesize         289 libutil/dbop.c 	if (info.cachesize < GTAGSMINCACHE)
cachesize         290 libutil/dbop.c 		info.cachesize = GTAGSMINCACHE;