/freebsd/sys/contrib/zlib/ |
H A 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 …]
|
H A D | zconf.h | 248 #if defined(ZLIB_CONST) && !defined(z_const) 249 # define z_const const macro 251 # define z_const macro
|
H A D | inffast.c | 52 z_const unsigned char FAR *in; /* local strm->next_in */ in inflate_fast() 53 z_const unsigned char FAR *last; /* have enough input while in < last */ in inflate_fast()
|
H A D | compress.c | 41 stream.next_in = (z_const Bytef *)source; in compress2()
|
H A D | uncompr.c | 45 stream.next_in = (z_const Bytef *)source; in uncompress2()
|
H A D | zlib.h | 87 z_const Bytef *next_in; /* next input byte */ 95 z_const char *msg; /* last error message, NULL if no error */ 1098 z_const unsigned char FAR * FAR *);
|
H A D | zutil.h | 56 extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
|
H A D | zconf.h.in | 237 #if defined(ZLIB_CONST) && !defined(z_const) 238 # define z_const const macro 240 # define z_const macro
|
H A D | infback.c | 245 z_const unsigned char FAR *next; /* next input */ in inflateBack()
|
H A D | gzwrite.c | 220 state->strm.next_in = (z_const Bytef *)buf; in gz_write()
|
H A D | deflate.c | 556 z_const unsigned char *next; in deflateSetDictionary() 586 strm->next_in = (z_const Bytef *)dictionary; in deflateSetDictionary()
|
H A D | inflate.c | 592 z_const unsigned char FAR *next; /* next input */ in inflate()
|
H A D | ChangeLog | 180 - Clean up the usage of z_const and respect const usage within zlib
|
/freebsd/sys/contrib/zstd/zlibWrapper/ |
H A D | zstd_zlibwrapper.h | 24 #if !defined(z_const) 25 #define z_const macro
|
H A D | gzwrite.c | 233 state.state->strm.next_in = (z_const Bytef *)buf;
|
/freebsd/sys/contrib/zstd/zlibWrapper/examples/ |
H A 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()
|
H A 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;
|
H A 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;
|
/freebsd/sys/contrib/zlib/test/ |
H A D | example.c | 29 static z_const char hello[] = "hello, hello!"; 178 c_stream.next_in = (z_const unsigned char *)hello; in test_deflate() 344 c_stream.next_in = (z_const unsigned char *)hello; in test_flush() 427 c_stream.next_in = (z_const unsigned char *)hello; in test_dict_deflate()
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | fileio.c | 52 # if !defined(z_const) 53 # define z_const macro 1110 strm.next_in = (z_const unsigned char*)ress->srcBuffer; in FIO_compressGzFrame() 2327 strm.next_in = (z_const unsigned char*)ress->srcBuffer; in FIO_decompressGzFrame() 2334 strm.next_in = (z_const unsigned char*)ress->srcBuffer; in FIO_decompressGzFrame()
|