Searched refs:hex_decode (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/encodings/ |
D | hex_codec.py | 27 def hex_decode(input,errors='strict'): function 50 return hex_decode(input,errors) 74 decode=hex_decode,
|
/external/python/cpython3/Lib/encodings/ |
D | hex_codec.py | 17 def hex_decode(input, errors='strict'): function 25 return hex_decode(input, errors) 49 decode=hex_decode,
|
/external/webrtc/webrtc/base/ |
D | stringencode.cc | 104 && hex_decode(source[srcpos], &h1) in decode() 105 && hex_decode(source[srcpos+1], &h2)) { in decode() 184 && hex_decode(source[srcpos], &h1) in url_decode() 185 && hex_decode(source[srcpos+1], &h2)) in url_decode() 418 bool hex_decode(char ch, unsigned char* val) { in hex_decode() function 487 size_t hex_decode(char * cbuffer, size_t buflen, in hex_decode() function 513 if (!hex_decode(source[srcpos], &h1) || in hex_decode_with_delimiter() 514 !hex_decode(source[srcpos + 1], &h2)) in hex_decode_with_delimiter() 531 size_t hex_decode(char* buffer, size_t buflen, const std::string& source) { in hex_decode() function
|
D | stringencode.h | 84 bool hex_decode(char ch, unsigned char* val); 104 size_t hex_decode(char* buffer, size_t buflen, 116 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
|
D | stringencode_unittest.cc | 85 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); in TEST_F() 126 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); in TEST_F() 134 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); in TEST_F() 151 dec_res_ = hex_decode(decoded_, sizeof(decoded_), result); in TEST_F()
|
/external/webrtc/webrtc/examples/turnserver/ |
D | turnserver_main.cc | 35 size_t len = rtc::hex_decode(buf, sizeof(buf), hex); in GetKey()
|
/external/webrtc/webrtc/p2p/base/ |
D | turnserver.cc | 414 size_t len = rtc::hex_decode(p, sizeof(then), in ValidateNonce()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 335 File "/usr/lib/python3.4/encodings/hex_codec.py", line 20, in hex_decode
|