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:hexdigit
(Results
1 - 14
of
14
) sorted by relevance
/third_party/backends/sanei/
H
A
D
sanei_codec_ascii.c
50
static const char *
hexdigit
= "0123456789abcdef";
variable
100
*w->buffer.curr++ =
hexdigit
[(*b >> 4) & 0x0f];
in ascii_w_byte()
101
*w->buffer.curr++ =
hexdigit
[(*b >> 0) & 0x0f];
in ascii_w_byte()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H
A
D
YAML.cpp
63
OS <<
hexdigit
(Byte >> 4) <<
hexdigit
(Byte & 0xf);
in writeAsHex()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H
A
D
IceGlobalInits.cpp
26
char
hexdigit
(unsigned X) { return X < 10 ? '0' + X : 'A' + X - 10; }
in hexdigit()
function
174
Stream << '\\' <<
hexdigit
(C >> 4) <<
hexdigit
(C & 0x0F);
in dump()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H
A
D
StringExtras.cpp
68
Out << '\\' <<
hexdigit
(C >> 4) <<
hexdigit
(C & 0x0F);
in printEscapedString()
H
A
D
NativeFormatting.cpp
156
*--CurPtr =
hexdigit
(x, !Upper);
in write_hex()
H
A
D
raw_ostream.cpp
190
*this <<
hexdigit
((c >> 4 & 0xF));
in write_escaped()
191
*this <<
hexdigit
((c >> 0) & 0xF);
in write_escaped()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H
A
D
MCFragment.cpp
356
OS <<
hexdigit
((Contents[i] >> 4) & 0xF) <<
hexdigit
(Contents[i] & 0xF);
in dump()
380
OS <<
hexdigit
((Contents[i] >> 4) & 0xF) <<
hexdigit
(Contents[i] & 0xF);
in dump()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H
A
D
StringExtras.h
25
///
hexdigit
- Return the hexadecimal character for the
27
static inline char
hexdigit
(unsigned X, bool LowerCase = false) {
in hexdigit()
function
56
*--BufPtr =
hexdigit
(Mod, LowerCase);
in utohexstr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H
A
D
raw_ostream.cpp
167
*this <<
hexdigit
((c >> 4 & 0xF));
in write_escaped()
168
*this <<
hexdigit
((c >> 0) & 0xF);
in write_escaped()
H
A
D
NativeFormatting.cpp
157
*--CurPtr =
hexdigit
(x, !Upper);
in write_hex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H
A
D
StringExtras.h
34
///
hexdigit
- Return the hexadecimal character for the
36
inline char
hexdigit
(unsigned X, bool LowerCase = false) {
in hexdigit()
function
132
*--BufPtr =
hexdigit
(Mod, LowerCase);
in utohexstr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H
A
D
DWARFDebugFrame.cpp
307
OS << ' ' <<
hexdigit
(Byte >> 4) <<
hexdigit
(Byte & 0xf);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H
A
D
AsmWriter.cpp
3157
Out << '\\' <<
hexdigit
(Name[0] >> 4) <<
hexdigit
(Name[0] & 0x0F);
in printMetadataIdentifier()
3164
Out << '\\' <<
hexdigit
(C >> 4) <<
hexdigit
(C & 0x0F);
in printMetadataIdentifier()
/third_party/protobuf/ruby/ext/google/protobuf_c/
H
A
D
upb.c
9783
static void
hexdigit
(upb_json_parser *p, const char *ptr) {
in hexdigit()
function
11913
{
hexdigit
(parser, p); }
in parse()
Completed in 38 milliseconds