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:singleSegment
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/decompress/
H
A
D
zstd_decompress.c
401
U32 const
singleSegment
= (fhd >> 5) & 1;
in ZSTD_frameHeaderSize_internal()
local
403
return minInputSize + !
singleSegment
in ZSTD_frameHeaderSize_internal()
405
+ (
singleSegment
&& !fcsId);
in ZSTD_frameHeaderSize_internal()
458
U32 const
singleSegment
= (fhdByte>>5)&1;
in ZSTD_getFrameHeader_advanced()
local
466
if (!
singleSegment
) {
in ZSTD_getFrameHeader_advanced()
488
case 0 : if (
singleSegment
) frameContentSize = ip[pos]; break;
in ZSTD_getFrameHeader_advanced()
493
if (
singleSegment
) windowSize = frameContentSize;
in ZSTD_getFrameHeader_advanced()
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
decompress.c
196
U32 const
singleSegment
= (fhd >> 5) & 1;
in ZSTD_frameHeaderSize()
local
198
return ZSTD_frameHeaderSize_prefix + !
singleSegment
+ ZSTD_did_fieldSize[dictID] + ZSTD_fcs_fieldSize[fcsId] + (
singleSegment
&& !fcsId);
in ZSTD_frameHeaderSize()
237
U32 const
singleSegment
= (fhdByte >> 5) & 1;
in ZSTD_getFrameParams()
local
245
if (!
singleSegment
) {
in ZSTD_getFrameParams()
273
if (
singleSegment
)
in ZSTD_getFrameParams()
H
A
D
compress.c
2437
U32 const
singleSegment
= params.fParams.contentSizeFlag && (windowSize >= pledgedSrcSize);
in ZSTD_writeFrameHeader()
local
2441
BYTE const frameHeaderDecriptionByte = (BYTE)(dictIDSizeCode + (checksumFlag << 2) + (
singleSegment
<< 5) + (fcsCode << 6));
in ZSTD_writeFrameHeader()
2450
if (!
singleSegment
)
in ZSTD_writeFrameHeader()
2471
if (
singleSegment
)
in ZSTD_writeFrameHeader()
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress.c
3928
U32 const
singleSegment
= params->fParams.contentSizeFlag && (windowSize >= pledgedSrcSize);
in ZSTD_writeFrameHeader()
local
3932
BYTE const frameHeaderDescriptionByte = (BYTE)(dictIDSizeCode + (checksumFlag<<2) + (
singleSegment
<<5) + (fcsCode<<6) );
in ZSTD_writeFrameHeader()
3945
if (!
singleSegment
) op[pos++] = windowLogByte;
in ZSTD_writeFrameHeader()
3961
case 0 : if (
singleSegment
) op[pos++] = (BYTE)(pledgedSrcSize); break;
in ZSTD_writeFrameHeader()
Completed in 28 milliseconds