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:alg_num
(Results
1 - 5
of
5
) sorted by relevance
/third_party/fsverity-utils/lib/
H
A
D
hash_algs.c
181
const struct fsverity_hash_alg *libfsverity_find_hash_alg_by_num(u32
alg_num
)
in libfsverity_find_hash_alg_by_num()
argument
183
if (
alg_num
< ARRAY_SIZE(fsverity_hash_algs) &&
in libfsverity_find_hash_alg_by_num()
184
fsverity_hash_algs[
alg_num
].name)
in libfsverity_find_hash_alg_by_num()
185
return &fsverity_hash_algs[
alg_num
];
in libfsverity_find_hash_alg_by_num()
191
libfsverity_get_digest_size(u32
alg_num
)
in libfsverity_get_digest_size()
argument
194
libfsverity_find_hash_alg_by_num(
alg_num
);
in libfsverity_get_digest_size()
200
libfsverity_get_hash_name(u32
alg_num
)
in libfsverity_get_hash_name()
argument
203
libfsverity_find_hash_alg_by_num(
alg_num
);
in libfsverity_get_hash_name()
H
A
D
compute_digest.c
239
u32
alg_num
;
in libfsverity_compute_digest()
local
257
alg_num
= params->hash_algorithm ?: FS_VERITY_HASH_ALG_DEFAULT;
in libfsverity_compute_digest()
282
hash_alg = libfsverity_find_hash_alg_by_num(
alg_num
);
in libfsverity_compute_digest()
284
libfsverity_error_msg("unknown hash algorithm: %u",
alg_num
);
in libfsverity_compute_digest()
300
desc.hash_algorithm =
alg_num
;
in libfsverity_compute_digest()
324
digest->digest_algorithm =
alg_num
;
in libfsverity_compute_digest()
H
A
D
lib_private.h
37
const struct fsverity_hash_alg *libfsverity_find_hash_alg_by_num(u32
alg_num
);
/third_party/fsverity-utils/include/
H
A
D
libfsverity.h
260
* @
alg_num
: Number of hash algorithm
264
int libfsverity_get_digest_size(uint32_t
alg_num
);
268
* @
alg_num
: Number of hash algorithm
272
const char *libfsverity_get_hash_name(uint32_t
alg_num
);
/third_party/fsverity-utils/programs/
H
A
D
fsverity.c
71
u32
alg_num
= 1;
in show_all_hash_algs()
local
75
while ((name = libfsverity_get_hash_name(
alg_num
++)) != NULL)
in show_all_hash_algs()
Completed in 3 milliseconds