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:hex_char
(Results
1 - 10
of
10
) sorted by relevance
/kernel/linux/linux-5.10/drivers/acpi/acpica/
H
A
D
uthex.c
79
* PARAMETERS:
hex_char
- Hex character in Ascii. Must be:
88
u8 acpi_ut_ascii_char_to_hex(int
hex_char
)
in acpi_ut_ascii_char_to_hex()
argument
93
if (
hex_char
<= '9') {
in acpi_ut_ascii_char_to_hex()
94
return ((u8)(
hex_char
- '0'));
in acpi_ut_ascii_char_to_hex()
99
if (
hex_char
<= 'F') {
in acpi_ut_ascii_char_to_hex()
100
return ((u8)(
hex_char
- 0x37));
in acpi_ut_ascii_char_to_hex()
105
return ((u8)(
hex_char
- 0x57));
in acpi_ut_ascii_char_to_hex()
H
A
D
dbconvert.c
20
* PARAMETERS:
hex_char
- Ascii Hex digit, 0-9|a-f|A-F
28
acpi_status acpi_db_hex_char_to_value(int
hex_char
, u8 *return_value)
in acpi_db_hex_char_to_value()
argument
34
if (!isxdigit(
hex_char
)) {
in acpi_db_hex_char_to_value()
38
if (
hex_char
<= 0x39) {
in acpi_db_hex_char_to_value()
39
value = (u8)(
hex_char
- 0x30);
in acpi_db_hex_char_to_value()
41
value = (u8)(toupper(
hex_char
) - 0x37);
in acpi_db_hex_char_to_value()
H
A
D
acdebug.h
99
acpi_status acpi_db_hex_char_to_value(int
hex_char
, u8 *return_value);
H
A
D
acutils.h
229
u8 acpi_ut_ascii_char_to_hex(int
hex_char
);
/kernel/linux/linux-6.6/drivers/acpi/acpica/
H
A
D
uthex.c
79
* PARAMETERS:
hex_char
- Hex character in Ascii. Must be:
88
u8 acpi_ut_ascii_char_to_hex(int
hex_char
)
in acpi_ut_ascii_char_to_hex()
argument
93
if (
hex_char
<= '9') {
in acpi_ut_ascii_char_to_hex()
94
return ((u8)(
hex_char
- '0'));
in acpi_ut_ascii_char_to_hex()
99
if (
hex_char
<= 'F') {
in acpi_ut_ascii_char_to_hex()
100
return ((u8)(
hex_char
- 0x37));
in acpi_ut_ascii_char_to_hex()
105
return ((u8)(
hex_char
- 0x57));
in acpi_ut_ascii_char_to_hex()
H
A
D
dbconvert.c
20
* PARAMETERS:
hex_char
- Ascii Hex digit, 0-9|a-f|A-F
28
acpi_status acpi_db_hex_char_to_value(int
hex_char
, u8 *return_value)
in acpi_db_hex_char_to_value()
argument
34
if (!isxdigit(
hex_char
)) {
in acpi_db_hex_char_to_value()
38
if (
hex_char
<= 0x39) {
in acpi_db_hex_char_to_value()
39
value = (u8)(
hex_char
- 0x30);
in acpi_db_hex_char_to_value()
41
value = (u8)(toupper(
hex_char
) - 0x37);
in acpi_db_hex_char_to_value()
H
A
D
acdebug.h
99
acpi_status acpi_db_hex_char_to_value(int
hex_char
, u8 *return_value);
H
A
D
acutils.h
245
u8 acpi_ut_ascii_char_to_hex(int
hex_char
);
/kernel/linux/linux-5.10/tools/perf/util/
H
A
D
cpumap.c
531
static char
hex_char
(unsigned char val)
in hex_char()
function
569
*ptr++ =
hex_char
(bits);
in cpu_map__snprint_mask()
/kernel/linux/linux-6.6/tools/perf/util/
H
A
D
cpumap.c
621
static char
hex_char
(unsigned char val)
in hex_char()
function
659
*ptr++ =
hex_char
(bits);
in cpu_map__snprint_mask()
Completed in 6 milliseconds