Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:hexDigitValue
(Results
1 - 9
of
9
) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H
A
D
YAML.cpp
48
uint8_t Byte = llvm::
hexDigitValue
(Data[I * 2]);
in writeAsBinary()
50
Byte |= llvm::
hexDigitValue
(Data[I * 2 + 1]);
in writeAsBinary()
H
A
D
CodeViewYAMLTypes.cpp
163
uint8_t Value = (llvm::
hexDigitValue
(*Iter++) << 4);
in input()
164
Value |= llvm::
hexDigitValue
(*Iter++);
in input()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H
A
D
StringExtras.h
68
inline unsigned
hexDigitValue
(char C) {
in hexDigitValue()
function
79
inline bool isHexDigit(char C) { return
hexDigitValue
(C) != -1U; }
in isHexDigit()
161
unsigned U1 =
hexDigitValue
(MSB);
in hexFromNibbles()
162
unsigned U2 =
hexDigitValue
(LSB);
in hexFromNibbles()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
H
A
D
LLLexer.cpp
64
Result +=
hexDigitValue
(*Buffer);
in HexIntToVal()
81
Pair[0] +=
hexDigitValue
(*Buffer);
in HexToIntPair()
87
Pair[1] +=
hexDigitValue
(*Buffer);
in HexToIntPair()
101
Pair[1] +=
hexDigitValue
(*Buffer);
in FP80HexToIntPair()
106
Pair[0] +=
hexDigitValue
(*Buffer);
in FP80HexToIntPair()
127
*BOut =
hexDigitValue
(BIn[1]) * 16 +
hexDigitValue
(BIn[2]);
in UnEscapeLexed()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H
A
D
StringExtras.h
41
static inline unsigned
hexDigitValue
(char C) {
in hexDigitValue()
function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
H
A
D
MILexer.cpp
133
Str +=
hexDigitValue
(C.peek(1)) * 16 +
hexDigitValue
(C.peek(2));
in unescapeQuotedString()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H
A
D
APFloat.cpp
458
hexDigit =
hexDigitValue
(*p);
in trailingHexadecimalFraction()
2357
hex_value =
hexDigitValue
(*p);
2826
*q = hexDigitChars[
hexDigitValue
(*q) + 1];
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H
A
D
AsmParser.cpp
2924
Value = Value * 16 +
hexDigitValue
(Str[++i]);
in parseEscapedString()
/third_party/sqlite/src/
H
A
D
shell.c
769
static int
hexDigitValue
(char c){
in hexDigitValue()
function
803
while( (x =
hexDigitValue
(zArg[0]))>=0 ){
in integerValue()
19747
for(i=2;
hexDigitValue
(zArg[i])>=0; i++){}
in booleanValue()
Completed in 52 milliseconds