Home | History | Annotate | Download | only in pwd_mkdb

Lines Matching refs:cachesize

140 	0,		/* cachesize */
264 u_int cachesize;
275 cachesize = 0;
290 cachesize = atoi(optarg) * 1024 * 1024;
366 if (cachesize) {
367 openinfo.cachesize = cachesize;
370 cachesize = (u_int)(st.st_size * 20);
371 if (cachesize > MAX_CACHESIZE)
372 cachesize = MAX_CACHESIZE;
373 else if (cachesize < MIN_CACHESIZE)
374 cachesize = MIN_CACHESIZE;
375 openinfo.cachesize = cachesize;
1053 "Usage: %s [-BLlpsvw] [-c cachesize] [-d directory] [-u user] "