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:padLen
(Results
1 - 3
of
3
) sorted by relevance
/base/tee/tee_client/services/authentication/
H
A
D
tee_auth_system.cpp
49
uint32_t
padLen
= 0;
in Base64Decode()
local
52
padLen
++;
in Base64Decode()
58
if (
padLen
> MAX_BASE64_PADDING_LEN) {
in Base64Decode()
59
tloge("invaild base64 padding len, %u\n",
padLen
);
in Base64Decode()
63
if (ret == 0 || ret <=
padLen
) {
in Base64Decode()
64
tloge("base64 decoded failed, decoded len %u, pad len %u\n", ret,
padLen
);
in Base64Decode()
68
*decodedLen = ret -
padLen
;
in Base64Decode()
/base/security/huks/frameworks/crypto_lite/cipher/src/
H
A
D
cipher_aes.c
45
int32_t
padLen
= data[dataLen - 1];
in UnpaddingPkcs5()
local
47
if (
padLen
<= 0 ||
padLen
>= AES_BLOCK_SIZE) {
in UnpaddingPkcs5()
51
for (int32_t i = 0; i <
padLen
; i++) {
in UnpaddingPkcs5()
52
if (data[dataLen - 1 - i] !=
padLen
) {
in UnpaddingPkcs5()
57
return (dataLen -
padLen
);
in UnpaddingPkcs5()
/base/hiviewdfx/hilog_lite/frameworks/featured/
H
A
D
hiview_log.c
282
#define SECUREC_SAFE_PADDING(padChar,
padLen
, _stream, outChars) \
284
for (ii = 0; ii <
padLen
; ++ii) { \
288
_stream->count -=
padLen
* (int)(sizeof(SecChar)); \
289
*(outChars) = *(outChars) + (
padLen
); \
Completed in 4 milliseconds