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

1 2 3 4

  /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}
  /external/bouncycastle/bcprov/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/chromium_org/tools/idl_parser/test_parser/
typedef_web.idl 187 * PrimitiveType(octet)
189 typedef octet MyOctet;
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DataView.idl 35 [RaisesException] octet getUint8(unsigned long byteOffset);
47 [RaisesException] void setUint8(unsigned long byteOffset, octet value);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
TypeConversions.idl 41 attribute octet testOctet;
42 [EnforceRange, ImplementedAs=testOctet] attribute octet testEnforceRangeOctet;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiff.pl 77 svn:mime-type = application/octet-stream
82 + application/octet-stream
93 svn:mime-type = application/octet-stream
113 svn:mime-type = application/octet-stream
118 + application/octet-stream
130 svn:mime-type = application/octet-stream
502 svn:mime-type = application/octet-stream
507 + application/octet-stream
520 svn:mime-type = application/octet-stream
541 svn:mime-type = application/octet-strea
    [all...]
parseSvnDiffHeader.pl 204 svn:mime-type = application/octet-stream
209 + application/octet-stream
220 svn:mime-type = application/octet-stream
236 svn:mime-type = application/octet-stream
246 +application/octet-stream
257 svn:mime-type = application/octet-stream
  /external/chromium_org/third_party/libsrtp/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/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_8/src/tls/
asn1.c 76 /* Short form - length 0..127 in one octet */
117 * The first octet encodes the first two object
177 static u8 rotate_bits(u8 octet)
185 if (octet & 1)
187 octet >>= 1;
  /external/chromium_org/third_party/openssl/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/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,
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 712 #define ETHERP_TO_MACF(ea) ((struct ether_addr *) (ea))->octet[0], \
713 ((struct ether_addr *) (ea))->octet[1], \
714 ((struct ether_addr *) (ea))->octet[2], \
715 ((struct ether_addr *) (ea))->octet[3], \
716 ((struct ether_addr *) (ea))->octet[4], \
717 ((struct ether_addr *) (ea))->octet[5]
719 #define ETHER_TO_MACF(ea) (ea).octet[0], \
720 (ea).octet[1], \
721 (ea).octet[2], \
722 (ea).octet[3],
    [all...]
  /frameworks/opt/telephony/src/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...]
  /external/esd/include/
esd.h 121 typedef unsigned char octet; typedef
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
ethernet.h 128 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
esd.h 123 typedef unsigned char octet; typedef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
esd.h 123 typedef unsigned char octet; typedef
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_hybi.py 216 # into the 8-octet extended payload length field (or 0x0-0xFD in
217 # 2-octet field).
222 'Receive 8-octet extended payload length')
238 'Receive 2-octet extended payload length')
619 # - 2 octet of application data: has code but no reason
620 # - 3 or more octet of application data: both code and reason
628 'status code must be 2 octet')
  /external/libvorbis/doc/
02-bitpacking.tex 22 'octet', that is, eight bits. This has not always been the case;
33 octet (eight bits) and a word to be a group of two, four or eight
37 that a byte is one octet for purposes of example.
45 $n$ ($n=7$ in an octet) for the
  /external/chromium_org/v8/src/
uri.js 48 function URIAddEncodedOctetToBuffer(octet, result, index) {
50 result[index++] = hexCharCodeArray[octet >> 4];
51 result[index++] = hexCharCodeArray[octet & 0x0F];
  /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...]

Completed in 508 milliseconds

1 2 3 4