HomeSort by: relevance | last modified time | path
    Searched defs:oend_w (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 828 * and write up to 16 bytes past oend_w (op >= oend_w is allowed).
837 static void ZSTD_safecopy(BYTE* op, const BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) {
841 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) ||
858 if (oend <= oend_w) {
863 if (op <= oend_w) {
865 assert(oend > oend_w);
866 ZSTD_wildcopy(op, ip, oend_w - op, ovtype);
867 ip += oend_w - op;
868 op += oend_w - op
916 BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH; local
1009 BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH; \/* risk : address space underflow on oend=NULL *\/ local
    [all...]
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v07.c 3542 BYTE* const oend_w = oend-WILDCOPY_OVERLENGTH; local
3573 if (op > oend_w || sequence.matchLength < MINMATCH) {
3578 /* Requirement: op <= oend_w */
3599 if (op < oend_w) {
3600 ZSTDv07_wildcopy(op, match, oend_w - op);
3601 match += oend_w - op;
3602 op = oend_w;

Completed in 47 milliseconds