Lines Matching refs:BYTE

281 #define	BYTE	uint8_t  macro
351 #define INITBASE(base) const BYTE* const base = ip
359 #define HTYPE const BYTE *
385 #define LZ4_BLINDCOPY(s, d, l) { BYTE* e = (d) + l; LZ4_WILDCOPY(s, d, e); \
483 const BYTE *ip = (const BYTE *) source; in LZ4_compressCtx()
485 const BYTE *anchor = ip; in LZ4_compressCtx()
486 const BYTE *const iend = ip + isize; in LZ4_compressCtx()
487 const BYTE *const oend = (BYTE *) dest + osize; in LZ4_compressCtx()
488 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compressCtx()
491 BYTE *op = (BYTE *) dest; in LZ4_compressCtx()
510 const BYTE *forwardIp = ip; in LZ4_compressCtx()
511 const BYTE *ref; in LZ4_compressCtx()
512 BYTE *token; in LZ4_compressCtx()
532 while ((ip > anchor) && (ref > (const BYTE *) source) && in LZ4_compressCtx()
552 *op++ = (BYTE)len; in LZ4_compressCtx()
607 *op++ = (BYTE)len; in LZ4_compressCtx()
645 *op++ = (BYTE)lastRun; in LZ4_compressCtx()
678 const BYTE *ip = (const BYTE *) source; in LZ4_compress64kCtx()
679 const BYTE *anchor = ip; in LZ4_compress64kCtx()
680 const BYTE *const base = ip; in LZ4_compress64kCtx()
681 const BYTE *const iend = ip + isize; in LZ4_compress64kCtx()
682 const BYTE *const oend = (BYTE *) dest + osize; in LZ4_compress64kCtx()
683 const BYTE *const mflimit = iend - MFLIMIT; in LZ4_compress64kCtx()
686 BYTE *op = (BYTE *) dest; in LZ4_compress64kCtx()
703 const BYTE *forwardIp = ip; in LZ4_compress64kCtx()
704 const BYTE *ref; in LZ4_compress64kCtx()
705 BYTE *token; in LZ4_compress64kCtx()
725 while ((ip > anchor) && (ref > (const BYTE *) source) && in LZ4_compress64kCtx()
745 *op++ = (BYTE)len; in LZ4_compress64kCtx()
800 *op++ = (BYTE)len; in LZ4_compress64kCtx()
837 *op++ = (BYTE)lastRun; in LZ4_compress64kCtx()
902 const BYTE *restrict ip = (const BYTE *) source; in LZ4_uncompress_unknownOutputSize()
903 const BYTE *const iend = ip + isize; in LZ4_uncompress_unknownOutputSize()
904 const BYTE *ref; in LZ4_uncompress_unknownOutputSize()
906 BYTE *op = (BYTE *) dest; in LZ4_uncompress_unknownOutputSize()
907 BYTE *const oend = op + maxOutputSize; in LZ4_uncompress_unknownOutputSize()
908 BYTE *cpy; in LZ4_uncompress_unknownOutputSize()
957 if (ref < (BYTE * const) dest) in LZ4_uncompress_unknownOutputSize()