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:hexdig
(Results
1 - 8
of
8
) sorted by relevance
/third_party/FreeBSD/contrib/gdtoa/
H
A
D
hd_init.c
34
unsigned char
hexdig
[256];
variable
52
htinit(
hexdig
, USC "0123456789", 0x10);
in hexdig_init_D2A()
53
htinit(
hexdig
, USC "abcdef", 0x10 + 10);
in hexdig_init_D2A()
54
htinit(
hexdig
, USC "ABCDEF", 0x10 + 10);
in hexdig_init_D2A()
H
A
D
gethex.c
69
if (!
hexdig
['0'])
81
if (
hexdig
[*s])
96
if (!
hexdig
[*s])
100
if (
hexdig
[*s])
105
while(
hexdig
[*s])
118
while(
hexdig
[*s])
136
if ((n =
hexdig
[*s]) == 0 || n > 0x19) {
141
while((n =
hexdig
[*++s]) !=0 && n <= 0x19) {
226
L |= (
hexdig
[*s1] & 0x0f) << n;
H
A
D
hexnan.c
64
if (!
hexdig
['0'])
81
if (!(h =
hexdig
[c])) {
H
A
D
gdtoaimp.h
560
#define
hexdig
__hexdig_D2A
macro
592
extern unsigned char
hexdig
[];
/third_party/node/deps/openssl/openssl/crypto/
H
A
D
o_str.c
225
static const char
hexdig
[] = "0123456789ABCDEF";
in buf2hexstr_sep()
local
244
*q++ =
hexdig
[(*p >> 4) & 0xf];
in buf2hexstr_sep()
245
*q++ =
hexdig
[*p & 0xf];
in buf2hexstr_sep()
/third_party/openssl/crypto/
H
A
D
o_str.c
225
static const char
hexdig
[] = "0123456789ABCDEF";
in buf2hexstr_sep()
local
246
*q++ =
hexdig
[(*p >> 4) & 0xf];
in buf2hexstr_sep()
247
*q++ =
hexdig
[*p & 0xf];
in buf2hexstr_sep()
/third_party/node/deps/openssl/openssl/crypto/asn1/
H
A
D
a_strex.c
237
static const char
hexdig
[] = "0123456789ABCDEF";
in do_hex_dump()
local
244
hextmp[0] =
hexdig
[*p >> 4];
in do_hex_dump()
245
hextmp[1] =
hexdig
[*p & 0xf];
in do_hex_dump()
/third_party/openssl/crypto/asn1/
H
A
D
a_strex.c
238
static const char
hexdig
[] = "0123456789ABCDEF";
in do_hex_dump()
local
245
hextmp[0] =
hexdig
[*p >> 4];
in do_hex_dump()
246
hextmp[1] =
hexdig
[*p & 0xf];
in do_hex_dump()
Completed in 6 milliseconds