Searched refs:mz_uint8 (Results 1 – 2 of 2) sorted by relevance
/external/OpenCL-CTS/test_common/miniz/ |
D | miniz.c | 188 …#define MZ_READ_LE16(p) ((mz_uint32)(((const mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *… 189 …mz_uint8 *)(p))[0]) | ((mz_uint32)(((const mz_uint8 *)(p))[1]) << 8U) | ((mz_uint32)(((const mz_ui… 222 mz_ulong mz_crc32(mz_ulong crc, const mz_uint8 *ptr, size_t buf_len) in mz_crc32() 228 …crcu32 = ~crcu32; while (buf_len--) { mz_uint8 b = *ptr++; crcu32 = (crcu32 >> 4) ^ s_crc32[(crcu3… in mz_crc32() 402 mz_uint8 m_dict[TINFL_LZ_DICT_SIZE]; 667 …mpress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_b… in tinfl_decompress() 673 static const mz_uint8 s_length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 }; in tinfl_decompress() 677 const mz_uint8 *pIn_buf_cur = pIn_buf_next, *const pIn_buf_end = pIn_buf_next + *pIn_buf_size; in tinfl_decompress() 678 mz_uint8 *pOut_buf_cur = pOut_buf_next, *const pOut_buf_end = pOut_buf_next + *pOut_buf_size; in tinfl_decompress() 708 *pOut_buf_cur++ = (mz_uint8)dist; in tinfl_decompress() [all …]
|
D | miniz.h | 292 typedef unsigned char mz_uint8; typedef 561 …mpress(tinfl_decompressor *r, const mz_uint8 *pIn_buf_next, size_t *pIn_buf_size, mz_uint8 *pOut_b… 572 mz_uint8 m_code_size[TINFL_MAX_HUFF_SYMBOLS_0]; 594 mz_uint8 m_raw_header[4], m_len_codes[TINFL_MAX_HUFF_SYMBOLS_0 + TINFL_MAX_HUFF_SYMBOLS_1 + 137]; 699 mz_uint8 *m_pLZ_code_buf, *m_pLZ_flags, *m_pOutput_buf, *m_pOutput_buf_end; 707 const mz_uint8 *m_pSrc; 709 mz_uint8 m_dict[TDEFL_LZ_DICT_SIZE + TDEFL_MAX_MATCH_LEN - 1]; 712 mz_uint8 m_huff_code_sizes[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; 713 mz_uint8 m_lz_code_buf[TDEFL_LZ_CODE_BUF_SIZE]; 716 mz_uint8 m_output_buf[TDEFL_OUT_BUF_SIZE];
|