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:maxRep
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_fast.c
143
U32 const
maxRep
= curr - windowLow;
in ZSTD_compressBlock_fast_noDict_generic()
local
144
if (rep_offset2 >
maxRep
) offsetSaved = rep_offset2, rep_offset2 = 0;
in ZSTD_compressBlock_fast_noDict_generic()
145
if (rep_offset1 >
maxRep
) offsetSaved = rep_offset1, rep_offset1 = 0;
in ZSTD_compressBlock_fast_noDict_generic()
H
A
D
zstd_double_fast.c
102
U32 const
maxRep
= current - windowLow;
in ZSTD_compressBlock_doubleFast_noDict_generic()
local
103
if (offset_2 >
maxRep
) offsetSaved = offset_2, offset_2 = 0;
in ZSTD_compressBlock_doubleFast_noDict_generic()
104
if (offset_1 >
maxRep
) offsetSaved = offset_1, offset_1 = 0;
in ZSTD_compressBlock_doubleFast_noDict_generic()
H
A
D
zstd_lazy.c
1514
U32 const
maxRep
= curr - windowLow;
in ZSTD_compressBlock_lazy_generic()
local
1515
if (offset_2 >
maxRep
) savedOffset = offset_2, offset_2 = 0;
in ZSTD_compressBlock_lazy_generic()
1516
if (offset_1 >
maxRep
) savedOffset = offset_1, offset_1 = 0;
in ZSTD_compressBlock_lazy_generic()
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
compress.c
1027
U32 const
maxRep
= (U32)(ip - lowest);
in ZSTD_compressBlock_fast_generic()
local
1028
if (offset_2 >
maxRep
)
in ZSTD_compressBlock_fast_generic()
1030
if (offset_1 >
maxRep
)
in ZSTD_compressBlock_fast_generic()
1275
U32 const
maxRep
= (U32)(ip - lowest);
in ZSTD_compressBlock_doubleFast_generic()
local
1276
if (offset_2 >
maxRep
)
in ZSTD_compressBlock_doubleFast_generic()
1278
if (offset_1 >
maxRep
)
in ZSTD_compressBlock_doubleFast_generic()
1918
U32 const
maxRep
= (U32)(ip - base);
in ZSTD_compressBlock_lazy_generic()
local
1919
if (offset_2 >
maxRep
)
in ZSTD_compressBlock_lazy_generic()
1921
if (offset_1 >
maxRep
)
in ZSTD_compressBlock_lazy_generic()
Completed in 14 milliseconds