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:skippableSize
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/decompress/
H
A
D
zstd_decompress.c
544
size_t const
skippableSize
= skippableHeaderSize + sizeU32;
in readSkippableFrameSize()
local
545
RETURN_ERROR_IF(
skippableSize
> srcSize, srcSize_wrong, "");
in readSkippableFrameSize()
546
return
skippableSize
;
in readSkippableFrameSize()
594
size_t const
skippableSize
= readSkippableFrameSize(src, srcSize);
in ZSTD_findDecompressedSize()
local
595
if (ZSTD_isError(
skippableSize
)) {
in ZSTD_findDecompressedSize()
598
assert(
skippableSize
<= srcSize);
in ZSTD_findDecompressedSize()
600
src = (const BYTE *)src +
skippableSize
;
in ZSTD_findDecompressedSize()
601
srcSize -=
skippableSize
;
in ZSTD_findDecompressedSize()
962
size_t const
skippableSize
= readSkippableFrameSize(src, srcSize);
in ZSTD_decompressMultiFrame()
local
963
FORWARD_IF_ERROR(
skippableSize
, "readSkippableFrameSiz
in ZSTD_decompressMultiFrame()
[all...]
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
decompress.c
327
size_t
skippableSize
;
in ZSTD_findDecompressedSize()
local
330
skippableSize
= ZSTD_readLE32((const BYTE *)src + 4) + ZSTD_skippableHeaderSize;
in ZSTD_findDecompressedSize()
331
if (srcSize <
skippableSize
) {
in ZSTD_findDecompressedSize()
335
src = (const BYTE *)src +
skippableSize
;
in ZSTD_findDecompressedSize()
336
srcSize -=
skippableSize
;
in ZSTD_findDecompressedSize()
1664
size_t
skippableSize
;
in ZSTD_decompressMultiFrame()
local
1667
skippableSize
= ZSTD_readLE32((const BYTE *)src + 4) + ZSTD_skippableHeaderSize;
in ZSTD_decompressMultiFrame()
1668
if (srcSize <
skippableSize
) {
in ZSTD_decompressMultiFrame()
1672
src = (const BYTE *)src +
skippableSize
;
in ZSTD_decompressMultiFrame()
1673
srcSize -=
skippableSize
;
in ZSTD_decompressMultiFrame()
[all...]
Completed in 7 milliseconds