Lines Matching refs:bot
1226 int bot; /* The lowest index of the array not searched yet */ in CPL_MATCH_FN() local
1315 bot = 0; in CPL_MATCH_FN()
1317 while(top >= bot) { in CPL_MATCH_FN()
1318 int mid = (top + bot)/2; in CPL_MATCH_FN()
1323 bot = mid + 1; in CPL_MATCH_FN()
1325 top = bot = mid; in CPL_MATCH_FN()
1332 if(top == bot) { in CPL_MATCH_FN()
1333 while(--bot >= 0 && strncmp(node->files[bot]+1, prefix, prefix_len) == 0) in CPL_MATCH_FN()
1341 bot++; in CPL_MATCH_FN()
1347 for( ; bot<=top; bot++) { in CPL_MATCH_FN()
1348 char *match = node->files[bot]; in CPL_MATCH_FN()