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:MIN_CBLOCK_SIZE
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
zstd_internal.h
90
#define
MIN_CBLOCK_SIZE
(1 /*litCSize*/ + 1 /* RLE or RAW */ + MIN_SEQUENCES_SIZE /* nbSeq==0 */) /* for a non-null block */
macro
H
A
D
compress.c
2339
if (srcSize <
MIN_CBLOCK_SIZE
+ ZSTD_blockHeaderSize + 1)
in ZSTD_compressBlock_internal()
2371
if (dstCapacity < ZSTD_blockHeaderSize +
MIN_CBLOCK_SIZE
)
in ZSTD_compress_generic()
H
A
D
decompress.c
434
if (srcSize <
MIN_CBLOCK_SIZE
)
in ZSTD_decodeLiteralsBlock()
448
return ERROR(corruption_detected); /* srcSize >=
MIN_CBLOCK_SIZE
== 3; here we need up to 5 for case 3 */
in ZSTD_decodeLiteralsBlock()
555
return ERROR(corruption_detected); /* srcSize >=
MIN_CBLOCK_SIZE
== 3; here we need lhSize+1 = 4 */
in ZSTD_decodeLiteralsBlock()
/kernel/linux/linux-6.6/lib/zstd/common/
H
A
D
zstd_internal.h
86
#define
MIN_CBLOCK_SIZE
(1 /*litCSize*/ + 1 /* RLE or RAW */ + MIN_SEQUENCES_SIZE /* nbSeq==0 */) /* for a non-null block */
macro
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress.c
2730
if (srcSize <
MIN_CBLOCK_SIZE
+ZSTD_blockHeaderSize+1) {
in ZSTD_buildSeqStore()
3863
RETURN_ERROR_IF(dstCapacity < ZSTD_blockHeaderSize +
MIN_CBLOCK_SIZE
,
in ZSTD_compress_frameChunk()
5842
if (blockSize <
MIN_CBLOCK_SIZE
+ZSTD_blockHeaderSize+1) {
in ZSTD_compressSequences_internal()
/kernel/linux/linux-6.6/lib/zstd/decompress/
H
A
D
zstd_decompress_block.c
124
RETURN_ERROR_IF(srcSize <
MIN_CBLOCK_SIZE
, corruption_detected, "");
in ZSTD_decodeLiteralsBlock()
137
RETURN_ERROR_IF(srcSize < 5, corruption_detected, "srcSize >=
MIN_CBLOCK_SIZE
== 3; here we need up to 5 for case 3");
in ZSTD_decodeLiteralsBlock()
287
RETURN_ERROR_IF(srcSize<4, corruption_detected, "srcSize >=
MIN_CBLOCK_SIZE
== 3; here we need lhSize+1 = 4");
in ZSTD_decodeLiteralsBlock()
Completed in 33 milliseconds