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:nextCBlockSize
(Results
1 - 2
of
2
) sorted by relevance
/third_party/lz4/programs/
H
A
D
lz4io.c
1465
{ const unsigned long
nextCBlockSize
= LZ4IO_readLE32(&blockInfo) & 0x7FFFFFFFU;
in LZ4IO_skipBlocksData()
local
1466
const unsigned long nextBlock =
nextCBlockSize
+ (blockChecksumFlag * LZ4F_BLOCK_CHECKSUM_SIZE);
in LZ4IO_skipBlocksData()
1467
if (
nextCBlockSize
== 0) {
in LZ4IO_skipBlocksData()
1508
{ const unsigned int
nextCBlockSize
= LZ4IO_readLE32(&blockInfo);
in LZ4IO_skipLegacyBlocksData()
local
1509
if (
nextCBlockSize
== LEGACY_MAGICNUMBER
in LZ4IO_skipLegacyBlocksData()
1510
||
nextCBlockSize
== LZ4IO_MAGICNUMBER
in LZ4IO_skipLegacyBlocksData()
1511
|| LZ4IO_isSkippableMagicNumber(
nextCBlockSize
) ) {
in LZ4IO_skipLegacyBlocksData()
1518
if (
nextCBlockSize
> LZ4IO_LEGACY_BLOCK_SIZE_MAX) {
in LZ4IO_skipLegacyBlocksData()
1522
totalBlocksSize += LZ4IO_LEGACY_BLOCK_HEADER_SIZE +
nextCBlockSize
;
in LZ4IO_skipLegacyBlocksData()
1524
* note : this won't fail if
nextCBlockSize
i
in LZ4IO_skipLegacyBlocksData()
[all...]
/third_party/lz4/lib/
H
A
D
lz4frame.c
1673
size_t const
nextCBlockSize
= blockHeader & 0x7FFFFFFFU;
in LZ4F_decompress()
local
1680
if (
nextCBlockSize
> dctx->maxBlockSize) {
in LZ4F_decompress()
1685
dctx->tmpInTarget =
nextCBlockSize
;
in LZ4F_decompress()
1686
DEBUGLOG(5, "next block is uncompressed (size %u)", (U32)
nextCBlockSize
);
in LZ4F_decompress()
1694
dctx->tmpInTarget =
nextCBlockSize
+ crcSize;
in LZ4F_decompress()
1697
nextSrcSizeHint = BHSize +
nextCBlockSize
+ crcSize;
in LZ4F_decompress()
Completed in 11 milliseconds