OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ZSTD_wildcopy
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/common/
zstd_internal.h
208
/*!
ZSTD_wildcopy
() :
216
void
ZSTD_wildcopy
(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e const ovtype)
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c
1329
static void
ZSTD_wildcopy
(void* dst, const void* src, ptrdiff_t length)
1785
ZSTD_wildcopy
(op, match, (oend-8) - op);
1792
ZSTD_wildcopy
(op, match, (ptrdiff_t)sequence.matchLength-8); /* works even if matchLength < 8 */
zstd_v03.c
2330
/*!
ZSTD_wildcopy
: custom version of memcpy(), can copy up to 7-8 bytes too many */
2331
static void
ZSTD_wildcopy
(void* dst, const void* src, ptrdiff_t length)
2708
ZSTD_wildcopy
(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwrite beyond oend */
2742
ZSTD_wildcopy
(op, match, oend_8 - op);
2750
ZSTD_wildcopy
(op, match, (ptrdiff_t)sequence.matchLength-8); /* works even if matchLength < 8 */
zstd_v04.c
338
/*!
ZSTD_wildcopy
: custom version of memcpy(), can copy up to 7-8 bytes too many */
339
static void
ZSTD_wildcopy
(void* dst, const void* src, ptrdiff_t length)
2835
ZSTD_wildcopy
(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwrite beyond oend */
2886
ZSTD_wildcopy
(op, match, oend_8 - op);
2894
ZSTD_wildcopy
(op, match, (ptrdiff_t)sequence.matchLength-8); /* works even if matchLength < 8, but must be signed */
zstd_v02.c
2690
/*!
ZSTD_wildcopy
: custom version of memcpy(), can copy up to 7-8 bytes too many */
2691
static void
ZSTD_wildcopy
(void* dst, const void* src, ptrdiff_t length)
3068
ZSTD_wildcopy
(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwrite beyond oend */
3103
ZSTD_wildcopy
(op, match, oend_8 - op);
3111
ZSTD_wildcopy
(op, match, (ptrdiff_t)sequence.matchLength-8); /* works even if matchLength < 8 */
Completed in 58 milliseconds
Indexes created Sun Aug 09 00:24:28 UTC 2026