OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:repIndex2
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c
630
U32 const
repIndex2
= current2 - offset_2;
631
const BYTE* repMatch2 =
repIndex2
< prefixStartIndex ?
632
dictBase - dictIndexDelta +
repIndex2
:
633
base +
repIndex2
;
634
if ( ((U32)((prefixStartIndex-1) - (U32)
repIndex2
) >= 3 /* intentional overflow */)
636
const BYTE* const repEnd2 =
repIndex2
< prefixStartIndex ? dictEnd : iend;
926
U32 const
repIndex2
= (U32)(ip0-base) - offset_2;
927
const BYTE* const repMatch2 =
repIndex2
< prefixStartIndex ? dictBase +
repIndex2
: base +
repIndex2
;
[
all
...]
zstd_double_fast.c
512
U32 const
repIndex2
= current2 - offset_2;
513
const BYTE* repMatch2 =
repIndex2
< prefixLowestIndex ?
514
dictBase +
repIndex2
- dictIndexDelta :
515
base +
repIndex2
;
516
if ( ((U32)((prefixLowestIndex-1) - (U32)
repIndex2
) >= 3 /* intentional overflow */)
518
const BYTE* const repEnd2 =
repIndex2
< prefixLowestIndex ? dictEnd : iend;
720
U32 const
repIndex2
= current2 - offset_2;
721
const BYTE* repMatch2 =
repIndex2
< prefixStartIndex ? dictBase +
repIndex2
: base +
repIndex2
;
[
all
...]
Completed in 28 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026