Searched refs:opaque (Results 1 - 25 of 535) sorted by relevance

1234567891011>>

/netbsd-current/sys/arch/hpc/stand/libz/
H A Dzalloc.c35 zcalloc(voidpf opaque, unsigned items, unsigned size) argument
39 opaque = malloc(total);
40 if (opaque != NULL)
41 memset(opaque, 0, total);
42 return opaque;
46 zcfree(voidpf opaque, voidpf ptr) argument
/netbsd-current/sys/lib/libz/
H A Dzalloc.c42 zcalloc(voidpf opaque, unsigned int items, unsigned int size) argument
47 opaque = alloc(totalsize);
48 if (opaque != NULL)
49 memset(opaque, 0, totalsize);
50 return opaque;
54 zcfree(voidpf opaque, voidpf ptr) argument
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dlto-compress.h30 void *opaque);
37 void *opaque);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dlto-compress.h30 void *opaque);
37 void *opaque);
/netbsd-current/common/dist/zlib/contrib/minizip/
H A Dioapi.c34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidp
95 fopen_file_func(voidpf opaque, const char* filename, int mode) argument
114 fopen64_file_func(voidpf opaque, const void* filename, int mode) argument
134 fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) argument
142 fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) argument
150 ftell_file_func(voidpf opaque, voidpf stream) argument
159 ftell64_file_func(voidpf opaque, voidpf stream) argument
167 fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) argument
191 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
218 fclose_file_func(voidpf opaque, voidpf stream) argument
226 ferror_file_func(voidpf opaque, voidpf stream) argument
[all...]
H A Dioapi.h137 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
138 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
139 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
140 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
141 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
143 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
144 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
157 voidpf opaque; member in struct:zlib_filefunc_def_s
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
161 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidp
173 voidpf opaque; member in struct:zlib_filefunc64_def_s
[all...]
/netbsd-current/external/gpl3/binutils/dist/zlib/contrib/minizip/
H A Dioapi.c34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidp
95 fopen_file_func(voidpf opaque, const char* filename, int mode) argument
114 fopen64_file_func(voidpf opaque, const void* filename, int mode) argument
134 fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) argument
142 fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) argument
150 ftell_file_func(voidpf opaque, voidpf stream) argument
159 ftell64_file_func(voidpf opaque, voidpf stream) argument
167 fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) argument
191 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
218 fclose_file_func(voidpf opaque, voidpf stream) argument
226 ferror_file_func(voidpf opaque, voidpf stream) argument
[all...]
H A Dioapi.h137 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
138 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
139 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
140 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
141 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
143 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
144 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
157 voidpf opaque; member in struct:zlib_filefunc_def_s
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
161 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidp
173 voidpf opaque; member in struct:zlib_filefunc64_def_s
[all...]
/netbsd-current/external/gpl3/gdb/dist/zlib/contrib/minizip/
H A Dioapi.c34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidp
95 fopen_file_func(voidpf opaque, const char* filename, int mode) argument
114 fopen64_file_func(voidpf opaque, const void* filename, int mode) argument
134 fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) argument
142 fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) argument
150 ftell_file_func(voidpf opaque, voidpf stream) argument
159 ftell64_file_func(voidpf opaque, voidpf stream) argument
167 fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) argument
191 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
218 fclose_file_func(voidpf opaque, voidpf stream) argument
226 ferror_file_func(voidpf opaque, voidpf stream) argument
[all...]
H A Dioapi.h137 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
138 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
139 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
140 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
141 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
143 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
144 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
157 voidpf opaque; member in struct:zlib_filefunc_def_s
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
161 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidp
173 voidpf opaque; member in struct:zlib_filefunc64_def_s
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/zlib/contrib/minizip/
H A Dioapi.h135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
155 voidpf opaque; member in struct:zlib_filefunc_def_s
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidp
171 voidpf opaque; member in struct:zlib_filefunc64_def_s
[all...]
H A Dioapi.c34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidp
95 fopen_file_func(voidpf opaque, const char* filename, int mode) argument
113 fopen64_file_func(voidpf opaque, const void* filename, int mode) argument
132 fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) argument
139 fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) argument
146 ftell_file_func(voidpf opaque, voidpf stream) argument
154 ftell64_file_func(voidpf opaque, voidpf stream) argument
161 fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) argument
184 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
210 fclose_file_func(voidpf opaque, voidpf stream) argument
217 ferror_file_func(voidpf opaque, voidpf stream) argument
[all...]
/netbsd-current/sys/fs/nfs/client/
H A Dnfs_clmodule.c38 nfs_client_modcmd(modcmd_t cmd, void *opaque) argument
/netbsd-current/sys/fs/nfs/common/
H A Dnfs_module.c38 nfs_common_modcmd(modcmd_t cmd, void *opaque) argument
/netbsd-current/sys/fs/nfs/server/
H A Dnfs_nfsdmodule.c38 nfs_server_modcmd(modcmd_t cmd, void *opaque) argument
/netbsd-current/external/gpl3/binutils.old/dist/zlib/contrib/minizip/
H A Dioapi.h135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
155 voidpf opaque; member in struct:zlib_filefunc_def_s
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidp
171 voidpf opaque; member in struct:zlib_filefunc64_def_s
[all...]
H A Dioapi.c34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidp
95 fopen_file_func(voidpf opaque, const char* filename, int mode) argument
113 fopen64_file_func(voidpf opaque, const void* filename, int mode) argument
132 fread_file_func(voidpf opaque, voidpf stream, void* buf, uLong size) argument
139 fwrite_file_func(voidpf opaque, voidpf stream, const void* buf, uLong size) argument
146 ftell_file_func(voidpf opaque, voidpf stream) argument
154 ftell64_file_func(voidpf opaque, voidpf stream) argument
161 fseek_file_func(voidpf opaque, voidpf stream, uLong offset, int origin) argument
184 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
210 fclose_file_func(voidpf opaque, voidpf stream) argument
217 ferror_file_func(voidpf opaque, voidpf stream) argument
[all...]
/netbsd-current/external/cddl/osnet/dist/uts/common/zmod/
H A Dzutil.c222 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
224 voidpf buf = opaque; /* just to make some compilers happy */
246 void zcfree (voidpf opaque, voidpf ptr) argument
264 ptr = opaque; /* just to make some compilers happy */
281 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
283 if (opaque) opaque = 0; /* to make compiler happy */
287 void zcfree (voidpf opaque, voidpf ptr) argument
289 if (opaque) opaque
[all...]
/netbsd-current/external/mpl/bind/dist/contrib/dlz/modules/perl/
H A Ddlz_perl_callback.xs78 log(opaque, level, msg)
79 IV opaque
84 log_t *log = (log_t *) opaque;
H A Ddlz_perl_callback_clientinfo.xs46 sourceip(opaque)
47 SV *opaque
58 if (!SvTRUE(opaque) || !SvIOK(opaque)) XSRETURN_EMPTY;
65 ci = (dlz_perl_clientinfo_opaque *) SvIV(opaque);
/netbsd-current/sys/arch/usermode/dev/
H A Dvaudio.c132 vaudio_match(device_t parent, cfdata_t match, void *opaque) argument
134 struct thunkbus_attach_args *taa = opaque;
143 vaudio_attach(device_t parent, device_t self, void *opaque) argument
146 struct thunkbus_attach_args *taa = opaque;
193 vaudio_intr(void *opaque) argument
195 struct vaudio_stream *st = opaque;
201 vaudio_softintr_play(void *opaque) argument
203 struct vaudio_stream *st = opaque;
224 vaudio_softintr_record(void *opaque) argument
226 struct vaudio_stream *st = opaque;
247 vaudio_query_format(void *opaque, audio_format_query_t *afp) argument
254 vaudio_set_format(void *opaque, int setmode, const audio_params_t *play, const audio_params_t *rec, audio_filter_reg_t *pfil, audio_filter_reg_t *rfil) argument
269 vaudio_commit_settings(void *opaque) argument
290 vaudio_trigger_output(void *opaque, void *start, void *end, int blksize, void (*intr)(void *), void *intrarg, const audio_params_t *param) argument
308 vaudio_trigger_input(void *opaque, void *start, void *end, int blksize, void (*intr)(void *), void *intrarg, const audio_params_t *param) argument
326 vaudio_halt_output(void *opaque) argument
337 vaudio_halt_input(void *opaque) argument
348 vaudio_getdev(void *opaque, struct audio_device *adev) argument
360 vaudio_set_port(void *opaque, mixer_ctrl_t *mc) argument
366 vaudio_get_port(void *opaque, mixer_ctrl_t *mc) argument
372 vaudio_query_devinfo(void *opaque, mixer_devinfo_t *di) argument
378 vaudio_get_props(void *opaque) argument
385 vaudio_get_locks(void *opaque, kmutex_t **intr, kmutex_t **thread) argument
[all...]
/netbsd-current/sys/crypto/blowfish/
H A Dbf_module.c40 blowfish_modcmd(modcmd_t cmd, void *opaque) argument
/netbsd-current/sys/crypto/des/
H A Ddes_module.c40 des_modcmd(modcmd_t cmd, void *opaque) argument
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dsalt-aes-sha1.c45 krb5_data opaque,
53 if (opaque.length == 0)
55 else if (opaque.length == 4) {
57 _krb5_get_int(opaque.data, &v, 4);
41 AES_SHA1_string_to_key(krb5_context context, krb5_enctype enctype, krb5_data password, krb5_salt salt, krb5_data opaque, krb5_keyblock *key) argument
/netbsd-current/sys/dev/fdt/
H A Dqemufwcfg_fdt.c59 fwcfg_fdt_match(device_t parent, cfdata_t match, void *opaque) argument
61 struct fdt_attach_args * const faa = opaque;
67 fwcfg_fdt_attach(device_t parent, device_t self, void *opaque) argument
70 struct fdt_attach_args * const faa = opaque;

Completed in 330 milliseconds

1234567891011>>