Lines Matching defs:ref
580 const BYTE* ref = NULL;
593 ml = LZ4HC_InsertAndFindBestMatch(ctx, ip, matchlimit, &ref, maxNbAttempts, patternAnalysis, dict);
597 start0 = ip; ref0 = ref; ml0 = ml;
610 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
616 ip = start0; ref = ref0; ml = ml0; /* restore initial ML1 */
623 ref =ref2;
654 /* ip & ref are known; Now for ml */
658 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
663 ref = ref2;
684 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
686 ref = ref3;
704 * ip & ref are known; Now decide ml.
722 if (LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, limit, oend)) goto _dest_overflow;
725 ip = start2; ref = ref2; ml = ml2;
768 /* Assumption : ip, anchor, ml and ref must be set correctly */
782 LZ4HC_encodeSequence(UPDATABLE(ip, op, anchor), ml, ref, notLimited, oend);