Searched refs:mz_uint16 (Results 1 – 2 of 2) sorted by relevance
/external/OpenCL-CTS/test_common/miniz/ |
D | miniz.h | 294 typedef unsigned short mz_uint16; typedef 326 mz_uint16 m_version_made_by; 327 mz_uint16 m_version_needed; 328 mz_uint16 m_bit_flag; 329 mz_uint16 m_method; 336 mz_uint16 m_internal_attr; 468 …pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz… 473 …t char *pArchive_name, const char *pSrc_filename, const void *pComment, mz_uint16 comment_size, mz… 494 …pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz… 710 mz_uint16 m_huff_count[TDEFL_MAX_HUFF_TABLES][TDEFL_MAX_HUFF_SYMBOLS]; [all …]
|
D | miniz.c | 161 typedef unsigned char mz_validate_uint16[sizeof(mz_uint16)==2 ? 1 : -1]; 185 #define MZ_READ_LE16(p) *((const mz_uint16 *)(p)) 1006 static const mz_uint16 s_tdefl_len_sym[256] = { 1057 typedef struct { mz_uint16 m_key, m_sym_index; } tdefl_sym_freq; 1082 …_key<A[leaf].m_key) { A[next].m_key = A[root].m_key; A[root++].m_key = (mz_uint16)next; } else A[n… in tdefl_calculate_minimum_redundancy() 1083 …) { A[next].m_key = (mz_uint16)(A[next].m_key + A[root].m_key); A[root++].m_key = (mz_uint16)next;… in tdefl_calculate_minimum_redundancy() 1090 while (avbl>used) { A[next--].m_key = (mz_uint16)(dpth); avbl--; } in tdefl_calculate_minimum_redundancy() 1121 const mz_uint16 *pSym_count = &d->m_huff_count[table_num][0]; in tdefl_optimize_huffman_table() 1122 …unt[i]) { syms0[num_used_syms].m_key = (mz_uint16)pSym_count[i]; syms0[num_used_syms++].m_sym_inde… in tdefl_optimize_huffman_table() 1141 d->m_huff_codes[table_num][i] = (mz_uint16)rev_code; in tdefl_optimize_huffman_table() [all …]
|