Lines Matching refs:try
94 static void showtable(int try, int init, int shift)
101 ix[i] = num[i] % try;
112 printf(" static const struct Curl_handler * const protocols[%d] = {", try);
115 for(i=0; i < try; i++) {
145 int try;
177 /* try different remainders to find smallest possible table */
178 for(try = 28; try < 199; try++) {
181 ix[i] = num[i] % try;
188 /* printf("NOPE, try %u causes dupes (%d and %d)\n", try, j, i); */
195 if(try < besttry) {
196 besttry = try;