OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchEndIdx
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c
472
U32
matchEndIdx
= curr+8+1;
528
if (matchLength >
matchEndIdx
- matchIndex)
529
matchEndIdx
= matchIndex + (U32)matchLength;
555
assert(
matchEndIdx
> curr + 8);
556
return MAX(positions,
matchEndIdx
- (curr + 8));
623
U32
matchEndIdx
= curr+8+1; /* farthest referenced position of any match => detects repetitive patterns */
746
assert(
matchEndIdx
> matchIndex);
747
if (matchLength >
matchEndIdx
- matchIndex)
748
matchEndIdx
= matchIndex + (U32)matchLength;
794
if (matchLength >
matchEndIdx
- matchIndex
[
all
...]
zstd_lazy.c
317
U32
matchEndIdx
= curr + 8 + 1;
340
if (matchLength >
matchEndIdx
- matchIndex)
341
matchEndIdx
= matchIndex + (U32)matchLength;
380
assert(
matchEndIdx
> curr+8); /* ensure nextToUpdate is increased */
381
ms->nextToUpdate =
matchEndIdx
- 8; /* skip repetitive patterns */
Completed in 33 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026