HomeSort by: relevance | last modified time | path
    Searched refs:octets (Results 1 - 25 of 336) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/nsd/dist/simdzone/src/generic/
svcb.h 22 // (alpn-id), which is a sequence of 1-255 octets. For "alpn", the
95 assert(rdata->octets < rdata->limit);
101 uint8_t *comma = rdata->octets++;
104 while (data < limit && rdata->octets < rdata->limit) {
105 *rdata->octets = (uint8_t)*data;
106 if (unlikely(*rdata->octets == '\\')) {
108 if (!(length = unescape(data, rdata->octets)))
112 if (*rdata->octets == '\\') {
115 if (!(length = unescape(data, rdata->octets)))
119 *rdata->octets = (uint8_t)*data
624 uint8_t *octets = whence; local
718 const uint8_t *octets = whence; local
    [all...]
svcb.h 22 // (alpn-id), which is a sequence of 1-255 octets. For "alpn", the
95 assert(rdata->octets < rdata->limit);
101 uint8_t *comma = rdata->octets++;
104 while (data < limit && rdata->octets < rdata->limit) {
105 *rdata->octets = (uint8_t)*data;
106 if (unlikely(*rdata->octets == '\\')) {
108 if (!(length = unescape(data, rdata->octets)))
112 if (*rdata->octets == '\\') {
115 if (!(length = unescape(data, rdata->octets)))
119 *rdata->octets = (uint8_t)*data
624 uint8_t *octets = whence; local
718 const uint8_t *octets = whence; local
    [all...]
apl.h 13 const char *text, size_t length, uint8_t *octets, size_t size)
29 memcpy(octets, af_inet, sizeof(af_inet));
30 if (!(count = scan_ip4(&text[negate+2], &octets[4])))
43 octets[2] = (uint8_t)prefix;
44 octets[3] = (uint8_t)((negate << 7) | 4);
49 memcpy(octets, af_inet6, sizeof(af_inet6));
50 if (!(count = scan_ip6(&text[negate+2], &octets[4])))
66 octets[2] = (uint8_t)prefix;
67 octets[3] = (uint8_t)((negate << 7) | 16);
eui.h 41 eui_base16_dec_loop_generic_32_inner(input, rdata->octets, false) &&
42 eui_base16_dec_loop_generic_32_inner(input+6, rdata->octets+2, false) &&
43 eui_base16_dec_loop_generic_32_inner(input+12, rdata->octets+4, true))
44 return (void)(rdata->octets += 6), 0;
59 eui_base16_dec_loop_generic_32_inner(input, rdata->octets, false) &&
60 eui_base16_dec_loop_generic_32_inner(input+6, rdata->octets+2, false) &&
61 eui_base16_dec_loop_generic_32_inner(input+12, rdata->octets+4, false) &&
62 eui_base16_dec_loop_generic_32_inner(input+18, rdata->octets+6, true))
63 return (void)(rdata->octets += 8), 0;
apl.h 13 const char *text, size_t length, uint8_t *octets, size_t size)
29 memcpy(octets, af_inet, sizeof(af_inet));
30 if (!(count = scan_ip4(&text[negate+2], &octets[4])))
43 octets[2] = (uint8_t)prefix;
44 octets[3] = (uint8_t)((negate << 7) | 4);
49 memcpy(octets, af_inet6, sizeof(af_inet6));
50 if (!(count = scan_ip6(&text[negate+2], &octets[4])))
66 octets[2] = (uint8_t)prefix;
67 octets[3] = (uint8_t)((negate << 7) | 16);
eui.h 41 eui_base16_dec_loop_generic_32_inner(input, rdata->octets, false) &&
42 eui_base16_dec_loop_generic_32_inner(input+6, rdata->octets+2, false) &&
43 eui_base16_dec_loop_generic_32_inner(input+12, rdata->octets+4, true))
44 return (void)(rdata->octets += 6), 0;
59 eui_base16_dec_loop_generic_32_inner(input, rdata->octets, false) &&
60 eui_base16_dec_loop_generic_32_inner(input+6, rdata->octets+2, false) &&
61 eui_base16_dec_loop_generic_32_inner(input+12, rdata->octets+4, false) &&
62 eui_base16_dec_loop_generic_32_inner(input+18, rdata->octets+6, true))
63 return (void)(rdata->octets += 8), 0;
nsec.h 27 nsec_t *bitmap = (void *)rdata->octets;
28 assert(rdata->octets <= rdata->limit);
29 assert((size_t)(rdata->limit - rdata->octets) >= 256 * sizeof(nsec_t));
58 memmove(rdata->octets, &bitmap[window], 2 + blocks);
59 rdata->octets[0] = (uint8_t)window;
60 rdata->octets[1] = blocks;
61 rdata->octets += 2 + blocks;
nsec.h 27 nsec_t *bitmap = (void *)rdata->octets;
28 assert(rdata->octets <= rdata->limit);
29 assert((size_t)(rdata->limit - rdata->octets) >= 256 * sizeof(nsec_t));
58 memmove(rdata->octets, &bitmap[window], 2 + blocks);
59 rdata->octets[0] = (uint8_t)window;
60 rdata->octets[1] = blocks;
61 rdata->octets += 2 + blocks;
nxt.h 36 memset(rdata->octets, 0, block + 1);
37 rdata->octets[block] = (uint8_t)(1 << (7 - bit));
46 memset(&rdata->octets[highest_block+1], 0, block - highest_block);
49 rdata->octets[block] |= 1 << (7 - bit);
53 rdata->octets += highest_block + 1;
nxt.h 36 memset(rdata->octets, 0, block + 1);
37 rdata->octets[block] = (uint8_t)(1 << (7 - bit));
46 memset(&rdata->octets[highest_block+1], 0, block - highest_block);
49 rdata->octets[block] |= 1 << (7 - bit);
53 rdata->octets += highest_block + 1;
gpos.h 68 *rdata->octets = (uint8_t)token->length;
69 memcpy(rdata->octets + 1, token->data, token->length);
70 rdata->octets += 1 + token->length;
159 *rdata->octets = (uint8_t)token->length;
160 memcpy(rdata->octets + 1, token->data, token->length);
161 rdata->octets += 1 + token->length;
188 *rdata->octets = (uint8_t)token->length;
189 memcpy(rdata->octets + 1, token->data, token->length);
190 rdata->octets += 1 + token->length;
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
name.h 16 uint8_t octets[255 + ZONE_BLOCK_SIZE],
19 uint8_t *l = octets, *w = octets + 1;
20 const uint8_t *we = octets + 255;
54 *lengthp = (size_t)(w - octets);
name.h 16 uint8_t octets[255 + ZONE_BLOCK_SIZE],
19 uint8_t *l = octets, *w = octets + 1;
20 const uint8_t *we = octets + 255;
54 *lengthp = (size_t)(w - octets);
text.h 33 uint8_t *octets,
37 uint8_t *wire = octets;
56 return (int32_t)(wire - octets);
74 return (int32_t)(wire - octets);
text.h 33 uint8_t *octets,
37 uint8_t *wire = octets;
56 return (int32_t)(wire - octets);
74 return (int32_t)(wire - octets);
  /src/external/bsd/ntp/dist/libntp/
