HomeSort by relevance Sort by last modified time
    Searched refs:octet (Results 1 - 25 of 39) sorted by null

1 2

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Oid.java 81 int octet = in.buffer[in.contentOffset + i]; local
82 oidElement = octet & 0x7F;
83 while ((octet & 0x80) != 0) {
85 octet = in.buffer[in.contentOffset + i];
86 oidElement = oidElement << 7 | (octet & 0x7f);
138 int octet = in.buffer[in.contentOffset];
139 int element = octet & 0x7F;
142 while ((octet & 0x80) != 0) {
144 octet = in.buffer[in.contentOffset + index];
145 element = element << 7 | (octet & 0x7F)
    [all...]
ASN1BitString.java 142 byte octet = in.buffer[in.contentOffset + i];
145 value[j] = (SET_MASK[k] & octet) != 0;
148 octet = in.buffer[in.contentOffset + i];
151 // final octet
153 value[j] = (SET_MASK[k] & octet) != 0;
184 //final octet
BerInputStream.java 457 throw new ASN1Exception("Decoding constructed ASN.1 octet string type is not supported");
741 int octet = in.read(); local
742 if (octet == -1) {
746 buffer[offset++] = (byte) octet;
748 return octet;
  /external/ipsec-tools/src/racoon/
prsa_tok.l 50 octet (([01]?{digit}?{digit})|((2([0-4]{digit}))|(25[0-5])))
51 addr4 {octet}\.{octet}\.{octet}\.{octet}
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionState.java 151 int octet = 7; local
152 while (octet >= 0) {
153 seq_num[octet] ++;
154 if (seq_num[octet] == 0) {
157 octet --;
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
IPAddress.java 46 int octet; local
62 octet = Integer.parseInt(temp.substring(start, pos));
68 if (octet < 0 || octet > 255)
128 int octet; local
160 octet = Integer.parseInt(temp.substring(start, pos), 16);
166 if (octet < 0 || octet > 0xffff)
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiff.pl 76 svn:mime-type = application/octet-stream
81 + application/octet-stream
92 svn:mime-type = application/octet-stream
112 svn:mime-type = application/octet-stream
117 + application/octet-stream
129 svn:mime-type = application/octet-stream
496 svn:mime-type = application/octet-stream
501 + application/octet-stream
514 svn:mime-type = application/octet-stream
535 svn:mime-type = application/octet-strea
    [all...]
parseSvnDiffHeader.pl 178 svn:mime-type = application/octet-stream
183 + application/octet-stream
198 "svn:mime-type = application/octet-stream\n"],
  /external/srtp/crypto/test/
datatypes_driver.c 158 b.octet[i] = i;
160 c.octet[i] = i;
162 d.octet[i] = i;
232 printf("as octet string: %s\n",
235 printf("bswapped octet string: %s\n",
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
asn1.c 74 /* Short form - length 0..127 in one octet */
127 * The first octet encodes the first two object
167 static u8 rotate_bits(u8 octet)
175 if (octet & 1)
177 octet >>= 1;
  /external/wpa_supplicant_8/src/tls/
asn1.c 65 /* Short form - length 0..127 in one octet */
106 * The first octet encodes the first two object
166 static u8 rotate_bits(u8 octet)
174 if (octet & 1)
176 octet >>= 1;
  /external/openssl/crypto/pkcs12/
p12_utl.c 137 return ASN1_item_unpack(bag->value.bag->value.octet, ASN1_ITEM_rptr(X509));
144 return ASN1_item_unpack(bag->value.bag->value.octet,
  /external/bluetooth/bluez/tools/
ubcsp.c 275 /** Outputs a single octet to the uart **/
276 /** If the octet needs to be escaped, then output the escape value **/
277 /** and then store the second octet to be output later **/
283 /* output a single UART octet */
285 /* If it needs to be escaped, then output the escape octet
287 output the second octet for the escape correctly.
302 /* Not escaped, so just output octet */
321 octet, local
329 for (octet = 0; octet < 4; octet ++)
    [all...]
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/proto/
ethernet.h 100 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
ethernet.h 100 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduHeaders.java 335 * Get octet value by header field.
338 * @return the octet value of the pdu header
343 Integer octet = (Integer) mHeaderMap.get(field); local
344 if (null == octet) {
348 return octet;
352 * Set octet value to pdu header by header field.
378 throw new InvalidHeaderValueException("Invalid Octet value!");
385 throw new InvalidHeaderValueException("Invalid Octet value!");
392 throw new InvalidHeaderValueException("Invalid Octet value!");
398 throw new InvalidHeaderValueException("Invalid Octet value!")
    [all...]
PduComposer.java 208 * Short-integer = OCTET
209 * ; Integers in range 0-127 shall be encoded as a one octet value
219 * Append an octet number between 128 and 255 into mMessage.
237 * Short-length = <Any octet 0-30>
250 * Long-integer = Short-length Multi-octet-integer
251 * ; The Short-length indicates the length of the Multi-octet-integer
252 * Multi-octet-integer = 1*30 OCTET
254 * ; most significant octet encoded first (big-endian representation).
361 * ending up in the last octet. All octets MUST set the Continue bit to
567 int octet = mPduHeader.getOctet(field); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 65 * iPAddress [7] OCTET STRING,
399 int octet = _address[i] & 0xff; local
402 if ((octet < min) || (octet > max)) {
  /external/esd/include/
esd.h 121 typedef unsigned char octet; typedef
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
esd.h 121 typedef unsigned char octet; typedef
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
esd.h 121 typedef unsigned char octet; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
esd.h 121 typedef unsigned char octet; typedef
  /external/guava/guava/src/com/google/common/net/
InetAddresses.java 355 int octet = Integer.parseInt(ipPart); local
358 if (octet > 255 || (ipPart.startsWith("0") && ipPart.length() > 1)) {
361 return (byte) octet;
    [all...]
  /external/v8/src/
uri.js 38 function URIAddEncodedOctetToBuffer(octet, result, index) {
40 result[index++] = hexCharCodeArray[octet >> 4];
41 result[index++] = hexCharCodeArray[octet & 0x0F];
  /external/srtp/crypto/math/
datatypes.c 85 octet_get_weight(uint8_t octet) {
88 return octet_weight[octet];
112 /* double length, since one octet takes two hex characters */
168 * of length 2 * len to a raw octet string of length len
693 * of length 2 * len to a raw octet string of length len

Completed in 803 milliseconds

1 2