/third_party/python/Lib/email/ |
H A D | quoprimime.py | 50 # Build a mapping of octets to the expansion of that octet. Since we're only 74 def header_check(octet): 75 """Return True if the octet should be escaped with header quopri.""" 76 return chr(octet) != _QUOPRI_HEADER_MAP[octet] 79 def body_check(octet): 80 """Return True if the octet should be escaped with body quopri.""" 81 return chr(octet) != _QUOPRI_BODY_MAP[octet] 94 return sum(len(_QUOPRI_HEADER_MAP[octet]) fo [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp_pkex.c | 586 u8 octet; in dpp_pkex_build_commit_reveal_req() local 653 octet = 0; in dpp_pkex_build_commit_reveal_req() 654 addr[1] = &octet; in dpp_pkex_build_commit_reveal_req() 655 len[1] = sizeof(octet); in dpp_pkex_build_commit_reveal_req() 904 u8 octet; in dpp_pkex_build_commit_reveal_resp() local 972 octet = 1; in dpp_pkex_build_commit_reveal_resp() 973 addr[1] = &octet; in dpp_pkex_build_commit_reveal_resp() 974 len[1] = sizeof(octet); in dpp_pkex_build_commit_reveal_resp() 1022 u8 octet; in dpp_pkex_rx_commit_reveal_req() local 1059 octet in dpp_pkex_rx_commit_reveal_req() 1200 u8 octet; dpp_pkex_rx_commit_reveal_resp() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | asn1.c | 114 /* Short form - length 0..127 in one octet */ in asn1_get_next() 156 * The first octet encodes the first two object in asn1_parse_oid() 216 static u8 rotate_bits(u8 octet) in rotate_bits() argument 224 if (octet & 1) in rotate_bits() 226 octet >>= 1; in rotate_bits()
|
/third_party/lwip/src/netif/ppp/ |
H A D | pppos.c | 141 unsigned int octet; in ppp_get_fcs() local 143 octet = byte; in ppp_get_fcs() 145 octet = (octet & 0x01) ? ((octet >> 1) ^ PPP_FCS_POLYNOMIAL) : (octet >> 1); in ppp_get_fcs() 147 return octet & 0xffff; in ppp_get_fcs()
|
/third_party/node/deps/openssl/openssl/crypto/pkcs12/ |
H A D | p12_local.h | 39 ASN1_OCTET_STRING *octet; member
|
H A D | p12_sbag.c | 90 return ASN1_item_unpack(bag->value.bag->value.octet, in PKCS12_SAFEBAG_get1_cert() 100 return ASN1_item_unpack(bag->value.bag->value.octet, in PKCS12_SAFEBAG_get1_crl() 136 /* Pack data into an octet string */ in PKCS12_SAFEBAG_create_secret()
|
H A D | p12_add.c | 31 if (!ASN1_item_pack(obj, it, &bag->value.octet)) { in PKCS12_item_pack_safebag()
|
/third_party/openssl/crypto/pkcs12/ |
H A D | p12_local.h | 39 ASN1_OCTET_STRING *octet; member
|
H A D | p12_sbag.c | 90 return ASN1_item_unpack(bag->value.bag->value.octet, in PKCS12_SAFEBAG_get1_cert() 100 return ASN1_item_unpack(bag->value.bag->value.octet, in PKCS12_SAFEBAG_get1_crl() 136 /* Pack data into an octet string */ in PKCS12_SAFEBAG_create_secret()
|
H A D | p12_add.c | 31 if (!ASN1_item_pack(obj, it, &bag->value.octet)) { in PKCS12_item_pack_safebag()
|
/third_party/ffmpeg/libavcodec/ |
H A D | smcenc.c | 128 int color_table_index; /* indexes to color pair, quad, or octet tables */ in smc_encode_stream() 421 uint8_t octet[8]; in smc_encode_stream() local 425 octet[k] = s->color_octets[color_table_index][k]; in smc_encode_stream() 433 if (octet[w] == pixel) { in smc_encode_stream()
|
/third_party/node/lib/internal/crypto/ |
H A D | webidl.js | 156 converters.octet = createIntegerConversion(8); 657 converters.octet(V, { ...opts, enforceRange: true }), 676 converters.octet(V, { ...opts, enforceRange: true }),
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
H A D | asn1.c | 194 "ASN.1: Invalid extended tag (first octet has to be included with at least one nonzero bit for the tag value)"); in asn1_get_next() 257 /* Short form - length 0..127 in one octet */ in asn1_get_next() 317 * The first octet encodes the first two object in asn1_parse_oid() 374 static u8 rotate_bits(u8 octet) in rotate_bits() argument 382 if (octet & 1) in rotate_bits() 384 octet >>= 1; in rotate_bits()
|
/third_party/mbedtls/library/ |
H A D | x509_crt.c | 913 /* Data should be octet string type */ in x509_get_crt_ext() 2831 uint16_t octet; in x509_inet_pton_ipv4() local 2834 octet = num_digits = 0; in x509_inet_pton_ipv4() 2843 if (octet == 0 && num_digits > 0) { in x509_inet_pton_ipv4() 2847 octet = octet * 10 + digit; in x509_inet_pton_ipv4() 2852 if (octet >= 256 || num_digits > 3 || num_digits == 0) { in x509_inet_pton_ipv4() 2855 *res++ = (uint8_t) octet; in x509_inet_pton_ipv4()
|
H A D | debug.c | 295 unsigned char octet = in mbedtls_debug_print_mpi() local 297 mbedtls_snprintf(str + idx, sizeof(str) - idx, " %02x", octet); in mbedtls_debug_print_mpi()
|
/third_party/node/deps/npm/node_modules/ip-address/dist/ |
H A D | ipv6.js | 72 function paddedHex(octet) { 73 return (0, sprintf_js_1.sprintf)('%04x', parseInt(octet, 16));
|
/third_party/python/Lib/test/ |
H A D | test_ipaddress.py | 258 with self.assertAddressError("Empty octet not permitted in %r", 266 def assertBadOctet(addr, octet): 267 msg = "Only decimal digits permitted in %r in %r" % (octet, addr) 282 def assertBadOctet(addr, octet): 284 with self.assertAddressError(re.escape(msg % (octet, addr))): 291 def assertBadOctet(addr, octet): 292 msg = "Octet %d (> 255) not permitted in %r" % (octet, addr)
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.c | 5664 /* JWS Signature encodes the signature (r,s) as two octet strings. Need in dpp_process_signed_connector() 7491 u8 octet; in dpp_pkex_build_commit_reveal_req() local 7558 octet = 0; in dpp_pkex_build_commit_reveal_req() 7559 addr[1] = &octet; in dpp_pkex_build_commit_reveal_req() 7560 len[1] = sizeof(octet); in dpp_pkex_build_commit_reveal_req() 7791 u8 octet; in dpp_pkex_build_commit_reveal_resp() local 7859 octet = 1; in dpp_pkex_build_commit_reveal_resp() 7860 addr[1] = &octet; in dpp_pkex_build_commit_reveal_resp() 7861 len[1] = sizeof(octet); in dpp_pkex_build_commit_reveal_resp() 7908 u8 octet; in dpp_pkex_rx_commit_reveal_req() local 8069 u8 octet; dpp_pkex_rx_commit_reveal_resp() local [all...] |
/third_party/node/test/parallel/ |
H A D | test-webcrypto-webidl.js | 62 [converters.octet, Math.pow(2, 8) - 1],
|
/third_party/backends/backend/ |
H A D | epsonds.c | 2448 SANE_Int octet = bitIndex / 8; in setBit() local 2452 bytes[octet] |= (1 << bit); in setBit() 2454 bytes[octet] &= ~(1 << bit); in setBit() 2460 SANE_Int octet = bitIndex / 8; in getBit() local 2463 if( bytes[octet] & mask ){ in getBit()
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
H A D | mod.rs | 381 pub octet: [u8; EUI64_LEN],
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 3956 ** specifying an octet value. ^Before the path or query components of a 3959 ** corresponding octet. If this process generates an invalid UTF-8 encoding, 176419 int octet = (sqlite3HexToInt(zUri[iIn++]) << 4); global() local [all...] |