Lines Matching refs:xcachesize
252 static int xcachesize = 0; /* how many left? */
262 if (xcachesize < XCACHESIZE) {
264 (void) strlcpy(xcache[xcachesize++], file, (MAXBASENAME + 1));
293 qsort(xcache, xcachesize, MAXBASENAME + 1, xcompare);
306 if (xcachesize > 0) {
307 strlcpy(file, xcache[--xcachesize], (MAXBASENAME + 1));
311 /* avoid horror of xcachesize < 0 (impossible, you say?)! */
312 xcachesize = 0;
331 if (xcachesize == 0) {
348 if (xcachesize >= XCACHESIZE)