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:xtfm
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/drivers/crypto/allwinner/sun8i-ss/
H
A
D
sun8i-ss-hash.c
32
struct crypto_shash *
xtfm
;
in sun8i_ss_hashkey()
local
37
xtfm
= crypto_alloc_shash("sha1", 0, CRYPTO_ALG_NEED_FALLBACK);
in sun8i_ss_hashkey()
38
if (IS_ERR(
xtfm
))
in sun8i_ss_hashkey()
39
return PTR_ERR(
xtfm
);
in sun8i_ss_hashkey()
41
len = sizeof(*sdesc) + crypto_shash_descsize(
xtfm
);
in sun8i_ss_hashkey()
47
sdesc->tfm =
xtfm
;
in sun8i_ss_hashkey()
60
crypto_free_shash(
xtfm
);
in sun8i_ss_hashkey()
/kernel/linux/linux-6.6/drivers/crypto/stm32/
H
A
D
stm32-hash.c
135
struct crypto_shash *
xtfm
;
member
909
if (!ctx->
xtfm
) {
in stm32_hash_emptymsg_fallback()
915
ret = crypto_shash_setkey(ctx->
xtfm
, ctx->key, ctx->keylen);
in stm32_hash_emptymsg_fallback()
922
ret = crypto_shash_tfm_digest(ctx->
xtfm
, NULL, 0, rctx->digest);
in stm32_hash_emptymsg_fallback()
1164
struct crypto_shash *
xtfm
;
in stm32_hash_init_fallback()
local
1170
xtfm
= crypto_alloc_shash(name, 0, CRYPTO_ALG_NEED_FALLBACK);
in stm32_hash_init_fallback()
1171
if (IS_ERR(
xtfm
)) {
in stm32_hash_init_fallback()
1174
return PTR_ERR(
xtfm
);
in stm32_hash_init_fallback()
1177
ctx->
xtfm
=
xtfm
;
in stm32_hash_init_fallback()
[all...]
Completed in 4 milliseconds