Lines Matching refs:base
35 unsigned int base;
116 register_table(unsigned int base, unsigned int nresults, const char **text,
121 REQUIRE(base % ISC_RESULTCLASS_SIZE == 0);
132 table->base = base;
133 table->last = base + nresults - 1;
185 if (result >= table->base && result <= table->last) {
186 index = (int)(result - table->base);
208 isc_result_register(unsigned int base, unsigned int nresults,
213 return (register_table(base, nresults, text, msgcat, set));