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:matchLong
(Results
1 - 2
of
2
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_double_fast.c
317
const BYTE*
matchLong
= base + matchIndexL;
in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
local
337
if (MEM_read64(
matchLong
) == MEM_read64(ip)) {
in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
338
mLength = ZSTD_count(ip+8,
matchLong
+8, iend) + 8;
in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
339
offset = (U32)(ip-
matchLong
);
in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
340
while (((ip>anchor) & (
matchLong
>prefixLowest)) && (ip[-1] ==
matchLong
[-1])) { ip--;
matchLong
--; mLength++; } /* catch up */
in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
573
const BYTE*
matchLong
= matchLongBase + matchLongIndex;
in ZSTD_compressBlock_doubleFast_extDict_generic()
local
590
if ((matchLongIndex > dictStartIndex) && (MEM_read64(
matchLong
) == MEM_read64(ip))) {
in ZSTD_compressBlock_doubleFast_extDict_generic()
594
mLength = ZSTD_count_2segments(ip+8,
matchLong
in ZSTD_compressBlock_doubleFast_extDict_generic()
[all...]
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
compress.c
1290
const BYTE *
matchLong
= base + matchIndexL;
in ZSTD_compressBlock_doubleFast_generic()
local
1300
if ((matchIndexL > lowestIndex) && (ZSTD_read64(
matchLong
) == ZSTD_read64(ip))) {
in ZSTD_compressBlock_doubleFast_generic()
1301
mLength = ZSTD_count(ip + 8,
matchLong
+ 8, iend) + 8;
in ZSTD_compressBlock_doubleFast_generic()
1302
offset = (U32)(ip -
matchLong
);
in ZSTD_compressBlock_doubleFast_generic()
1303
while (((ip > anchor) & (
matchLong
> lowest)) && (ip[-1] ==
matchLong
[-1])) {
in ZSTD_compressBlock_doubleFast_generic()
1305
matchLong
--;
in ZSTD_compressBlock_doubleFast_generic()
1426
const BYTE *
matchLong
= matchLongBase + matchLongIndex;
in ZSTD_compressBlock_doubleFast_extDict_generic()
local
1442
if ((matchLongIndex > lowestIndex) && (ZSTD_read64(
matchLong
) == ZSTD_read64(ip))) {
in ZSTD_compressBlock_doubleFast_extDict_generic()
1446
mLength = ZSTD_count_2segments(ip + 8,
matchLong
in ZSTD_compressBlock_doubleFast_extDict_generic()
[all...]
Completed in 7 milliseconds