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:residual
(Results
1 - 4
of
4
) sorted by relevance
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/datastructure/
H
A
D
CodeSignBlock.java
228
long
residual
= (codeSignBlockOffset + sizeWithoutMerkleTree) % PAGE_SIZE_4K;
in computeMerkleTreeOffset()
229
if (
residual
== 0) {
in computeMerkleTreeOffset()
232
this.zeroPadding = new byte[(int) (PAGE_SIZE_4K -
residual
)];
in computeMerkleTreeOffset()
/developtools/hapsigner/hapsigntool_cpp/codesigning/datastructure/src/
H
A
D
code_sign_block.cpp
168
int64_t
residual
= (codeSignBlockOffset + sizeWithoutMerkleTree) % PAGE_SIZE_4K;
in ComputeMerkleTreeOffset()
local
169
if (
residual
== 0) {
in ComputeMerkleTreeOffset()
172
zeroPadding = std::vector<int8_t>(static_cast<int>(PAGE_SIZE_4K -
residual
));
in ComputeMerkleTreeOffset()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/
H
A
D
VerifyCodeSignature.java
365
long
residual
= input % alignment;
in getAlignmentAddr()
366
if (
residual
== 0) {
in getAlignmentAddr()
369
return input + (alignment -
residual
);
in getAlignmentAddr()
/developtools/hapsigner/hapsigntool_cpp/codesigning/sign/src/
H
A
D
verify_code_signature.cpp
313
int64_t
residual
= input % alignment;
in GetAlignmentAddr()
local
314
if (
residual
== 0) {
in GetAlignmentAddr()
317
return input + (alignment -
residual
);
in GetAlignmentAddr()
Completed in 3 milliseconds