/prebuilts/gdb/darwin-x86/lib/python2.7/encodings/ |
hex_codec.py | 13 def hex_encode(input,errors='strict'): function 48 return hex_encode(input,errors) 73 encode=hex_encode,
|
/prebuilts/gdb/linux-x86/lib/python2.7/encodings/ |
hex_codec.py | 13 def hex_encode(input,errors='strict'): function 48 return hex_encode(input,errors) 73 encode=hex_encode,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
hex_codec.py | 13 def hex_encode(input,errors='strict'): function 48 return hex_encode(input,errors) 73 encode=hex_encode,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
hex_codec.py | 13 def hex_encode(input,errors='strict'): function 48 return hex_encode(input,errors) 73 encode=hex_encode,
|
/external/webrtc/webrtc/base/ |
stringencode.cc | 83 buffer[bufpos+1] = hex_encode((static_cast<unsigned char>(ch) >> 4) & 0xF); 84 buffer[bufpos+2] = hex_encode((static_cast<unsigned char>(ch) ) & 0xF); 158 buffer[bufpos+1] = hex_encode((ch >> 4) & 0xF); 159 buffer[bufpos+2] = hex_encode((ch ) & 0xF); 413 char hex_encode(unsigned char val) { function in namespace:rtc 431 size_t hex_encode(char* buffer, size_t buflen, function in namespace:rtc 453 buffer[bufpos ] = hex_encode((ch >> 4) & 0xF); 454 buffer[bufpos+1] = hex_encode((ch ) & 0xF); 469 std::string hex_encode(const std::string& str) { function in namespace:rtc 470 return hex_encode(str.c_str(), str.size()) 473 std::string hex_encode(const char* source, size_t srclen) { function in namespace:rtc [all...] |