Lines Matching +refs:val +refs:target

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;
275 hname_to_tname(char *src, char *target, size_t len) {
278 unsigned int val;
291 memmove(target, src, srclen + 1);
297 q = target;
301 val = c - '0';
303 val = c + 10 - 'a';
305 val = c + 10 - 'A';
310 *q |= val;
313 *q = (val << 4);
1400 "dns_name_getlabelsequence(source, first, n, target) "
1401 "initializes target to point to the n label sequence of "
1677 "dns_name_fromtext(name, source, origin, downcase, target) "
1679 "into uncompressed wire form at target, appending origin to "
1819 "dns_name_totext(name, omit_final_dot, target) converts "
1821 "at target, and adds a final '.' to the name if "
1947 "dns_name_fromwire(name, source, dctx, downcase, target) "
1949 "format to canonicalized form at target, performing upper to "
1984 "when there is not enough space in target, "
1985 "dns_name_fromwire(name, source, dcts, downcase, target) "
2177 "dns_name_towire(name, cctx, target) converts the DNS name "
2180 "target and returns DNS_SUCCESS";
2183 "when not enough space exists in target, "
2184 "dns_name_towire(name, cctx, target) returns ISC_R_NOSPACE";
2192 int val;
2231 val = chkdata(buf3, iscbuf3.used, exp_data,
2233 if (val == 0)
2332 "dns_name_concatenate(prefix, suffix, name, target) "
2334 "in target, canonicalizes any bitstring labels "