Home
last modified time | relevance | path

Searched refs:Z_INTERNAL (Results 1 – 25 of 56) sorted by relevance

123

/external/rust/crates/libz-sys/src/zlib-ng/
Dtrees_tbl.h6 Z_INTERNAL const ct_data static_ltree[L_CODES+2] = {
67 Z_INTERNAL const ct_data static_dtree[D_CODES] = {
76 const unsigned char Z_INTERNAL zng_dist_code[DIST_CODE_LEN] = {
105 const unsigned char Z_INTERNAL zng_length_code[MAX_MATCH-MIN_MATCH+1] = {
121 Z_INTERNAL const int base_length[LENGTH_CODES] = {
126 Z_INTERNAL const int base_dist[D_CODES] = {
Dfunctable.c85 Z_INTERNAL uint32_t crc32_generic(uint32_t, const unsigned char *, uint64_t);
129 Z_INTERNAL Z_TLS struct functable_s functable;
131 Z_INTERNAL void cpu_check_features(void) in cpu_check_features()
147 Z_INTERNAL void insert_string_stub(deflate_state *const s, const uint32_t str, uint32_t count) { in insert_string_stub()
164 Z_INTERNAL Pos quick_insert_string_stub(deflate_state *const s, const uint32_t str) { in quick_insert_string_stub()
178 Z_INTERNAL void slide_hash_stub(deflate_state *s) { in slide_hash_stub()
206 Z_INTERNAL uint32_t adler32_stub(uint32_t adler, const unsigned char *buf, size_t len) { in adler32_stub()
233 Z_INTERNAL uint32_t chunksize_stub(void) { in chunksize_stub()
251 Z_INTERNAL uint8_t* chunkcopy_stub(uint8_t *out, uint8_t const *from, unsigned len) { in chunkcopy_stub()
269 Z_INTERNAL uint8_t* chunkcopy_safe_stub(uint8_t *out, uint8_t const *from, unsigned len, uint8_t *s… in chunkcopy_safe_stub()
[all …]
Dgzguts.h18 # define Z_INTERNAL __attribute__((visibility ("internal"))) macro
20 # define Z_INTERNAL __attribute__((visibility ("hidden"))) macro
22 # define Z_INTERNAL macro
142 void Z_INTERNAL gz_error(gz_state *, int, const char *);
150 unsigned Z_INTERNAL gz_intmax(void);
Ddeflate.h380 void Z_INTERNAL fill_window(deflate_state *s);
381 void Z_INTERNAL slide_hash_c(deflate_state *s);
384 void Z_INTERNAL zng_tr_init(deflate_state *s);
385 void Z_INTERNAL zng_tr_flush_block(deflate_state *s, char *buf, uint32_t stored_len, int last);
386 void Z_INTERNAL zng_tr_flush_bits(deflate_state *s);
387 void Z_INTERNAL zng_tr_align(deflate_state *s);
388 void Z_INTERNAL zng_tr_stored_block(deflate_state *s, char *buf, uint32_t stored_len, int last);
389 unsigned Z_INTERNAL bi_reverse(unsigned code, int len);
390 void Z_INTERNAL flush_pending(PREFIX3(streamp) strm);
Dchunkset_tpl.h6 Z_INTERNAL uint32_t CHUNKSIZE(void) { in CHUNKSIZE()
20 Z_INTERNAL uint8_t* CHUNKCOPY(uint8_t *out, uint8_t const *from, unsigned len) { in CHUNKCOPY()
39 Z_INTERNAL uint8_t* CHUNKCOPY_SAFE(uint8_t *out, uint8_t const *from, unsigned len, uint8_t *safe) { in CHUNKCOPY_SAFE()
72 Z_INTERNAL uint8_t* CHUNKUNROLL(uint8_t *out, unsigned *dist, unsigned *len) { in CHUNKUNROLL()
87 Z_INTERNAL uint8_t* CHUNKMEMSET(uint8_t *out, unsigned dist, unsigned len) { in CHUNKMEMSET()
156 Z_INTERNAL uint8_t* CHUNKMEMSET_SAFE(uint8_t *out, unsigned dist, unsigned len, unsigned left) { in CHUNKMEMSET_SAFE()
Dzutil.c90 int Z_INTERNAL z_verbose = verbose;
92 void Z_INTERNAL z_error(char *m) { in z_error()
118 void Z_INTERNAL *zng_calloc(void *opaque, unsigned items, unsigned size) in zng_calloc()
129 void Z_INTERNAL zng_cfree(void *opaque, void *ptr) { in zng_cfree()
Dzutil.h14 # define Z_INTERNAL __attribute__((visibility ("internal"))) macro
16 # define Z_INTERNAL __attribute__((visibility ("hidden"))) macro
18 # define Z_INTERNAL macro
149 extern int Z_INTERNAL z_verbose;
150 extern void Z_INTERNAL z_error(char *m);
166 void Z_INTERNAL *zng_calloc(void *opaque, unsigned items, unsigned size);
167 void Z_INTERNAL zng_cfree(void *opaque, void *ptr);
Dtrees_emit.h15 extern Z_INTERNAL const ct_data static_ltree[L_CODES+2];
16 extern Z_INTERNAL const ct_data static_dtree[D_CODES];
18 extern const unsigned char Z_INTERNAL zng_dist_code[DIST_CODE_LEN];
19 extern const unsigned char Z_INTERNAL zng_length_code[MAX_MATCH-MIN_MATCH+1];
21 extern Z_INTERNAL const int base_length[LENGTH_CODES];
22 extern Z_INTERNAL const int base_dist[D_CODES];
Dcrc32.c51 Z_INTERNAL uint32_t crc32_generic(uint32_t crc, const unsigned char *buf, uint64_t len) { in crc32_generic()
102 Z_INTERNAL uint32_t crc32_little(uint32_t crc, const unsigned char *buf, uint64_t len) { in crc32_little()
144 Z_INTERNAL uint32_t crc32_big(uint32_t crc, const unsigned char *buf, uint64_t len) { in crc32_big()
210 Z_INTERNAL void crc_finalize(deflate_state *const s) { in crc_finalize()
216 Z_INTERNAL void crc_reset(deflate_state *const s) { in crc_reset()
227 Z_INTERNAL void copy_with_crc(PREFIX3(stream) *strm, unsigned char *dst, unsigned long size) { in copy_with_crc()
Dcompare258.c56 Z_INTERNAL uint32_t compare258_c(const unsigned char *src0, const unsigned char *src1) { in compare258_c()
96 Z_INTERNAL uint32_t compare258_unaligned_16(const unsigned char *src0, const unsigned char *src1) { in compare258_unaligned_16()
134 Z_INTERNAL uint32_t compare258_unaligned_32(const unsigned char *src0, const unsigned char *src1) { in compare258_unaligned_32()
174 Z_INTERNAL uint32_t compare258_unaligned_64(const unsigned char *src0, const unsigned char *src1) { in compare258_unaligned_64()
Dinflate.h132 int Z_INTERNAL inflate_ensure_window(struct inflate_state *state);
133 void Z_INTERNAL fixedtables(struct inflate_state *state);
Dinsert_string_tpl.h30 Z_INTERNAL Pos QUICK_INSERT_STRING(deflate_state *const s, const uint32_t str) { in QUICK_INSERT_STRING()
63 Z_INTERNAL void INSERT_STRING(deflate_state *const s, const uint32_t str, uint32_t count) { in INSERT_STRING()
Ddeflate_p.h26 extern const unsigned char Z_INTERNAL zng_length_code[];
27 extern const unsigned char Z_INTERNAL zng_dist_code[];
Dtrees.c83 void Z_INTERNAL zng_tr_init(deflate_state *s) { in zng_tr_init()
281 Z_INTERNAL void gen_codes(ct_data *tree, int max_code, uint16_t *bl_count) { in gen_codes()
593 void Z_INTERNAL zng_tr_stored_block(deflate_state *s, char *buf, uint32_t stored_len, int last) { in zng_tr_stored_block()
615 void Z_INTERNAL zng_tr_flush_bits(deflate_state *s) { in zng_tr_flush_bits()
623 void Z_INTERNAL zng_tr_align(deflate_state *s) { in zng_tr_align()
633 void Z_INTERNAL zng_tr_flush_block(deflate_state *s, char *buf, uint32_t stored_len, int last) {
817 Z_INTERNAL unsigned bi_reverse(unsigned code, int len) {
/external/rust/crates/libz-sys/src/zlib-ng/arch/x86/
Dx86.c20 Z_INTERNAL int x86_cpu_has_avx2;
21 Z_INTERNAL int x86_cpu_has_sse2;
22 Z_INTERNAL int x86_cpu_has_ssse3;
23 Z_INTERNAL int x86_cpu_has_sse42;
24 Z_INTERNAL int x86_cpu_has_pclmulqdq;
25 Z_INTERNAL int x86_cpu_has_tzcnt;
55 void Z_INTERNAL x86_check_features(void) { in x86_check_features()
Dcrc_folding.h15 Z_INTERNAL void crc_fold_init(deflate_state *const);
16 Z_INTERNAL uint32_t crc_fold_512to32(deflate_state *const);
17 Z_INTERNAL void crc_fold_copy(deflate_state *const, unsigned char *, const unsigned char *, long);
/external/rust/crates/libz-sys/src/zlib-ng/arch/s390/
Ddfltcc_deflate.h6 int Z_INTERNAL dfltcc_can_deflate(PREFIX3(streamp) strm);
7 int Z_INTERNAL dfltcc_deflate(PREFIX3(streamp) strm, int flush, block_state *result);
8 int Z_INTERNAL dfltcc_deflate_params(PREFIX3(streamp) strm, int level, int strategy, int *flush);
9 int Z_INTERNAL dfltcc_deflate_done(PREFIX3(streamp) strm, int flush);
10 int Z_INTERNAL dfltcc_can_set_reproducible(PREFIX3(streamp) strm, int reproducible);
11 int Z_INTERNAL dfltcc_deflate_set_dictionary(PREFIX3(streamp) strm,
13 int Z_INTERNAL dfltcc_deflate_get_dictionary(PREFIX3(streamp) strm, unsigned char *dictionary, uInt…
Ddfltcc_common.h11 void Z_INTERNAL *dfltcc_alloc_state(PREFIX3(streamp) strm, uInt items, uInt size);
12 void Z_INTERNAL dfltcc_copy_state(void *dst, const void *src, uInt size);
13 void Z_INTERNAL dfltcc_reset(PREFIX3(streamp) strm, uInt size);
14 void Z_INTERNAL *dfltcc_alloc_window(PREFIX3(streamp) strm, uInt items, uInt size);
15 void Z_INTERNAL dfltcc_free_window(PREFIX3(streamp) strm, void *w);
Ddfltcc_inflate.h6 int Z_INTERNAL dfltcc_can_inflate(PREFIX3(streamp) strm);
12 dfltcc_inflate_action Z_INTERNAL dfltcc_inflate(PREFIX3(streamp) strm, int flush, int *ret);
13 int Z_INTERNAL dfltcc_was_inflate_used(PREFIX3(streamp) strm);
14 int Z_INTERNAL dfltcc_inflate_disable(PREFIX3(streamp) strm);
Ddfltcc_common.c38 void Z_INTERNAL dfltcc_reset(PREFIX3(streamp) strm, uInt size) { in dfltcc_reset()
61 void Z_INTERNAL *dfltcc_alloc_state(PREFIX3(streamp) strm, uInt items, uInt size) { in dfltcc_alloc_state()
65 void Z_INTERNAL dfltcc_copy_state(void *dst, const void *src, uInt size) { in dfltcc_copy_state()
71 void Z_INTERNAL *dfltcc_alloc_window(PREFIX3(streamp) strm, uInt items, uInt size) { in dfltcc_alloc_window()
86 void Z_INTERNAL dfltcc_free_window(PREFIX3(streamp) strm, void *w) { in dfltcc_free_window()
Ddfltcc_inflate.c23 int Z_INTERNAL dfltcc_can_inflate(PREFIX3(streamp) strm) { in dfltcc_can_inflate()
50 dfltcc_inflate_action Z_INTERNAL dfltcc_inflate(PREFIX3(streamp) strm, int flush, int *ret) { in dfltcc_inflate()
115 int Z_INTERNAL dfltcc_was_inflate_used(PREFIX3(streamp) strm) { in dfltcc_was_inflate_used()
122 int Z_INTERNAL dfltcc_inflate_disable(PREFIX3(streamp) strm) { in dfltcc_inflate_disable()
Ddfltcc_deflate.c47 int Z_INTERNAL dfltcc_can_deflate(PREFIX3(streamp) strm) { in dfltcc_can_deflate()
98 int Z_INTERNAL dfltcc_deflate(PREFIX3(streamp) strm, int flush, block_state *result) { in dfltcc_deflate()
300 int Z_INTERNAL dfltcc_deflate_params(PREFIX3(streamp) strm, int level, int strategy, int *flush) { in dfltcc_deflate_params()
318 int Z_INTERNAL dfltcc_deflate_done(PREFIX3(streamp) strm, int flush) { in dfltcc_deflate_done()
337 int Z_INTERNAL dfltcc_can_set_reproducible(PREFIX3(streamp) strm, int reproducible) { in dfltcc_can_set_reproducible()
376 int Z_INTERNAL dfltcc_deflate_set_dictionary(PREFIX3(streamp) strm, in dfltcc_deflate_set_dictionary()
388 int Z_INTERNAL dfltcc_deflate_get_dictionary(PREFIX3(streamp) strm, unsigned char *dictionary, uInt… in dfltcc_deflate_get_dictionary()
/external/rust/crates/libz-sys/src/zlib-ng/arch/arm/
Darmfeature.c39 Z_INTERNAL int arm_cpu_has_neon;
40 Z_INTERNAL int arm_cpu_has_crc32;
42 void Z_INTERNAL arm_check_features(void) { in arm_check_features()
/external/rust/crates/libz-sys/src/zlib-ng/arch/power/
Dpower.c9 Z_INTERNAL int power_cpu_has_arch_2_07;
11 void Z_INTERNAL power_check_features(void) { in power_check_features()
Dpower.h11 void Z_INTERNAL power_check_features(void);

123