Lines Matching refs:BYTE
88 BYTE hufDesBuffer[ZSTD_MAX_HUF_HEADER_SIZE];
101 BYTE fseTablesBuffer[ZSTD_MAX_FSE_HEADERS_SIZE];
185 BYTE const* nextSrc; /* next block here to continue on current prefix */
186 BYTE const* base; /* All regular indexes relative to this position */
187 BYTE const* dictBase; /* extDict indexes relative to this position */
245 BYTE const* split;
257 BYTE* bucketOffsets; /* Next position in bucket to insert entry */
459 static const BYTE LL_Code[64] = { 0, 1, 2, 3, 4, 5, 6, 7, in ZSTD_LLcode()
476 … static const BYTE ML_Code[128] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, in ZSTD_MLcode()
509 ZSTD_memcpy((BYTE*)dst + ZSTD_blockHeaderSize, src, srcSize); in ZSTD_noCompressBlock()
513 MEM_STATIC size_t ZSTD_rleCompressBlock (void* dst, size_t dstCapacity, BYTE src, size_t srcSize, U… in ZSTD_rleCompressBlock()
515 BYTE* const op = (BYTE*)dst; in ZSTD_rleCompressBlock()
557 ZSTD_safecopyLiterals(BYTE* op, BYTE const* ip, BYTE const* const iend, BYTE const* ilimit_w) in ZSTD_safecopyLiterals()
589 size_t litLength, const BYTE* literals, const BYTE* litLimit, in ZSTD_storeSeq()
593 BYTE const* const litLimit_w = litLimit - WILDCOPY_OVERLENGTH; in ZSTD_storeSeq()
594 BYTE const* const litEnd = literals + litLength; in ZSTD_storeSeq()
596 static const BYTE* g_start = NULL; in ZSTD_storeSeq()
597 …if (g_start==NULL) g_start = (const BYTE*)literals; /* note : index only works for compression wi… in ZSTD_storeSeq()
598 { U32 const pos = (U32)((const BYTE*)literals - g_start); in ZSTD_storeSeq()
741 MEM_STATIC size_t ZSTD_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* const pInLimit) in ZSTD_count()
743 const BYTE* const pStart = pIn; in ZSTD_count()
744 const BYTE* const pInLoopLimit = pInLimit - (sizeof(size_t)-1); in ZSTD_count()
767 ZSTD_count_2segments(const BYTE* ip, const BYTE* match, in ZSTD_count_2segments()
768 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments()
770 const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd); in ZSTD_count_2segments()
844 BYTE const* istart = (BYTE const*)buf; in ZSTD_rollingHash_append()
873 MEM_STATIC U64 ZSTD_rollingHash_rotate(U64 hash, BYTE toRemove, BYTE toAdd, U64 primePower) in ZSTD_rollingHash_rotate()
961 U32 const curr = (U32)((BYTE const*)src - window.base); in ZSTD_window_canOverflowCorrect()
996 U32 const curr = (U32)((BYTE const*)srcEnd - window.base); in ZSTD_window_needOverflowCorrection()
1038 U32 const curr = (U32)((BYTE const*)src - window->base); in ZSTD_window_correctOverflow()
1117 U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base); in ZSTD_window_enforceMaxDist()
1164 { U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base); in ZSTD_checkDictValidity()
1186 window->base = (BYTE const*)" "; in ZSTD_window_init()
1187 window->dictBase = (BYTE const*)" "; in ZSTD_window_init()
1206 BYTE const* const ip = (BYTE const*)src; in ZSTD_window_update()