Lines Matching refs:current
1032 U32 const current = (U32)(forwardIp - base); in LZ4_compress_generic_validated() local
1034 assert(matchIndex <= current); in LZ4_compress_generic_validated()
1070 LZ4_putIndexOnHash(current, h, cctx->hashTable, tableType); in LZ4_compress_generic_validated()
1072 DEBUGLOG(7, "candidate at pos=%u (offset=%u \n", matchIndex, current - matchIndex); in LZ4_compress_generic_validated()
1074 assert(matchIndex < current); in LZ4_compress_generic_validated()
1076 && (matchIndex+LZ4_DISTANCE_MAX < current)) { in LZ4_compress_generic_validated()
1079 … assert((current - matchIndex) <= LZ4_DISTANCE_MAX); /* match now expected within distance */ in LZ4_compress_generic_validated()
1082 if (maybe_extMem) offset = current - matchIndex; in LZ4_compress_generic_validated()
1241 U32 const current = (U32)(ip-base); in LZ4_compress_generic_validated() local
1243 assert(matchIndex < current); in LZ4_compress_generic_validated()
1268 LZ4_putIndexOnHash(current, h, cctx->hashTable, tableType); in LZ4_compress_generic_validated()
1269 assert(matchIndex < current); in LZ4_compress_generic_validated()
1271 …&& (LZ4_DISTANCE_MAX == LZ4_DISTANCE_ABSOLUTE_MAX)) ? 1 : (matchIndex+LZ4_DISTANCE_MAX >= current)) in LZ4_compress_generic_validated()
1275 if (maybe_extMem) offset = current - matchIndex; in LZ4_compress_generic_validated()