strdup.c 20 size_t octets; local
24 octets = strlen(s) + 1;
25 if ((cp = malloc(octets)) == NULL)
27 memcpy(cp, s, octets);
strdup.c 20 size_t octets; local
24 octets = strlen(s) + 1;
25 if ((cp = malloc(octets)) == NULL)
27 memcpy(cp, s, octets);
work_fork.c 269 size_t octets; local
281 octets = sizeof(*hdr);
282 rc = netwrite(c->req_write_pipe, hdr, octets);
284 if (rc == octets) {
285 octets = hdr->octets - sizeof(*hdr);
286 rc = netwrite(c->req_write_pipe, data, octets);
287 if (rc == octets)
293 rc, octets);
309 size_t octets; local
356 size_t octets; local
382 size_t octets; local
    [all...]
work_fork.c 269 size_t octets; local
281 octets = sizeof(*hdr);
282 rc = netwrite(c->req_write_pipe, hdr, octets);
284 if (rc == octets) {
285 octets = hdr->octets - sizeof(*hdr);
286 rc = netwrite(c->req_write_pipe, data, octets);
287 if (rc == octets)
293 rc, octets);
309 size_t octets; local
356 size_t octets; local
382 size_t octets; local
    [all...]
  /src/external/mpl/bind/dist/lib/dns/rdata/in_1/
