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

1 2 3 4 5 6

  /system/chre/host/msm/daemon/idl/
chre_slpi.idl 33 long get_message_to_host(rout sequence<octet> buffer,
36 long deliver_message_from_host(in sequence<octet> message);
  /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 49 int octet; local
65 octet = Integer.parseInt(temp.substring(start, pos));
71 if (octet < 0 || octet > 255)
131 int octet; local
163 octet = Integer.parseInt(temp.substring(start, pos), 16);
169 if (octet < 0 || octet > 0xffff)
  /system/bt/vendor_libs/test_vendor_lib/src/
bt_address.cc 48 uint64_t octet = std::stoi(tok, nullptr, 16); local
49 address_ |= (octet << (8 * ((kOctets - 1) - i)));
76 uint64_t octet = (address_ >> (8 * ((kOctets - 1) - i))) & 0xff; local
77 ss << std::hex << std::setfill('0') << std::setw(2) << octet;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ByteBufferReader.java 62 for (byte octet : octets) {
63 value = (value << Byte.SIZE) | (octet & 0xFF);
  /external/tcpdump/win32/src/
ether_ntohost.c 37 unsigned char octet[ETHER_ADDR_LEN]; member in struct:ether_addr
140 e->octet[i] = eth[i];
213 if (!memcmp(&e->octet, &cache->eth_addr, ETHER_ADDR_LEN)) {
  /prebuilts/go/darwin-x86/src/crypto/rsa/
pss.go 30 // 2. Let mHash = Hash(M), an octet string of length hLen.
46 // 4. Generate a random octet string salt of length sLen; if sLen = 0,
52 // M' is an octet string of length 8 + hLen + sLen with eight
55 // 6. Let H = Hash(M'), an octet string of length hLen.
66 // 7. Generate an octet string PS consisting of emLen - sLen - hLen - 2
69 // 8. Let DB = PS || 0x01 || salt; DB is an octet string of length
81 // 11. Set the leftmost 8 * emLen - emBits bits of the leftmost octet in
98 // 2. Let mHash = Hash(M), an octet string of length hLen.
110 // 4. If the rightmost octet of EM does not have hexadecimal value
121 // 6. If the leftmost 8 * emLen - emBits bits of the leftmost octet i
    [all...]
  /prebuilts/go/linux-x86/src/crypto/rsa/
pss.go 30 // 2. Let mHash = Hash(M), an octet string of length hLen.
46 // 4. Generate a random octet string salt of length sLen; if sLen = 0,
52 // M' is an octet string of length 8 + hLen + sLen with eight
55 // 6. Let H = Hash(M'), an octet string of length hLen.
66 // 7. Generate an octet string PS consisting of emLen - sLen - hLen - 2
69 // 8. Let DB = PS || 0x01 || salt; DB is an octet string of length
81 // 11. Set the leftmost 8 * emLen - emBits bits of the leftmost octet in
98 // 2. Let mHash = Hash(M), an octet string of length hLen.
110 // 4. If the rightmost octet of EM does not have hexadecimal value
121 // 6. If the leftmost 8 * emLen - emBits bits of the leftmost octet i
    [all...]
  /external/ImageMagick/coders/
wbmp.c 335 octet;
342 octet=(unsigned char) ((value >> bits) & 0x7f);
343 if ((flag == 0) && (octet != 0))
348 buffer[4-i]=octet | (i && (flag || octet))*(0x01 << 7);
330 octet; local
  /external/autotest/client/bin/
test_config.py 161 octet = "([0-9]{1,2}|1[0-9]{2}|2[0-4][0-9]|25[0-5])"
162 pattern = "^" + octet1 + "\.(" + octet + "\.){2}" + octet + "$"
  /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/autotest/client/cros/tendo/n_faced_peerd/
service.py 88 dbus_ip = dbus.Array([dbus.Byte(int(octet))
89 for octet in self.ip_info.addr.split('.')])
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
fill.d 18 # tic4x has 4 octet bytes
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
MOTree.java 238 int octet = in.read(); local
239 if (octet < 0) {
241 } else if (octet > ' ') {
242 tree.append((char) octet);
  /external/netperf/src/missing/
getaddrinfo.c 286 int octet; local
291 for (j = 0, octet = 0; '0' <= *s && *s <= '9' && j < 3; s++, j++)
292 octet = octet * 10 + (*s - '0');
293 if (j == 0 || octet > 255 || *s != delimiters[i])
  /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...]
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java 588 * Returns whether or not the <code>octet</code> is in the base 64 alphabet.
590 * @param octet
595 public static boolean isBase64(byte octet) {
596 return octet == PAD || (octet >= 0 && octet < DECODE_TABLE.length && DECODE_TABLE[octet] != -1);
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
route_bsd.go 66 // | Type (1 octet) |
68 // | Name length (1 octet) |
70 // | Address length (1 octet) |
72 // | Selector length (1 octet) |
125 // | Length (1 octet) |
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
address.go 44 // | Type (1 octet) |
46 // | Name length (1 octet) |
48 // | Address length (1 octet) |
50 // | Selector length (1 octet) |
140 // | Length (1 octet) |
  /prebuilts/go/linux-x86/src/syscall/
route_bsd.go 66 // | Type (1 octet) |
68 // | Name length (1 octet) |
70 // | Address length (1 octet) |
72 // | Selector length (1 octet) |
125 // | Length (1 octet) |
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
address.go 44 // | Type (1 octet) |
46 // | Name length (1 octet) |
48 // | Address length (1 octet) |
50 // | Selector length (1 octet) |
140 // | Length (1 octet) |
  /frameworks/base/packages/Osu/src/com/android/anqp/
Constants.java 182 for (byte octet : octets) {
183 value = (value << Byte.SIZE) | (octet & BYTE_MASK);
  /prebuilts/go/darwin-x86/src/net/
mac.go 27 // ParseMAC parses s as an IEEE 802 MAC-48, EUI-48, EUI-64, or a 20-octet
  /prebuilts/go/linux-x86/src/net/
mac.go 27 // ParseMAC parses s as an IEEE 802 MAC-48, EUI-48, EUI-64, or a 20-octet
  /prebuilts/jdk/jdk8/darwin-x86/lib/
ir.idl 277 in octet flags, // must be 0
678 attribute octet flags; // always 0
689 octet flags; // always 0
739 octet flags; // always 0

Completed in 1947 milliseconds

1 2 3 4 5 6