Home
last modified time | relevance | path

Searched refs:octets (Results 1 – 25 of 96) sorted by relevance

1234

/external/v8/src/js/
Duri.js63 function URIEncodeOctets(octets, result, index) { argument
68 index = URIAddEncodedOctetToBuffer(octets[0], result, index);
69 if (octets[1]) index = URIAddEncodedOctetToBuffer(octets[1], result, index);
70 if (octets[2]) index = URIAddEncodedOctetToBuffer(octets[2], result, index);
71 if (octets[3]) index = URIAddEncodedOctetToBuffer(octets[3], result, index);
79 var octets = new GlobalArray(3);
81 octets[0] = cc;
83 octets[0] = y + 192;
84 octets[1] = z + 128;
86 octets[0] = x + 224;
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1ApplicationSpecific.java15 protected final byte[] octets; field in ASN1ApplicationSpecific
20 byte[] octets) in ASN1ApplicationSpecific() argument
24 this.octets = octets; in ASN1ApplicationSpecific()
96 return octets; in getContents()
150 …StreamUtil.calculateTagLength(tag) + StreamUtil.calculateBodyLength(octets.length) + octets.length; in encodedLength()
164 out.writeEncoded(classBits, tag, octets); in encode()
179 && Arrays.areEqual(octets, other.octets); in asn1Equals()
184 return (isConstructed ? 1 : 0) ^ tag ^ Arrays.hashCode(octets); in hashCode()
DDERApplicationSpecific.java15 byte[] octets) in DERApplicationSpecific() argument
17 super(isConstructed, tag, octets); in DERApplicationSpecific()
29 byte[] octets) in DERApplicationSpecific() argument
31 this(false, tag, octets); in DERApplicationSpecific()
122 out.writeEncoded(classBits, tag, octets); in encode()
DBERApplicationSpecific.java15 byte[] octets) in BERApplicationSpecific() argument
17 super(isConstructed, tag, octets); in BERApplicationSpecific()
110 out.write(octets); in encode()
DASN1Boolean.java88 byte[] octets) in getInstance() argument
90 return (octets[0] != 0) ? TRUE : FALSE; in getInstance()
/external/tcpdump/tests/
Dsflow_multiple_counter_30_pdus.out7 In octets 820721, unicast pkts 9601, multicast pkts 0, broadcast pkts 1302, discards 0
9 … Out octets 178785248, unicast pkts 9736, multicast pkts 132958, broadcast pkts 2213534, discards 0
19 … In octets 156084746, unicast pkts 473593, multicast pkts 0, broadcast pkts 1862745, discards 0
21 … Out octets 59635889, unicast pkts 8834, multicast pkts 132958, broadcast pkts 352092, discards 0
31 … In octets 3051593057, unicast pkts 52919488, multicast pkts 1491, broadcast pkts 956, discards 0
33 …Out octets 1525716840, unicast pkts 30013667, multicast pkts 131467, broadcast pkts 2213880, disca…
43 In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0
45 … Out octets 178404732, unicast pkts 3035, multicast pkts 132958, broadcast pkts 2214836, discards 0
55 In octets 0, unicast pkts 0, multicast pkts 0, broadcast pkts 0, discards 0
57 … Out octets 178368955, unicast pkts 3031, multicast pkts 132840, broadcast pkts 2214791, discards 0
[all …]
Dloopback.out1 Loopback, skipCount 0, Forward Data, forwarding address aa:00:04:00:1d:04, data (44 octets)
2 Loopback, skipCount 8, Reply, receipt number 1, data (40 octets)
3 Loopback, skipCount 0, Forward Data, forwarding address aa:00:04:00:6a:04, data (60 octets)
4 Loopback, skipCount 8, Forward Data, forwarding address aa:00:04:00:69:04, data (52 octets)
5 Loopback, skipCount 16, Forward Data, forwarding address aa:00:04:00:1d:04, data (44 octets)
6 Loopback, skipCount 24, Reply, receipt number 2, data (40 octets)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DIPAddress.java50 int octets = 0; in isValidIPv4() local
59 if (octets == 4) in isValidIPv4()
76 octets++; in isValidIPv4()
79 return octets == 4; in isValidIPv4()
132 int octets = 0; in isValidIPv6() local
141 if (octets == 8) in isValidIPv6()
157 octets++; // add an extra one as address covers 2 words. in isValidIPv6()
184 octets++; in isValidIPv6()
187 return octets == 8 || doubleColonFound; in isValidIPv6()
/external/autotest/client/common_lib/cros/network/
Dnetblock.py56 def _octets_to_addr(octets): argument
63 return '.'.join(map(str, octets))
99 octets = [a & m for a, m in zip(self._octets, self._mask_octets)]
100 return self._octets_to_addr(octets)
106 octets = [a | (m ^ 0xff)
108 return self._octets_to_addr(octets)
141 octets = [(a & m) + o
143 return self._octets_to_addr(octets)
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ANY/
DNSEC.py68 octets = 0
78 windows.append((window, ''.join(bitmap[0:octets])))
84 octets = byte + 1
86 windows.append((window, ''.join(bitmap[0:octets])))
107 octets = ord(wire[current + 1])
108 if octets == 0 or octets > 32:
112 if rdlen < octets:
114 bitmap = wire[current : current + octets]
115 current += octets
116 rdlen -= octets
DNSEC3.py107 octets = 0
117 windows.append((window, ''.join(bitmap[0:octets])))
123 octets = byte + 1
125 windows.append((window, ''.join(bitmap[0:octets])))
162 octets = ord(wire[current + 1])
163 if octets == 0 or octets > 32:
167 if rdlen < octets:
169 bitmap = wire[current : current + octets]
170 current += octets
171 rdlen -= octets
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/
Dencoder.py4 from pyasn1.compat.octets import int2oct, oct2int, ints2octs, null, str2octs
99 octets = []
102 octets.insert(0, value & 0xff)
106 if value == 0 and octets[0] & 0x80:
107 octets.insert(0, 0)
108 while len(octets) > 1 and \
109 (octets[0] == 0 and octets[1] & 0x80 == 0 or \
110 octets[0] == 0xff and octets[1] & 0x80 != 0):
111 del octets[0]
112 return ints2octs(octets), 0
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX9ECPoint.java68 byte[] octets = encoding.getOctets(); in isPointCompressed()
69 return octets != null && octets.length > 0 && (octets[0] == 2 || octets[0] == 3); in isPointCompressed()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
DPercentEscaper.java151 boolean[] octets = new boolean[maxChar + 1]; in createSafeOctets()
153 octets[c] = true; in createSafeOctets()
156 octets[c] = true; in createSafeOctets()
159 octets[c] = true; in createSafeOctets()
162 octets[c] = true; in createSafeOctets()
164 return octets; in createSafeOctets()
/external/curl/lib/
Dinet_pton.c96 int saw_digit, octets, ch; in inet_pton4() local
100 octets = 0; in inet_pton4()
115 if(++octets > 4) in inet_pton4()
121 if(octets == 4) in inet_pton4()
129 if(octets < 4) in inet_pton4()
Dmk-ca-bundle.pl405 my @octets = split(/\\/);
406 shift @octets;
407 for (@octets) {
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/
Ddebug.py2 from pyasn1.compat.octets import octs2ints
47 def hexdump(octets): argument
50 for n,x in zip(range(len(octets)), octs2ints(octets)) ]
/external/wpa_supplicant_8/hostapd/
Dhostapd.sim_db4 # Kc: hex, 8 octets
5 # SRES: hex, 4 octets
6 # RAND: hex, 16 octets
/external/dbus/dbus/
Ddbus-string.c929 #define ASSIGN_2_OCTETS(p, octets) \ argument
930 *((dbus_uint16_t*)(p)) = *((dbus_uint16_t*)(octets));
933 #define ASSIGN_4_OCTETS(p, octets) \ argument
934 *((dbus_uint32_t*)(p)) = *((dbus_uint32_t*)(octets));
938 #define ASSIGN_8_OCTETS(p, octets) \ argument
939 *((dbus_uint64_t*)(p)) = *((dbus_uint64_t*)(octets));
942 #define ASSIGN_8_OCTETS(p, octets) \ argument
948 *b++ = octets[0]; \
949 *b++ = octets[1]; \
950 *b++ = octets[2]; \
[all …]
/external/iptables/extensions/
Dlibip6t_hbh.man4 Total length of this header in octets.
7 numeric type of option and the length of the option data in octets.
Dlibip6t_dst.man4 Total length of this header in octets.
7 numeric type of option and the length of the option data in octets.
/external/vboot_reference/scripts/
Dgenpadding.sh69 * Length(T) = 35 octets for SHA-1
70 * Length(T) = 51 octets for SHA-256
71 * Length(T) = 83 octets for SHA-512
/external/guava/guava/src/com/google/common/net/
DPercentEscaper.java129 boolean[] octets = new boolean[maxChar + 1]; in createSafeOctets()
131 octets[c] = true; in createSafeOctets()
133 return octets; in createSafeOctets()
/external/tcpdump/
Dprint-cnfp.c73 uint32_t octets; /* layer 3 octets in the packets of the flow */ member
105 uint32_t octets; /* layer 3 octets in the packets of the flow */ member
139 uint32_t octets; /* layer 3 octets in the packets of the flow */ member
237 EXTRACT_32BITS(&nr->octets), buf)); in cnfp_v1_print()
334 EXTRACT_32BITS(&nr->octets), buf)); in cnfp_v5_print()
434 EXTRACT_32BITS(&nr->octets), buf)); in cnfp_v6_print()
/external/srtp/doc/
Ddraft-irtf-cfrg-icm-00.txt98 BLOCK_LENGTH the number of octets in the cipher block
99 KEY_LENGTH the number of octets in the cipher key
100 OFFSET_LENGTH the number of octets in the offset
101 SEGMENT_INDEX_LENGTH the number of octets in the segment index
102 BLOCK_INDEX_LENGTH the number of octets in the block index
112 A counter is a value containing BLOCK_LENGTH octets which is
165 contains no more than (256^BLOCK_INDEX_LENGTH)*BLOCK_LENGTH octets.
205 Offset is an integer with OFFSET_LENGTH octets, which is used to
211 protocol, that key SHOULD be considered a sequence of octets in
239 is then shifted so that it occupies the most significant octets of

1234