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:CHUNK_SIZE
(Results
1 - 4
of
4
) sorted by relevance
/base/startup/init/services/modules/trace/
H
A
D
init_trace.c
38
#define
CHUNK_SIZE
65536
macro
345
uint8_t *inBuffer = calloc(1,
CHUNK_SIZE
);
in DumpCompressedTrace()
347
uint8_t *outBuffer = malloc(
CHUNK_SIZE
);
in DumpCompressedTrace()
356
zs.avail_in = (uInt)TEMP_FAILURE_RETRY(read(traceFd, inBuffer,
CHUNK_SIZE
));
in DumpCompressedTrace()
362
zs.avail_out =
CHUNK_SIZE
;
in DumpCompressedTrace()
365
size_t have =
CHUNK_SIZE
- zs.avail_out;
in DumpCompressedTrace()
/base/hiviewdfx/hitrace/cmd/src/
H
A
D
hitrace_cmd.cpp
125
const unsigned int
CHUNK_SIZE
= 65536;
member
509
std::unique_ptr<uint8_t[]> in = std::make_unique<uint8_t[]>(
CHUNK_SIZE
);
in DumpCompressedTrace()
510
std::unique_ptr<uint8_t[]> out = std::make_unique<uint8_t[]>(
CHUNK_SIZE
);
in DumpCompressedTrace()
516
zs.avail_out =
CHUNK_SIZE
;
in DumpCompressedTrace()
520
bytesRead = TEMP_FAILURE_RETRY(read(traceFd, in.get(),
CHUNK_SIZE
));
in DumpCompressedTrace()
532
bytesWritten = TEMP_FAILURE_RETRY(write(outFd, out.get(),
CHUNK_SIZE
));
in DumpCompressedTrace()
533
if (bytesWritten < static_cast<ssize_t>(
CHUNK_SIZE
)) {
in DumpCompressedTrace()
538
zs.avail_out =
CHUNK_SIZE
;
in DumpCompressedTrace()
542
size_t have =
CHUNK_SIZE
- zs.avail_out;
in DumpCompressedTrace()
/base/security/appverify/interfaces/innerkits/appverify/include/util/
H
A
D
hap_signing_block_utils.h
70
static const long long
CHUNK_SIZE
;
member in OHOS::Security::Verify::HapSigningBlockUtils
/base/security/appverify/interfaces/innerkits/appverify/src/util/
H
A
D
hap_signing_block_utils.cpp
38
const long long HapSigningBlockUtils::
CHUNK_SIZE
= 1048576LL;
member in OHOS::Security::Verify::HapSigningBlockUtils
482
chunkCount += GetChunkCount(contents[i]->Remaining(),
CHUNK_SIZE
);
in GetSumOfChunkDigestLen()
519
int32_t chunkSize = std::min(contents[i]->Remaining(),
CHUNK_SIZE
);
in ComputeDigestsForEachChunk()
Completed in 5 milliseconds