Home
last modified time | relevance | path

Searched refs:FAR (Results 1 – 25 of 46) sorted by relevance

12

/freebsd/sys/contrib/zlib/
H A Dcrc32.h5 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 Dinftrees.h60 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);
64 void ZLIB_INTERNAL inflate_fixed(struct inflate_state FAR *state);
H A Dinflate.c89 struct inflate_state FAR *state; in inflateStateCheck()
93 state = (struct inflate_state FAR *)strm->state; in inflateStateCheck()
101 struct inflate_state FAR *state; in inflateResetKeep()
104 state = (struct inflate_state FAR *)strm->state; in inflateResetKeep()
126 struct inflate_state FAR *state; in inflateReset()
129 state = (struct inflate_state FAR *)strm->state; in inflateReset()
138 struct inflate_state FAR *state; in inflateReset2()
142 state = (struct inflate_state FAR *)strm->state; in inflateReset2()
176 struct inflate_state FAR *state; in inflateInit2_()
197 state = (struct inflate_state FAR *) in inflateInit2_()
[all …]
H A Dzconf.h343 # define FAR _far macro
345 # define FAR far macro
352 # define FAR _far macro
354 # define FAR far macro
377 # ifdef FAR
378 # undef FAR
390 # define ZEXPORTVA FAR CDECL
417 #ifndef FAR
418 # define FAR macro
429 # define Bytef Byte FAR
[all …]
H A Dinffast.c51 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 Dinftrees.c46 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens, in inflate_table()
47 unsigned codes, code FAR * FAR *table, in inflate_table()
48 unsigned FAR *bits, unsigned short FAR *work) { in inflate_table()
63 code FAR *next; /* next available space in table */ in inflate_table()
64 const unsigned short FAR *base = NULL; /* base value table to use */ in inflate_table()
65 const unsigned short FAR *extra = NULL; /* extra bits table to use */ in inflate_table()
364 void inflate_fixed(struct inflate_state FAR *state) { in inflate_fixed()
H A Dinfback.c26 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_()
191 int ZEXPORT inflateBack(z_streamp strm, in_func in, void FAR *in_desc, in inflateBack()
192 out_func out, void FAR *out_desc) { in inflateBack()
193 struct inflate_state FAR *state; in inflateBack()
194 z_const unsigned char FAR *next; /* next input */ in inflateBack()
195 unsigned char FAR *put; /* next output */ in inflateBack()
200 unsigned char FAR *from; /* where to copy match bytes from */ in inflateBack()
[all …]
H A Dinflate.h100 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 Dcrc32.c147 local z_crc_t FAR x2n_table[32];
202 local z_crc_t FAR crc_table[256];
204 local z_word_t FAR crc_big_table[256];
205 local z_crc_t FAR crc_braid_table[W][256];
206 local z_word_t FAR crc_braid_big_table[W][256];
210 local void write_table(FILE *, const z_crc_t FAR *, int);
211 local void write_table32hi(FILE *, const z_word_t FAR *, int);
212 local void write_table64(FILE *, const z_word_t FAR *, int);
410 local void write_table(FILE *out, const z_crc_t FAR *table, int k) { in write_table()
423 local void write_table32hi(FILE *out, const z_word_t FAR *table, int k) { in write_table32hi()
[all …]
H A Dzutil.h44 typedef uch FAR uchf;
46 typedef ush FAR ushf;
221 void ZLIB_INTERNAL zmemcpy(void FAR *, const void FAR *, z_size_t);
222 int ZLIB_INTERNAL zmemcmp(const void FAR *, const void FAR *, z_size_t);
223 void ZLIB_INTERNAL zmemzero(void FAR *, z_size_t);
H A Dzconf.h.in313 /* The following definitions for FAR are needed only for MSDOS mixed
317 * just define FAR to be empty.
324 # define FAR _far macro
326 # define FAR far macro
333 # define FAR _far macro
335 # define FAR far macro
358 # ifdef FAR
359 # undef FAR
371 # define ZEXPORTVA FAR CDECL
398 #ifndef FAR
[all …]
H A Dzlib.h100 struct internal_state FAR *state; /* not visible by applications */
112 typedef z_stream FAR *z_streamp;
135 typedef gz_header FAR *gz_headerp;
1134 typedef unsigned (*in_func)(void FAR *,
1135 z_const unsigned char FAR * FAR *);
1136 typedef int (*out_func)(void FAR *, unsigned char FAR *, unsigned);
1139 in_func in, void FAR *in_desc,
1140 out_func out, void FAR *out_desc);
1919 unsigned char FAR *window,
2040 ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table(void);
H A Dzutil.c153 void ZLIB_INTERNAL zmemcpy(void FAR *dst, const void FAR *src, z_size_t n) { in zmemcpy()
162 int ZLIB_INTERNAL zmemcmp(const void FAR *s1, const void FAR *s2, z_size_t n) { in zmemcmp()
172 void ZLIB_INTERNAL zmemzero(void FAR *b, z_size_t len) { in zmemzero()
H A Ddeflate.h81 } FAR ct_data;
94 } FAR tree_desc;
97 typedef Pos FAR Posf;
288 } FAR deflate_state;
H A Dgzguts.h204 typedef gz_state FAR *gz_statep;
/freebsd/crypto/krb5/src/windows/include/
H A Dleashwin.h25 } LSH_DLGINFO, FAR *LPLSH_DLGINFO;
133 int FAR Leash_kinit_dlg(HWND hParent, LPLSH_DLGINFO lpdlginfo);
134 int FAR Leash_kinit_dlg_ex(HWND hParent, LPLSH_DLGINFO_EX lpdlginfoex);
135 int FAR Leash_changepwd_dlg(HWND hParent, LPLSH_DLGINFO lpdlginfo);
136 int FAR Leash_changepwd_dlg_ex(HWND hParent, LPLSH_DLGINFO_EX lpdlginfo);
138 long FAR Leash_checkpwd(char *principal, char *password);
139 long FAR Leash_changepwd(char *principal, char *password, char *newpassword, char** result_string);
140 long FAR Leash_kinit(char *principal, char *password, int lifetime);
141 long FAR Leash_kinit_ex(char * principal, char * password, int lifetime,
145 long FAR Leash_klist(HWND hlist, TICKETINFO FAR *ticketinfo);
[all …]
H A Dloadfuncs-com_err.h17 (const char FAR *, errcode_t, const char FAR *, ...)
23 (const char FAR *whoami, errcode_t code, const char FAR *fmt, va_list ap)
26 const char FAR *,
35 (const struct error_table FAR *)
41 (const struct error_table FAR *)
/freebsd/contrib/ntp/libntp/lib/isc/win32/include/isc/
H A Dnet.h159 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 Dopenfst13 0 long 0x56515c OpenFst binary FAR data, far type: stlist
16 0 long 0x7eb2f35c OpenFst binary FAR data, far type: sttable
/freebsd/crypto/krb5/src/windows/leash/
H A DMainFrm.h90 afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
/freebsd/sys/dev/hptmv/
H A DmvOs.h41 #define FAR macro
H A DmvStorageDev.h184 MV_U16 FAR *bufPtr, MV_U32 count,
H A Dglobal.h107 } SCAT_GATH, FAR *FPSCAT_GATH;
/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dgzguts.h211 gz_state FAR *state;
/freebsd/crypto/krb5/src/windows/leashdll/
H A Dlshfunc.c15 static char FAR *err_context;
556 long FAR
689 long FAR
696 long FAR
711 long FAR Leash_klist(HWND hlist, TICKETINFO FAR *ticketinfo) in Leash_klist()
2673 void FAR

12