Lines Matching +defs:value +defs:max
136 unsigned int value;
151 unsigned int value;
205 maybe_numeric(unsigned int *valuep, isc_textregion_t *source, unsigned int max,
237 if (n > max) {
246 struct tbl *table, unsigned int max) {
250 result = maybe_numeric(valuep, source, max, false);
261 *valuep = table[i].value;
269 dns_mnemonic_totext(unsigned int value, isc_buffer_t *target,
274 if (table[i].value == value) {
279 snprintf(buf, sizeof(buf), "%u", value);
285 unsigned int value;
286 RETERR(dns_mnemonic_fromtext(&value, source, rcodes, 0xffff));
287 *rcodep = value;
298 unsigned int value;
299 RETERR(dns_mnemonic_fromtext(&value, source, tsigrcodes, 0xffff));
300 *rcodep = value;
311 unsigned int value;
312 RETERR(dns_mnemonic_fromtext(&value, source, certs, 0xffff));
313 *certp = value;
324 unsigned int value;
325 RETERR(dns_mnemonic_fromtext(&value, source, secalgs, 0xff));
326 *secalgp = value;
353 unsigned int value;
354 RETERR(dns_mnemonic_fromtext(&value, source, secprotos, 0xff));
355 *secprotop = value;
366 unsigned int value;
367 RETERR(dns_mnemonic_fromtext(&value, source, hashalgs, 0xff));
368 *hashalg = value;
376 unsigned int value = 0;
381 result = maybe_numeric(&value, source, 0xffff, true);
383 *flagsp = value;
410 value |= p->value;
422 *flagsp = value;
428 unsigned int value;
429 RETERR(dns_mnemonic_fromtext(&value, source, dsdigests, 0xff));
430 *dsdigestp = value;