/external/rust/crates/libz-sys/src/zlib-ng/ |
D | zutil.c | 10 z_const char * const PREFIX(z_errmsg)[10] = { 11 (z_const char *)"need dictionary", /* Z_NEED_DICT 2 */ 12 (z_const char *)"stream end", /* Z_STREAM_END 1 */ 13 (z_const char *)"", /* Z_OK 0 */ 14 (z_const char *)"file error", /* Z_ERRNO (-1) */ 15 (z_const char *)"stream error", /* Z_STREAM_ERROR (-2) */ 16 (z_const char *)"data error", /* Z_DATA_ERROR (-3) */ 17 (z_const char *)"insufficient memory", /* Z_MEM_ERROR (-4) */ 18 (z_const char *)"buffer error", /* Z_BUF_ERROR (-5) */ 19 (z_const char *)"incompatible version",/* Z_VERSION_ERROR (-6) */ [all …]
|
D | zconf.h.in | 28 #if defined(ZLIB_CONST) && !defined(z_const) 29 # define z_const const macro 31 # define z_const macro
|
/external/zlib/ |
D | zutil.c | 13 z_const char * const z_errmsg[10] = { 14 (z_const char *)"need dictionary", /* Z_NEED_DICT 2 */ 15 (z_const char *)"stream end", /* Z_STREAM_END 1 */ 16 (z_const char *)"", /* Z_OK 0 */ 17 (z_const char *)"file error", /* Z_ERRNO (-1) */ 18 (z_const char *)"stream error", /* Z_STREAM_ERROR (-2) */ 19 (z_const char *)"data error", /* Z_DATA_ERROR (-3) */ 20 (z_const char *)"insufficient memory", /* Z_MEM_ERROR (-4) */ 21 (z_const char *)"buffer error", /* Z_BUF_ERROR (-5) */ 22 (z_const char *)"incompatible version",/* Z_VERSION_ERROR (-6) */ [all …]
|
D | zconf.h | 250 #if defined(ZLIB_CONST) && !defined(z_const) 251 # define z_const const macro 253 # define z_const macro
|
D | inffast.c | 59 z_const unsigned char FAR *in; /* local strm->next_in */ 60 z_const unsigned char FAR *last; /* have enough input while in < last */
|
/external/python/cpython2/Modules/zlib/ |
D | zutil.c | 13 z_const char * const z_errmsg[10] = { 14 (z_const char *)"need dictionary", /* Z_NEED_DICT 2 */ 15 (z_const char *)"stream end", /* Z_STREAM_END 1 */ 16 (z_const char *)"", /* Z_OK 0 */ 17 (z_const char *)"file error", /* Z_ERRNO (-1) */ 18 (z_const char *)"stream error", /* Z_STREAM_ERROR (-2) */ 19 (z_const char *)"data error", /* Z_DATA_ERROR (-3) */ 20 (z_const char *)"insufficient memory", /* Z_MEM_ERROR (-4) */ 21 (z_const char *)"buffer error", /* Z_BUF_ERROR (-5) */ 22 (z_const char *)"incompatible version",/* Z_VERSION_ERROR (-6) */ [all …]
|
D | zconf.h | 234 #if defined(ZLIB_CONST) && !defined(z_const) 235 # define z_const const macro 237 # define z_const macro
|
D | example.c | 29 z_const char hello[] = "hello, hello!"; 215 c_stream.next_in = (z_const unsigned char *)hello; 390 c_stream.next_in = (z_const unsigned char *)hello; 479 c_stream.next_in = (z_const unsigned char *)hello;
|
D | inffast.c | 55 z_const unsigned char FAR *in; /* local strm->next_in */ 56 z_const unsigned char FAR *last; /* have enough input while in < last */
|
/external/rust/crates/libz-sys/src/zlib/ |
D | zutil.c | 13 z_const char * const z_errmsg[10] = { 14 (z_const char *)"need dictionary", /* Z_NEED_DICT 2 */ 15 (z_const char *)"stream end", /* Z_STREAM_END 1 */ 16 (z_const char *)"", /* Z_OK 0 */ 17 (z_const char *)"file error", /* Z_ERRNO (-1) */ 18 (z_const char *)"stream error", /* Z_STREAM_ERROR (-2) */ 19 (z_const char *)"data error", /* Z_DATA_ERROR (-3) */ 20 (z_const char *)"insufficient memory", /* Z_MEM_ERROR (-4) */ 21 (z_const char *)"buffer error", /* Z_BUF_ERROR (-5) */ 22 (z_const char *)"incompatible version",/* Z_VERSION_ERROR (-6) */ [all …]
|
D | zconf.h | 234 #if defined(ZLIB_CONST) && !defined(z_const) 235 # define z_const const macro 237 # define z_const macro
|
/external/angle/third_party/zlib/ |
D | zutil.c | 13 z_const char * const z_errmsg[10] = { 14 (z_const char *)"need dictionary", /* Z_NEED_DICT 2 */ 15 (z_const char *)"stream end", /* Z_STREAM_END 1 */ 16 (z_const char *)"", /* Z_OK 0 */ 17 (z_const char *)"file error", /* Z_ERRNO (-1) */ 18 (z_const char *)"stream error", /* Z_STREAM_ERROR (-2) */ 19 (z_const char *)"data error", /* Z_DATA_ERROR (-3) */ 20 (z_const char *)"insufficient memory", /* Z_MEM_ERROR (-4) */ 21 (z_const char *)"buffer error", /* Z_BUF_ERROR (-5) */ 22 (z_const char *)"incompatible version",/* Z_VERSION_ERROR (-6) */ [all …]
|
D | zconf.h | 246 #if defined(ZLIB_CONST) && !defined(z_const) 247 # define z_const const macro 249 # define z_const macro
|
/external/rust/crates/libz-sys/src/zlib-ng/arch/s390/ |
D | dfltcc_detail.h | 49 … unsigned char **op1, size_t *len1, z_const unsigned char **op2, size_t *len2, void *hist) { in dfltcc() 52 z_const unsigned char *t4 = op2 ? *op2 : NULL; in dfltcc() 58 Z_REGISTER z_const unsigned char *r4 __asm__("r4") = t4; in dfltcc() 175 static inline z_const char *oesc_msg(char *buf, int oesc) { in oesc_msg()
|
/external/zstd/zlibWrapper/ |
D | zstd_zlibwrapper.h | 24 #if !defined(z_const) 25 #define z_const macro
|
/external/rust/crates/libz-sys/src/zlib-ng/test/ |
D | example.c | 253 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate() 478 c_stream.next_in = (z_const unsigned char *)hello; in test_flush() 561 c_stream.next_in = (z_const unsigned char *)hello; in test_dict_deflate() 634 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate_bound() 682 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate_copy() 732 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate_get_dict() 776 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate_pending() 849 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate_prime() 981 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate_tune()
|
D | deflate_quick_bi_valid.c | 24 z_const unsigned char next_in[554] = in main()
|
/external/libtextclassifier/native/utils/zlib/ |
D | zlib.cc | 58 const_cast<z_const Bytef*>(reinterpret_cast<const Bytef*>(buffer)); in Decompress() 135 stream_.next_in = const_cast<z_const Bytef*>( in Compress()
|
/external/angle/third_party/zlib/google/ |
D | compression_utils_portable.cc | 94 stream.next_in = static_cast<z_const Bytef*>(const_cast<Bytef*>(source)); in CompressHelper() 175 stream.next_in = static_cast<z_const Bytef*>(const_cast<Bytef*>(source)); in UncompressHelper()
|
/external/zlib/google/ |
D | compression_utils_portable.cc | 94 stream.next_in = static_cast<z_const Bytef*>(const_cast<Bytef*>(source)); in CompressHelper() 175 stream.next_in = static_cast<z_const Bytef*>(const_cast<Bytef*>(source)); in UncompressHelper()
|
/external/zstd/zlibWrapper/examples/ |
D | zwrapbench.c | 139 z_const char* srcPtr; 151 static int BMK_benchMem(z_const void* srcBuffer, size_t srcSize, in BMK_benchMem() 175 { z_const char* srcPtr = (z_const char*)srcBuffer; in BMK_benchMem() 333 def.next_in = (z_const z_Bytef*) blockTable[blockNb].srcPtr; in BMK_benchMem() 364 def.next_in = (z_const z_Bytef*) blockTable[blockNb].srcPtr; in BMK_benchMem() 469 inf.next_in = (z_const z_Bytef*) blockTable[blockNb].cPtr; in BMK_benchMem() 501 inf.next_in = (z_const z_Bytef*) blockTable[blockNb].cPtr; in BMK_benchMem()
|
D | example_original.c | 46 z_const char hello[] = "hello, hello!"; 232 c_stream.next_in = (z_const unsigned char *)hello; 407 c_stream.next_in = (z_const unsigned char *)hello; 496 c_stream.next_in = (z_const unsigned char *)hello;
|
D | example.c | 51 z_const char hello[] = "hello, hello! I said hello, hello!"; 240 c_stream.next_in = (z_const unsigned char *)hello; 415 c_stream.next_in = (z_const unsigned char *)hello; 504 c_stream.next_in = (z_const unsigned char *)hello;
|
/external/rust/crates/libz-sys/src/zlib/test/ |
D | example.c | 29 static z_const char hello[] = "hello, hello!"; 215 c_stream.next_in = (z_const unsigned char *)hello; 390 c_stream.next_in = (z_const unsigned char *)hello; 479 c_stream.next_in = (z_const unsigned char *)hello;
|
/external/rust/crates/libz-sys/src/zlib/examples/ |
D | gun.c | 89 local unsigned in(void *in_desc, z_const unsigned char **buf) in in() 200 local int lunpipe(unsigned have, z_const unsigned char *next, struct ind *indp, in lunpipe() 387 z_const unsigned char *next = NULL; in gunpipe()
|