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:longLengthPos
(Results
1 - 5
of
5
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/common/
H
A
D
zstd_internal.h
300
/*
longLengthPos
and longLengthType to allow us to represent either a single litLength or matchLength
305
U32
longLengthPos
; /* Index of the sequence to apply long length modification to */
member
315
* indicated by
longLengthPos
and longLengthType, and adds MINMATCH back to matchLength.
322
if (seqStore->
longLengthPos
== (U32)(seq - seqStore->sequencesStart)) {
in ZSTD_getSequenceLength()
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
zstd_internal.h
197
U32
longLengthPos
;
member
H
A
D
compress.c
581
llCodeTable[seqStorePtr->
longLengthPos
] = MaxLL;
in ZSTD_seqToCodes()
583
mlCodeTable[seqStorePtr->
longLengthPos
] = MaxML;
in ZSTD_seqToCodes()
870
seqStorePtr->
longLengthPos
= (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
in ZSTD_storeSeq()
880
seqStorePtr->
longLengthPos
= (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
in ZSTD_storeSeq()
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress_internal.h
626
seqStorePtr->
longLengthPos
= (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
in ZSTD_storeSeq()
639
seqStorePtr->
longLengthPos
= (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart);
in ZSTD_storeSeq()
H
A
D
zstd_compress.c
2314
llCodeTable[seqStorePtr->
longLengthPos
] = MaxLL;
in ZSTD_seqToCodes()
2316
mlCodeTable[seqStorePtr->
longLengthPos
] = MaxML;
in ZSTD_seqToCodes()
2827
if (i == seqStore->
longLengthPos
) {
in ZSTD_copyBlockSequences()
3283
if (i == seqStore->
longLengthPos
&& seqStore->longLengthType == ZSTD_llt_literalLength) {
in ZSTD_countSeqStoreLiteralsBytes()
3298
if (i == seqStore->
longLengthPos
&& seqStore->longLengthType == ZSTD_llt_matchLength) {
in ZSTD_countSeqStoreMatchBytes()
3321
/* Move
longLengthPos
into the correct position if necessary */
in ZSTD_deriveSeqStoreChunk()
3323
if (originalSeqStore->
longLengthPos
< startIdx || originalSeqStore->
longLengthPos
> endIdx) {
in ZSTD_deriveSeqStoreChunk()
3326
resultSeqStore->
longLengthPos
-= (U32)startIdx;
in ZSTD_deriveSeqStoreChunk()
Completed in 21 milliseconds