a6_38.c 30 unsigned char octets; local
62 octets = prefixlen / 8;
64 * Octets 0..15.
72 addr[octets] &= mask;
73 RETERR(mem_tobuffer(target, &addr[octets], 16 - octets));
106 unsigned char octets; local
126 octets = prefixlen / 8;
128 memmove(&addr[octets], sr.base, 16 - octets);
154 unsigned char octets; local
211 unsigned char octets; local
239 unsigned char octets; local
296 int octets; local
343 unsigned char octets; local
417 unsigned char prefixlen, octets; local
    [all...]
a6_38.c 30 unsigned char octets; local
62 octets = prefixlen / 8;
64 * Octets 0..15.
72 addr[octets] &= mask;
73 RETERR(mem_tobuffer(target, &addr[octets], 16 - octets));
106 unsigned char octets; local
126 octets = prefixlen / 8;
128 memmove(&addr[octets], sr.base, 16 - octets);
154 unsigned char octets; local
211 unsigned char octets; local
239 unsigned char octets; local
296 int octets; local
343 unsigned char octets; local
417 unsigned char prefixlen, octets; local
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/in_1/
a6_38.c 30 unsigned char octets; local
62 octets = prefixlen / 8;
64 * Octets 0..15.
72 addr[octets] &= mask;
73 RETERR(mem_tobuffer(target, &addr[octets], 16 - octets));
106 unsigned char octets; local
126 octets = prefixlen / 8;
128 memmove(&addr[octets], sr.base, 16 - octets);
153 unsigned char octets; local
210 unsigned char octets; local
238 unsigned char octets; local
295 int octets; local
342 unsigned char octets; local
417 unsigned char prefixlen, octets; local
    [all...]
a6_38.c 30 unsigned char octets; local
62 octets = prefixlen / 8;
64 * Octets 0..15.
72 addr[octets] &= mask;
73 RETERR(mem_tobuffer(target, &addr[octets], 16 - octets));
106 unsigned char octets; local
126 octets = prefixlen / 8;
128 memmove(&addr[octets], sr.base, 16 - octets);
153 unsigned char octets; local
210 unsigned char octets; local
238 unsigned char octets; local
295 int octets; local
342 unsigned char octets; local
417 unsigned char prefixlen, octets; local
    [all...]
  /src/external/mpl/bind/dist/lib/isc/include/isc/
ascii.h 73 isc_ascii_tolower8(uint64_t octets) {
82 uint64_t heptets = octets & (0x7F * all_bytes);
87 uint64_t is_ascii = ~octets & (0x80 * all_bytes);
105 return octets | (is_upper >> 2);
112 isc_ascii_tolower4(uint32_t octets) {
114 uint32_t heptets = octets & (0x7F * all_bytes);
115 uint32_t is_ascii = ~octets & (0x80 * all_bytes);
119 return octets | (is_upper >> 2);
ascii.h 73 isc_ascii_tolower8(uint64_t octets) {
82 uint64_t heptets = octets & (0x7F * all_bytes);
87 uint64_t is_ascii = ~octets & (0x80 * all_bytes);
105 return octets | (is_upper >> 2);
112 isc_ascii_tolower4(uint32_t octets) {
114 uint32_t heptets = octets & (0x7F * all_bytes);
115 uint32_t is_ascii = ~octets & (0x80 * all_bytes);
119 return octets | (is_upper >> 2);

Completed in 68 milliseconds

1 2 3 4 5 6 7 8 91011>>