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

1 2

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Oid.java 89 int octet = in.buffer[in.contentOffset + i]; local
90 oidElement = octet & 0x7F;
91 while ((octet & 0x80) != 0) {
93 octet = in.buffer[in.contentOffset + i];
94 oidElement = oidElement << 7 | (octet & 0x7f);
162 int octet = in.buffer[in.contentOffset];
163 element = octet & 0x7F;
166 while ((octet & 0x80) != 0) {
168 octet = in.buffer[in.contentOffset + index];
169 element = element << 7 | (octet & 0x7F)
    [all...]
ASN1BitString.java 176 byte octet = in.buffer[in.contentOffset + i];
180 value[j] = (SET_MASK[k] & octet) != 0;
183 octet = in.buffer[in.contentOffset + i];
186 // final octet
188 value[j] = (SET_MASK[k] & octet) != 0;
220 //final octet
BerInputStream.java 522 throw new ASN1Exception("Decoding constructed ASN.1 octet string type is not supported");
562 // leading octet of subidentifier MUST not be 0x80
861 int octet = in.read(); local
862 if (octet == -1) {
866 buffer[offset++] = (byte) octet;
868 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)
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c 592 (uchar)event->addr.octet[0]&0xff,
593 (uchar)event->addr.octet[1]&0xff,
594 (uchar)event->addr.octet[2]&0xff,
595 (uchar)event->addr.octet[3]&0xff,
596 (uchar)event->addr.octet[4]&0xff,
597 (uchar)event->addr.octet[5]&0xff);
    [all...]
dhd_linux.c     [all...]
dhd_cdc.c 504 memcpy(dhd->mac.octet, buf, ETHER_ADDR_LEN);
  /external/wpa_supplicant/
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_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/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,
p12_add.c 63 /* Pack an object into an OCTET STRING and turn into a safebag */
75 if (!ASN1_item_pack(obj, it, &bag->value.octet)) {
pkcs12.h 132 ASN1_OCTET_STRING *octet; member in union:pkcs12_bag_st::__anon5431
  /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/src/include/proto/
ethernet.h 99 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...]
  /external/esd/include/
esd.h 121 typedef unsigned char octet; typedef
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
esd.h 121 typedef unsigned char octet; typedef
  /external/v8/src/
uri.js 38 function URIAddEncodedOctetToBuffer(octet, result, index) {
40 result[index++] = hexCharCodeArray[octet >> 4];
41 result[index++] = hexCharCodeArray[octet & 0x0F];
  /hardware/broadcom/wlan/bcm4329/src/shared/
bcmutils.c 814 ea->octet[i++] = (char) bcm_strtoul(p, &p, 16);
857 ea->octet[0]&0xff, ea->octet[1]&0xff, ea->octet[2]&0xff,
858 ea->octet[3]&0xff, ea->octet[4]&0xff, ea->octet[5]&0xff);
    [all...]
  /external/bluetooth/bluez/sbc/
sbc.c 141 uint8_t octet; local
146 octet = data[i];
148 char bit = ((octet ^ crc) & 0x80) >> 7;
152 octet = octet << 1;
  /hardware/broadcom/wlan/bcm4329/src/wl/sys/
wl_iw.c 602 id->octet[0], id->octet[1], id->octet[2],
603 id->octet[3], id->octet[4], id->octet[5]);
    [all...]
  /external/openssl/include/openssl/
pkcs12.h 132 ASN1_OCTET_STRING *octet; member in union:pkcs12_bag_st::__anon5475

Completed in 634 milliseconds

1 2