HomeSort by relevance Sort by last modified time
    Searched defs:HexStr (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DxeHttpLib.c 48 CHAR8 HexStr[3];
56 HexStr[2] = '\0';
62 HexStr[0] = Buffer[Index+1];
63 HexStr[1] = Buffer[Index+2];
64 ResultBuffer[Offset] = (CHAR8) AsciiStrHexToUintn (HexStr);
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 724 std::string HexStr = utohexstr(*i);
725 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
746 std::string HexStr = utohexstr(UnicodeScalarValue.first);
747 if (HexStr.size() <= 2)
748 EscapedInput += "\\x" + std::string(2 - HexStr.size(), '0') + HexStr;
749 else if (HexStr.size() <= 4)
750 EscapedInput += "\\u" + std::string(4 - HexStr.size(), '0') + HexStr;
    [all...]

Completed in 123 milliseconds