/freebsd/sys/contrib/zlib/ |
H A D | crc32.h | 5 local const z_crc_t FAR crc_table[] = { 63 local const z_word_t FAR crc_big_table[] = { 153 local const z_word_t FAR crc_big_table[] = { 213 local const z_crc_t FAR crc_braid_table[][256] = { 631 local const z_word_t FAR crc_braid_big_table[][256] = { 1323 local const z_crc_t FAR crc_braid_table[][256] = { 1533 local const z_word_t FAR crc_braid_big_table[][256] = { 1751 local const z_crc_t FAR crc_braid_table[][256] = { 2169 local const z_word_t FAR crc_braid_big_table[][256] = { 2861 local const z_crc_t FAR crc_braid_table[][256] = { [all …]
|
H A D | zconf.h | 325 # define FAR _far macro 327 # define FAR far macro 334 # define FAR _far macro 336 # define FAR far macro 359 # ifdef FAR 360 # undef FAR 372 # define ZEXPORTVA FAR CDECL 399 #ifndef FAR 400 # define FAR macro 411 # define Bytef Byte FAR [all …]
|
H A D | inflate.c | 95 struct inflate_state FAR *state; in inflateStateCheck() 99 state = (struct inflate_state FAR *)strm->state; in inflateStateCheck() 107 struct inflate_state FAR *state; in inflateResetKeep() 110 state = (struct inflate_state FAR *)strm->state; in inflateResetKeep() 131 struct inflate_state FAR *state; in inflateReset() 134 state = (struct inflate_state FAR *)strm->state; in inflateReset() 143 struct inflate_state FAR *state; in inflateReset2() 147 state = (struct inflate_state FAR *)strm->state; in inflateReset2() 181 struct inflate_state FAR *state; in inflateInit2_() 202 state = (struct inflate_state FAR *) in inflateInit2_() [all …]
|
H A D | 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);
|
H A D | inffast.c | 51 struct inflate_state FAR *state; in inflate_fast() 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() 54 unsigned char FAR *out; /* local strm->next_out */ in inflate_fast() 55 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ in inflate_fast() 56 unsigned char FAR *end; /* while out < end, enough space available */ in inflate_fast() 63 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ in inflate_fast() 66 code const FAR *lcode; /* local strm->lencode */ in inflate_fast() 67 code const FAR *dcode; /* local strm->distcode */ in inflate_fast() 75 unsigned char FAR *from; /* where to copy match from */ in inflate_fast() [all …]
|
H A D | inftrees.c | 32 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens, in inflate_table() 33 unsigned codes, code FAR * FAR *table, in inflate_table() 34 unsigned FAR *bits, unsigned short FAR *work) { in inflate_table() 49 code FAR *next; /* next available space in table */ in inflate_table() 50 const unsigned short FAR *base; /* base value table to use */ in inflate_table() 51 const unsigned short FAR *extra; /* extra bits table to use */ in inflate_table()
|
H A D | infback.c | 26 unsigned char FAR *window, const char *version, in inflateBackInit_() 28 struct inflate_state FAR *state; in inflateBackInit_() 51 state = (struct inflate_state FAR *)ZALLOC(strm, 1, in inflateBackInit_() 55 strm->state = (struct internal_state FAR *)state; in inflateBackInit_() 76 local void fixedtables(struct inflate_state FAR *state) { in fixedtables() 242 int ZEXPORT inflateBack(z_streamp strm, in_func in, void FAR *in_desc, in inflateBack() 243 out_func out, void FAR *out_desc) { in inflateBack() 244 struct inflate_state FAR *state; in inflateBack() 245 z_const unsigned char FAR *next; /* next input */ in inflateBack() 246 unsigned char FAR *put; /* next output */ in inflateBack() [all …]
|
H A D | 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[] */
|
H A D | crc32.c | 139 local z_crc_t FAR x2n_table[32]; 194 local z_crc_t FAR crc_table[256]; 196 local z_word_t FAR crc_big_table[256]; 197 local z_crc_t FAR crc_braid_table[W][256]; 198 local z_word_t FAR crc_braid_big_table[W][256]; 202 local void write_table(FILE *, const z_crc_t FAR *, int); 203 local void write_table32hi(FILE *, const z_word_t FAR *, int); 204 local void write_table64(FILE *, const z_word_t FAR *, int); 477 local void write_table(FILE *out, const z_crc_t FAR *table, int k) { in write_table() 490 local void write_table32hi(FILE *out, const z_word_t FAR *table, int k) { in write_table32hi() [all …]
|
H A D | zconf.h.in | 303 /* The following definitions for FAR are needed only for MSDOS mixed 307 * just define FAR to be empty. 314 # define FAR _far macro 316 # define FAR far macro 323 # define FAR _far macro 325 # define FAR far macro 348 # ifdef FAR 349 # undef FAR 361 # define ZEXPORTVA FAR CDECL 388 #ifndef FAR [all …]
|
H A D | zlib.h | 96 struct internal_state FAR *state; /* not visible by applications */ 108 typedef z_stream FAR *z_streamp; 131 typedef gz_header FAR *gz_headerp; 1097 typedef unsigned (*in_func)(void FAR *, 1098 z_const unsigned char FAR * FAR *); 1099 typedef int (*out_func)(void FAR *, unsigned char FAR *, unsigned); 1102 in_func in, void FAR *in_desc, 1103 out_func out, void FAR *out_desc); 1800 unsigned char FAR *window, 1921 ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table(void);
|
H A D | deflate.h | 81 } FAR ct_data; 94 } FAR tree_desc; 97 typedef Pos FAR Posf; 282 } FAR deflate_state;
|
H A D | zutil.h | 40 typedef uch FAR uchf; 42 typedef ush FAR ushf;
|
H A D | gzguts.h | 202 typedef gz_state FAR *gz_statep;
|
/freebsd/contrib/ntp/libntp/lib/isc/win32/include/isc/ |
H A D | net.h | 159 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \ 160 if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET) fd) { \ 161 while (__i < ((fd_set FAR *)(set))->fd_count-1) { \ 162 ((fd_set FAR *)(set))->fd_array[__i] = \ 163 ((fd_set FAR *)(set))->fd_array[__i+1]; \ 166 ((fd_set FAR *)(set))->fd_count--; \ 175 for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \ 176 if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET)(fd)) { \ 180 if (__i == ((fd_set FAR *)(set))->fd_count) { \ 181 if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) { \ [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | openfst | 13 0 long 0x56515c OpenFst binary FAR data, far type: stlist 16 0 long 0x7eb2f35c OpenFst binary FAR data, far type: sttable
|
/freebsd/sys/dev/hptmv/ |
H A D | mvOs.h | 41 #define FAR macro
|
H A D | mvStorageDev.h | 184 MV_U16 FAR *bufPtr, MV_U32 count,
|
H A D | global.h | 107 } SCAT_GATH, FAR *FPSCAT_GATH;
|
/freebsd/sys/contrib/zstd/zlibWrapper/ |
H A D | gzguts.h | 211 gz_state FAR *state;
|
H A D | zstd_zlibwrapper.c | 1064 unsigned char FAR *window, in z_inflateBackInit_() 1075 in_func in, void FAR *in_desc, in z_inflateBack() 1076 out_func out, void FAR *out_desc)) in z_inflateBack() 1187 ZEXTERN const z_crc_t FAR * ZEXPORT z_get_crc_table OF((void)) in z_get_crc_table()
|
/freebsd/sys/dev/hptrr/ |
H A D | osm.h | 63 #define FAR macro
|
/freebsd/sys/arm64/vmm/ |
H A D | vmm_hyp.c | 247 hypctx->far_el1 = READ_SPECIALREG(EL1_REG(FAR)); in vmm_hyp_reg_store() 293 WRITE_SPECIALREG(EL1_REG(FAR), hypctx->far_el1); in vmm_hyp_reg_restore()
|
/freebsd/sys/dev/hpt27xx/ |
H A D | osm.h | 95 #define FAR macro
|
/freebsd/sys/dev/hptnr/ |
H A D | osm.h | 93 #define FAR macro
|