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

1 2

  /external/opencore/protocols/rtp_payload_parser/include/
bit_util.h 31 static uint32 bitValue(octet* buff, uint32 offset, uint32 len);
32 static bool bitCopy(octet* src, uint32 src_offset, uint32 bitLen, octet** output, uint32& byteLenOut);
  /dalvik/libcore/security/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 179 byte octet = in.buffer[in.contentOffset + i];
183 value[j] = (SET_MASK[k] & octet) != 0;
186 octet = in.buffer[in.contentOffset + i];
189 // final octet
191 value[j] = (SET_MASK[k] & octet) != 0;
223 //final octet
BerInputStream.java 583 // leading octet of subidentifier MUST not be 0x80
893 int octet = in.read(); local
894 if (octet == -1) {
898 buffer[offset++] = (byte) octet;
900 return octet;
  /external/opencore/protocols/rtp_payload_parser/rfc_3267/src/
bit_util.cpp 23 octet* buff,
40 octet* src,
43 octet** output,
  /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}
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionState.java 143 int octet = 7; local
144 while (octet >= 0) {
145 seq_num[octet] ++;
146 if (seq_num[octet] == 0) {
149 octet --;
  /external/opencore/oscl/oscl/osclbase/src/
oscl_types.h 61 //! The octet type is meant to be used for referring to a byte or collection bytes without suggesting anything about the underlying meaning of the bytes.
62 typedef uint8 octet; typedef
  /external/opencore/protocols/rtp_payload_parser/util/include/
file_converter_unit_test.h 47 octet* buffer;
  /external/opencore/codecs_v2/audio/sbc/enc/src/
sbcenc_crc8.cpp 71 UWord8 octet; local
80 octet = data[i];
84 bit = (UWord8)(((octet ^ CrcReg) & 0x80) >> 7);
88 octet = (UWord8)(octet << 1);
  /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 143 return ASN1_item_unpack(bag->value.bag->value.octet, ASN1_ITEM_rptr(X509));
150 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)) {
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/include/
level0.h 51 // appends an octet to the output stream without checking for 0 bit. Flushes the current check bits
52 uint16 AppendTxOctet(uint8 octet, uint8* pos);
  /external/opencore/protocols/systems/3g-324m_pvterminal/h223/src/
level0.cpp 139 /* This function writes an octet to the zero bit stuffed tx bitstream. If there is pending bits for zero bit check,
141 uint16 Level0PduParcom::AppendTxOctet(uint8 octet, uint8* pos)
150 write_pos += AppendTxBits0(8, octet, write_pos);
170 /* Inserts the octet while checking for 5 1's. */
171 uint16 Level0PduParcom::Insert0Octet(uint8 octet, uint16 num_bits_from_octet, uint8* out_buffer)
175 iTxCheck0 = iTxCheck0 | (octet << iTxCheck0Pos);
  /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 98 uint8 octet[ETHER_ADDR_LEN]; member in struct:ether_addr
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c 542 (uchar)event->addr.octet[0]&0xff,
543 (uchar)event->addr.octet[1]&0xff,
544 (uchar)event->addr.octet[2]&0xff,
545 (uchar)event->addr.octet[3]&0xff,
546 (uchar)event->addr.octet[4]&0xff,
547 (uchar)event->addr.octet[5]&0xff);
580 bcopy(event->addr.octet, guest_eas[i].octet, ETHER_ADDR_LEN);
607 if (bcmp(guest_eas[i].octet, event->addr.octet,
    [all...]
  /external/opencore/baselibs/media_data_structures/src/
access_unit_impl.cpp 258 octet * tmp_ptr = (uint8 *) frag->ptr + offset;
343 octet * tmp_ptr = (uint8 *) frag->ptr + offset;
  /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
  /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/wl/sys/
wl_iw.c 554 id->octet[0], id->octet[1], id->octet[2],
555 id->octet[3], id->octet[4], id->octet[5]);
1216 id->octet[0], id->octet[1], id->octet[2],
1217 id->octet[3], id->octet[4], id->octet[5])
    [all...]

Completed in 964 milliseconds

1 2