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

  /external/pdfium/core/fpdfapi/parser/
cpdf_string.h 36 bool IsHex() const { return m_bHex; }
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_procmaps_common.cc 58 bool IsHex(char c) {
159 if (IsHex(pos[0])) {
  /external/gptfdisk/
support.cc 275 int IsHex(string input) {
276 int isHex = 1, foundHex = 0, i;
285 isHex = 0;
292 isHex = 0;
293 return isHex;
294 } // IsHex()
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrUtilityLib.cpp 522 OUT bool *IsHex
525 *IsHex = FALSE;
535 *IsHex = TRUE;
546 bool IsHex;
550 Str = TrimHex (Str, &IsHex);
555 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
557 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
560 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrUtilityLib.cpp 598 OUT bool *IsHex
601 *IsHex = FALSE;
611 *IsHex = TRUE;
622 bool IsHex;
626 Str = TrimHex (Str, &IsHex);
631 (IsHex == TRUE) ? (Value <<= 4) : (Value *= 10);
633 if ((IsHex == TRUE) && (c >= 'a') && (c <= 'f')) {
636 if ((IsHex == TRUE) && (c >= 'A') && (c <= 'F')) {
    [all...]

Completed in 778 milliseconds