Home
last modified time | relevance | path

Searched refs:hex_decode (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Lib/encodings/
Dhex_codec.py17 def hex_decode(input, errors='strict'): function
25 return hex_decode(input, errors)
49 decode=hex_decode,
/external/webrtc/rtc_base/
Dstring_encode.cc36 bool hex_decode(char ch, unsigned char* val) { in hex_decode() function
115 if (!hex_decode(source[srcpos], &h1) || in hex_decode_with_delimiter()
116 !hex_decode(source[srcpos + 1], &h2)) in hex_decode_with_delimiter()
133 size_t hex_decode(ArrayView<char> buffer, absl::string_view source) { in hex_decode() function
Dstring_encode_unittest.cc41 dec_res_ = hex_decode(ArrayView<char>(decoded_), encoded); in TEST_F()
74 dec_res_ = hex_decode(ArrayView<char>(decoded_), encoded); in TEST_F()
82 dec_res_ = hex_decode(ArrayView<char>(decoded_), encoded); in TEST_F()
Dstring_encode.h36 size_t hex_decode(ArrayView<char> buffer, absl::string_view source);
/external/python/pyserial/serial/tools/
Dhexlify_codec.py43 def hex_decode(data, errors='strict'): function
120 decode=hex_decode,
/external/webrtc/examples/turnserver/
Dread_auth_file.cc28 size_t len = rtc::hex_decode(rtc::ArrayView<char>(buf), in ReadAuthFile()
/external/rust/android-crates-io/crates/hex/benches/
Dhex.rs40 b.iter(|| faster_hex::hex_decode(hex.as_bytes(), &mut dst).unwrap()) in bench_decode()
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/hex-0.4.3/benches/
Dhex.rs40 b.iter(|| faster_hex::hex_decode(hex.as_bytes(), &mut dst).unwrap()) in bench_decode()
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/hex-0.4.3/benches/
Dhex.rs40 b.iter(|| faster_hex::hex_decode(hex.as_bytes(), &mut dst).unwrap()) in bench_decode()
/external/webrtc/p2p/base/
Dturn_server.cc396 size_t len = rtc::hex_decode(rtc::ArrayView<char>(p, sizeof(then)), in ValidateNonce()
/external/python/cpython3/Doc/whatsnew/
D3.4.rst334 File "/usr/lib/python3.4/encodings/hex_codec.py", line 20, in hex_decode