/src/common/dist/zlib/contrib/infback9/ |
inftree9.h | 59 extern int inflate_table9(codetype type, unsigned short FAR *lens, 60 unsigned codes, code FAR * FAR *table, 61 unsigned FAR *bits, unsigned short FAR *work);
|
infback9.h | 23 ZEXTERN int ZEXPORT inflateBack9(z_stream FAR *strm, 24 in_func in, void FAR *in_desc, 25 out_func out, void FAR *out_desc); 26 ZEXTERN int ZEXPORT inflateBack9End(z_stream FAR *strm); 27 ZEXTERN int ZEXPORT inflateBack9Init_(z_stream FAR *strm, 28 unsigned char FAR *window,
|
inflate9.h | 37 unsigned char FAR *window; /* allocated sliding window, if needed */ 43 code FAR *next; /* next available space in codes[] */
|
inftree9.c | 32 int inflate_table9(codetype type, unsigned short FAR *lens, unsigned codes, 33 code FAR * FAR *table, unsigned FAR *bits, 34 unsigned short FAR *work) { 49 code FAR *next; /* next available space in table */ 50 const unsigned short FAR *base; /* base value table to use */ 51 const unsigned short FAR *extra; /* extra bits table to use */
|
infback9.c | 19 int ZEXPORT inflateBack9Init_(z_stream FAR *strm, unsigned char FAR *window, 21 struct inflate_state FAR *state; 34 state = (struct inflate_state FAR *)ZALLOC(strm, 1, 212 int ZEXPORT inflateBack9(z_stream FAR *strm, in_func in, void FAR *in_desc, 213 out_func out, void FAR *out_desc) { 214 struct inflate_state FAR *state; 215 z_const unsigned char FAR *next; /* next input */ 216 unsigned char FAR *put; /* next output * [all...] |
/src/common/dist/zlib/ |
inftrees.h | 60 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens, 61 unsigned codes, code FAR * FAR *table, 62 unsigned FAR *bits, unsigned short FAR *work);
|
inflate.h | 100 unsigned char FAR *window; /* allocated sliding window, if needed */ 110 code const FAR *lencode; /* starting table for length/literal codes */ 111 code const FAR *distcode; /* starting table for distance codes */ 119 code FAR *next; /* next available space in codes[] */ 123 int sane; /* if false, allow invalid distance too far */
|
zconf.h | 311 /* The following definitions for FAR are needed only for MSDOS mixed 312 * model programming (small or medium model with some far allocations). 315 * just define FAR to be empty. 322 # define FAR _far 324 # define FAR far 331 # define FAR _far 333 # define FAR far 356 # ifdef FAR [all...] |
inftrees.c | 34 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens, 35 unsigned codes, code FAR * FAR *table, 36 unsigned FAR *bits, unsigned short FAR *work) { 51 code FAR *next; /* next available space in table */ 52 const unsigned short FAR *base; /* base value table to use */ 53 const unsigned short FAR *extra; /* extra bits table to use */ 289 maximum code length that was allowed to get this far is one bit) */
|
inffast.c | 53 struct inflate_state FAR *state; 54 z_const unsigned char FAR *in; /* local strm->next_in */ 55 z_const unsigned char FAR *last; /* have enough input while in < last */ 56 unsigned char FAR *out; /* local strm->next_out */ 57 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ 58 unsigned char FAR *end; /* while out < end, enough space available */ 65 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ 68 code const FAR *lcode; /* local strm->lencode */ 69 code const FAR *dcode; /* local strm->distcode */ 77 unsigned char FAR *from; /* where to copy match from * [all...] |
inflate.c | 52 * - Add FAR to lcode and dcode declarations in inflate_fast() 97 struct inflate_state FAR *state; 101 state = (struct inflate_state FAR *)strm->state; 109 struct inflate_state FAR *state; 112 state = (struct inflate_state FAR *)strm->state; 133 struct inflate_state FAR *state; 136 state = (struct inflate_state FAR *)strm->state; 145 struct inflate_state FAR *state; 149 state = (struct inflate_state FAR *)strm->state; 183 struct inflate_state FAR *state [all...] |
crc32.c | 32 #include "zutil.h" /* for Z_U4, Z_U8, z_crc_t, and FAR definitions */ 141 local z_crc_t FAR x2n_table[32]; 196 local z_crc_t FAR crc_table[256]; 198 local z_word_t FAR crc_big_table[256]; 199 local z_crc_t FAR crc_braid_table[W][256]; 200 local z_word_t FAR crc_braid_big_table[W][256]; 204 local void write_table(FILE *, const z_crc_t FAR *, int); 205 local void write_table32hi(FILE *, const z_word_t FAR *, int); 206 local void write_table64(FILE *, const z_word_t FAR *, int); 362 "local const z_crc_t FAR crc_table[] = {\n [all...] |
zconf.h.in | 303 /* The following definitions for FAR are needed only for MSDOS mixed 304 * model programming (small or medium model with some far allocations). 307 * just define FAR to be empty. 314 # define FAR _far 316 # define FAR far 323 # define FAR _far 325 # define FAR far 348 # ifdef FAR [all...] |
zconf.h.cmakein | 305 /* The following definitions for FAR are needed only for MSDOS mixed 306 * model programming (small or medium model with some far allocations). 309 * just define FAR to be empty. 316 # define FAR _far 318 # define FAR far 325 # define FAR _far 327 # define FAR far 350 # ifdef FAR [all...] |
infback.c | 28 unsigned char FAR *window, const char *version, 30 struct inflate_state FAR *state; 53 state = (struct inflate_state FAR *)ZALLOC(strm, 1, 57 strm->state = (struct internal_state FAR *)state; 78 local void fixedtables(struct inflate_state FAR *state) { 244 int ZEXPORT inflateBack(z_streamp strm, in_func in, void FAR *in_desc, 245 out_func out, void FAR *out_desc) { 246 struct inflate_state FAR *state; 247 z_const unsigned char FAR *next; /* next input */ 248 unsigned char FAR *put; /* next output * [all...] |
zlib.h | 91 uLong total_in; /* total number of input bytes read so far */ 95 uLong total_out; /* total number of bytes output so far */ 98 struct internal_state FAR *state; /* not visible by applications */ 110 typedef z_stream FAR *z_streamp; 133 typedef gz_header FAR *gz_headerp; 290 that the decompressor can get all input data available so far. (In 300 input data so far will be available to the decompressor, as for Z_SYNC_FLUSH. 311 the data provided so far to the compressor. It may need to wait for the next 344 so far (that is, total_in bytes). If a gzip stream is being generated, then 345 strm->adler will be the CRC-32 checksum of the input read so far. (Se [all...] |
deflate.h | 83 } FAR ct_data; 96 } FAR tree_desc; 99 typedef Pos FAR Posf; 284 } FAR deflate_state;
|
gzguts.h | 203 typedef gz_state FAR *gz_statep;
|
zutil.h | 46 typedef uch FAR uchf; 48 typedef ush FAR ushf;
|
/src/sys/net/ |
zlib.h | 53 * Byte Bytef EXPORT FAR OF STDC 187 /* The following definitions for FAR are needed only for MSDOS mixed 188 * model programming (small or medium model with some far allocations). 191 * just define FAR to be empty. 197 # define FAR _far 199 # define FAR far 205 # define FAR _far 212 # ifdef FAR 213 # undef FAR [all...] |
zlib.c | 97 typedef uch FAR uchf; 99 typedef ush FAR ushf; 345 } FAR ct_data; 358 } FAR tree_desc; 361 typedef Pos FAR Posf; 536 } FAR deflate_state; 856 strm->state = (struct internal_state FAR *)s; 1357 int best_len = s->prev_length; /* best match length so far */ 3329 typedef struct inflate_blocks_state FAR inflate_blocks_statef; 3456 if ((z->state = (struct internal_state FAR *) [all...] |
/src/games/hack/ |
hack.h | 184 #define FAR (COLNO+2) /* position outside screen */
|
hack.dog.c | 309 gx = gy = FAR; /* random, far away */ 318 /* here gx == FAR e.g. when dog is in a vault */ 319 if (gx == FAR || (gx == omx && gy == omy)) {
|
hack.main.c | 186 u.ux = FAR; /* prevent nscr() */
|
hack.do.c | 227 u.ux = FAR; /* hack */
|