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:BHSize
(Results
1 - 1
of
1
) sorted by relevance
/third_party/lz4/lib/
H
A
D
lz4frame.c
252
static const size_t
BHSize
= LZ4F_BLOCK_HEADER_SIZE; /* block header : size, and compress flag */
variable
391
size_t const frameEnd =
BHSize
+ (prefsPtr->frameInfo.contentChecksumFlag*BFSize);
in LZ4F_compressBound_internal()
393
return ((
BHSize
+ blockCRCSize) * nbBlocks) +
in LZ4F_compressBound_internal()
823
* assumption : dst buffer capacity is >=
BHSize
+ srcSize + crcSize
834
cSize = (U32)compress(lz4ctx, (const char*)src, (char*)(cSizePtr+
BHSize
),
in LZ4F_makeBlock()
841
memcpy(cSizePtr+
BHSize
, src, srcSize);
in LZ4F_makeBlock()
846
U32 const crc32 = XXH32(cSizePtr+
BHSize
, cSize, 0); /* checksum of compressed data */
in LZ4F_makeBlock()
847
LZ4F_writeLE32(cSizePtr+
BHSize
+cSize, crc32);
in LZ4F_makeBlock()
849
return
BHSize
+ cSize + ((U32)crcFlag)*BFSize;
in LZ4F_makeBlock()
1114
RETURN_ERROR_IF(dstCapacity < (cctxPtr->tmpInSize +
BHSize
in LZ4F_flush()
[all...]
Completed in 3 milliseconds