HomeSort by relevance Sort by last modified time
    Searched refs:hex_digit (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/poly1305/
poly1305test.c 86 static unsigned char hex_digit(char h) function
104 unsigned char v = hex_digit(*hex++);
106 v |= hex_digit(*hex++);
  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chachatest.c 99 static unsigned char hex_digit(char h) function
117 unsigned char v = hex_digit(*hex++);
119 v |= hex_digit(*hex++);
  /external/chromium_org/ui/base/ime/chromeos/
character_composer.cc 504 int hex_digit = KeyvalToHexDigit(keyval); local
505 if (hex_digit < 0) {
510 hex_digit = KeyvalToHexDigit(XKeyCodeToXKeySym(keycode));
529 } else if (hex_digit >= 0 &&
532 compose_buffer_.push_back(hex_digit);
  /external/chromium_org/base/json/
json_parser.cc 647 int hex_digit = 0; local
648 if (!HexStringToInt(StringPiece(NextChar(), 2), &hex_digit)) {
654 if (hex_digit < kExtendedASCIIStart)
655 string.Append(hex_digit);
657 DecodeUTF8(hex_digit, &string);

Completed in 631 milliseconds