Home
last modified time | relevance | path

Searched refs:isHex (Results 1 – 7 of 7) sorted by relevance

/third_party/gptfdisk/
Dsupport.cc280 int isHex = 1, foundHex = 0, i; in IsHex() local
289 isHex = 0; in IsHex()
296 isHex = 0; in IsHex()
297 return isHex; in IsHex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmLexer.cpp265 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead() local
266 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
267 if (isHex) in doHexLookAhead()
329 bool isHex = Radix == 16; in LexDigit() local
331 if (!isHex && (*CurPtr == '.' || *CurPtr == 'e' || *CurPtr == 'E')) { in LexDigit()
341 return ReturnError(TokStart, !isHex ? "invalid decimal number" : in LexDigit()
417 bool isHex = Radix == 16; in LexDigit() local
420 return ReturnError(TokStart, !isHex ? "invalid octal number" : in LexDigit()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dlexer.js103 isHex(char) { method in Lexer
190 while (end < this.len_ && this.isHex(this.input_[end]))
/third_party/spirv-tools/tools/sva/src/
Dlexer.js103 isHex(char) { method in Lexer
190 while (end < this.len_ && this.isHex(this.input_[end]))
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dlexer.js103 isHex(char) { method in Lexer
190 while (end < this.len_ && this.isHex(this.input_[end]))
/third_party/libxml2/
Dtrio.c2650 BOOLEAN_T isHex; variable
2728 isHex = (base == BASE_HEX);
2741 if (isHex)
2755 if (isHex)
2801 if (isHex)
2835 if (isHex)
2894 (isHex) ? 10.0 : base));
2912 if (isHex)
2925 if (isHex)
2954 if (isHex)
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormat.java2364 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) { in unescapeBytes()
2371 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) { in unescapeBytes()
2437 private static boolean isHex(final byte c) { in isHex() method in TextFormat