Lines Matching refs:BYTE
99 BYTE* litStart;
100 BYTE* lit; /* ptr to end of literals */
101 BYTE* llCode;
102 BYTE* mlCode;
103 BYTE* ofCode;
154 BYTE hufDesBuffer[ZSTD_MAX_HUF_HEADER_SIZE];
167 BYTE fseTablesBuffer[ZSTD_MAX_FSE_HEADERS_SIZE];
253 BYTE const* nextSrc; /* next block here to continue on current prefix */
254 BYTE const* base; /* All regular indexes relative to this position */
255 BYTE const* dictBase; /* extDict indexes relative to this position */
283 …BYTE* tagTable; /* For row-based matchFinder: A row-based table containin…
327 BYTE const* split;
339 BYTE* bucketOffsets; /* Next position in bucket to insert entry */
578 static const BYTE LL_Code[64] = { 0, 1, 2, 3, 4, 5, 6, 7, in ZSTD_LLcode()
595 … 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()
622 MEM_STATIC const BYTE*
623 ZSTD_selectAddr(U32 index, U32 lowLimit, const BYTE* candidate, const BYTE* backup) in ZSTD_selectAddr()
649 ZSTD_memcpy((BYTE*)dst + ZSTD_blockHeaderSize, src, srcSize); in ZSTD_noCompressBlock()
654 ZSTD_rleCompressBlock(void* dst, size_t dstCapacity, BYTE src, size_t srcSize, U32 lastBlock) in ZSTD_rleCompressBlock()
656 BYTE* const op = (BYTE*)dst; in ZSTD_rleCompressBlock()
698 ZSTD_safecopyLiterals(BYTE* op, BYTE const* ip, BYTE const* const iend, BYTE const* ilimit_w) in ZSTD_safecopyLiterals()
769 size_t litLength, const BYTE* literals, const BYTE* litLimit, in ZSTD_storeSeq()
773 BYTE const* const litLimit_w = litLimit - WILDCOPY_OVERLENGTH; in ZSTD_storeSeq()
774 BYTE const* const litEnd = literals + litLength; in ZSTD_storeSeq()
776 static const BYTE* g_start = NULL; in ZSTD_storeSeq()
777 …if (g_start==NULL) g_start = (const BYTE*)literals; /* note : index only works for compression wi… in ZSTD_storeSeq()
778 { U32 const pos = (U32)((const BYTE*)literals - g_start); in ZSTD_storeSeq()
846 MEM_STATIC size_t ZSTD_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* const pInLimit) in ZSTD_count()
848 const BYTE* const pStart = pIn; in ZSTD_count()
849 const BYTE* const pInLoopLimit = pInLimit - (sizeof(size_t)-1); in ZSTD_count()
872 ZSTD_count_2segments(const BYTE* ip, const BYTE* match, in ZSTD_count_2segments()
873 const BYTE* iEnd, const BYTE* mEnd, const BYTE* iStart) in ZSTD_count_2segments()
875 const BYTE* const vEnd = MIN( ip + (mEnd - match), iEnd); in ZSTD_count_2segments()
978 BYTE const* istart = (BYTE const*)buf; in ZSTD_rollingHash_append()
1007 MEM_STATIC U64 ZSTD_rollingHash_rotate(U64 hash, BYTE toRemove, BYTE toAdd, U64 primePower) in ZSTD_rollingHash_rotate()
1096 U32 const curr = (U32)((BYTE const*)src - window.base); in ZSTD_window_canOverflowCorrect()
1131 U32 const curr = (U32)((BYTE const*)srcEnd - window.base); in ZSTD_window_needOverflowCorrection()
1175 U32 const curr = (U32)((BYTE const*)src - window->base); in ZSTD_window_correctOverflow()
1254 U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base); in ZSTD_window_enforceMaxDist()
1301 { U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base); in ZSTD_checkDictValidity()
1328 window->base = (BYTE const*)" "; in ZSTD_window_init()
1329 window->dictBase = (BYTE const*)" "; in ZSTD_window_init()
1350 BYTE const* const ip = (BYTE const*)src; in ZSTD_window_update()