Lines Matching +defs:val +defs:region
47 int val;
50 val = (c >> 4) & 0x0f;
51 if ((0 <= val) && (val <= 9))
52 buf[0] = '0' + val;
53 else if ((10 <= val) && (val <= 16))
54 buf[0] = 'a' + val - 10;
55 val = c & 0x0f;
56 if ((0 <= val) && (val <= 9))
57 buf[1] = '0' + val;
58 else if ((10 <= val) && (val <= 16))
59 buf[1] = 'a' + val - 10;
200 unsigned int val;
210 val = c - '0';
212 val = c - 'a' + 10;
214 val = c - 'A'+ 10;
221 *p = (val << 4);
223 *p += val;
278 unsigned int val;
301 val = c - '0';
303 val = c + 10 - 'a';
305 val = c + 10 - 'A';
310 *q |= val;
313 *q = (val << 4);
1539 "dns_name_fromregion(name, region) converts a DNS name "
1540 "from a region representation to a name representation";
1552 isc_region_t region;
1563 dns_name_toregion(dns_name1, ®ion);
1566 dns_name_fromregion(&dns_name2, ®ion);
1627 "dns_name_toregion(name, region) converts a DNS name "
1628 "from a region representation to a name representation";
2192 int val;
2231 val = chkdata(buf3, iscbuf3.used, exp_data,
2233 if (val == 0)