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