Lines Matching refs:bot
1224 int bot; /* The lowest index of the array not searched yet */ in CPL_MATCH_FN() local
1313 bot = 0; in CPL_MATCH_FN()
1315 while(top >= bot) { in CPL_MATCH_FN()
1316 int mid = (top + bot)/2; in CPL_MATCH_FN()
1321 bot = mid + 1; in CPL_MATCH_FN()
1323 top = bot = mid; in CPL_MATCH_FN()
1330 if(top == bot) { in CPL_MATCH_FN()
1331 while(--bot >= 0 && strncmp(node->files[bot]+1, prefix, prefix_len) == 0) in CPL_MATCH_FN()
1339 bot++; in CPL_MATCH_FN()
1345 for( ; bot<=top; bot++) { in CPL_MATCH_FN()
1346 char *match = node->files[bot]; in CPL_MATCH_FN()