Searched refs:MEM_read32 (Results 1 – 7 of 7) sorted by relevance
94 U32 const val0 = MEM_read32(ip0); in ZSTD_compressBlock_fast_generic()96 U32 const val1 = MEM_read32(ip1); in ZSTD_compressBlock_fast_generic()115 if ((offset_1 > 0) & (MEM_read32(repMatch) == MEM_read32(ip2))) { in ZSTD_compressBlock_fast_generic()123 if ((matchIndex0 > prefixStartIndex) && MEM_read32(match0) == val0) { in ZSTD_compressBlock_fast_generic()127 if ((matchIndex1 > prefixStartIndex) && MEM_read32(match1) == val1) { in ZSTD_compressBlock_fast_generic()164 while ( (ip0 <= ilimit) && (MEM_read32(ip0) == MEM_read32(ip0 - offset_2)) ) { in ZSTD_compressBlock_fast_generic()271 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { in ZSTD_compressBlock_fast_dictMatchState_generic()281 MEM_read32(dictMatch) != MEM_read32(ip)) { in ZSTD_compressBlock_fast_dictMatchState_generic()297 } else if (MEM_read32(match) != MEM_read32(ip)) { in ZSTD_compressBlock_fast_dictMatchState_generic()331 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_fast_dictMatchState_generic()[all …]
147 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { in ZSTD_compressBlock_doubleFast_generic()157 && ((offset_1 > 0) & (MEM_read32(ip+1-offset_1) == MEM_read32(ip+1)))) { in ZSTD_compressBlock_doubleFast_generic()187 if (MEM_read32(match) == MEM_read32(ip)) { in ZSTD_compressBlock_doubleFast_generic()196 if (match > dictStart && MEM_read32(match) == MEM_read32(ip)) { in ZSTD_compressBlock_doubleFast_generic()278 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_doubleFast_generic()295 & (MEM_read32(ip) == MEM_read32(ip - offset_2)) )) { in ZSTD_compressBlock_doubleFast_generic()411 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { in ZSTD_compressBlock_doubleFast_extDict_generic()428 } else if ((matchIndex > dictStartIndex) && (MEM_read32(match) == MEM_read32(ip))) { in ZSTD_compressBlock_doubleFast_extDict_generic()479 && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { in ZSTD_compressBlock_doubleFast_extDict_generic()
91 { U32 cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()93 U32 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()98 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()103 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()108 c = cached; cached = MEM_read32(ip); ip += 4; in HIST_count_parallel_wksp()
649 …if (MEM_read32(match) == MEM_read32(ip)) /* assumption : matchIndex <= dictLimit-4 (by table con… in ZSTD_HcFindBestMatch_generic()700 if (MEM_read32(match) == MEM_read32(ip)) { in ZSTD_HcFindBestMatch_generic()737 if (MEM_read32(match) == MEM_read32(ip)) { in ZSTD_HcFindBestMatch_generic()767 …if (MEM_read32(match) == MEM_read32(ip)) /* assumption : matchIndex <= dictLimit-4 (by table con… in ZSTD_HcFindBestMatch_generic()958 && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { in ZSTD_compressBlock_lazy_generic()965 && ((offset_1 > 0) & (MEM_read32(ip+1-offset_1) == MEM_read32(ip+1)))) { in ZSTD_compressBlock_lazy_generic()987 && (offset) && ((offset_1>0) & (MEM_read32(ip) == MEM_read32(ip - offset_1)))) { in ZSTD_compressBlock_lazy_generic()1000 && (MEM_read32(repMatch) == MEM_read32(ip)) ) { in ZSTD_compressBlock_lazy_generic()1022 && (offset) && ((offset_1>0) & (MEM_read32(ip) == MEM_read32(ip - offset_1)))) { in ZSTD_compressBlock_lazy_generic()1035 && (MEM_read32(repMatch) == MEM_read32(ip)) ) { in ZSTD_compressBlock_lazy_generic()[all …]
630 …if (MEM_64bits() && (pIn<(pInLimit-3)) && (MEM_read32(pMatch) == MEM_read32(pIn))) { pIn+=4; pMatc… in ZSTD_count()665 static size_t ZSTD_hash4Ptr(const void* ptr, U32 h) { return ZSTD_hash4(MEM_read32(ptr), h); } in ZSTD_hash4Ptr()
342 case 4 : return MEM_read32(memPtr); in ZSTD_readMINMATCH()344 return MEM_read32(memPtr)<<8; in ZSTD_readMINMATCH()346 return MEM_read32(memPtr)>>8; in ZSTD_readMINMATCH()
50 MEM_STATIC U32 MEM_read32(const void* memPtr);114 MEM_STATIC U32 MEM_read32(const void *memPtr) in MEM_read32() function