/external/zlib/contrib/minizip/ |
D | ioapi.c | 31 voidpf call_zopen64 (const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode) in call_zopen64() 41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int … in call_zseek64() 55 ZPOS64_T call_ztell64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream) in call_ztell64() 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, voidpf stream, void* buf, uLong size)); 89 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong s… 90 static ZPOS64_T ZCALLBACK ftell64_file_func OF((voidpf opaque, voidpf stream)); 91 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int o… 92 static int ZCALLBACK fclose_file_func OF((voidpf opaque, voidpf stream)); 93 static int ZCALLBACK ferror_file_func OF((voidpf opaque, voidpf stream)); [all …]
|
D | ioapi.h | 135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode… typedef 136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLon… 137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf… 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, i… 155 voidpf opaque; 158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream)); 159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset… [all …]
|
D | iowin32.c | 41 voidpf ZCALLBACK win32_open_file_func OF((voidpf opaque, const char* filename, int mode)); 42 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size)); 43 uLong ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong si… 44 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream)); 45 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int or… 46 int ZCALLBACK win32_close_file_func OF((voidpf opaque, voidpf stream)); 47 int ZCALLBACK win32_error_file_func OF((voidpf opaque, voidpf stream)); 82 static voidpf win32_build_iowin(HANDLE hFile) in win32_build_iowin() 84 voidpf ret=NULL; in win32_build_iowin() 101 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) in win32_open64_file_func() [all …]
|
/external/rust/crates/libz-sys/src/zlib/contrib/minizip/ |
D | ioapi.c | 31 voidpf call_zopen64 (const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode) in call_zopen64() 41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int … in call_zseek64() 55 ZPOS64_T call_ztell64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream) in call_ztell64() 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, voidpf stream, void* buf, uLong size)); 89 static uLong ZCALLBACK fwrite_file_func OF((voidpf opaque, voidpf stream, const void* buf,uLong s… 90 static ZPOS64_T ZCALLBACK ftell64_file_func OF((voidpf opaque, voidpf stream)); 91 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int o… 92 static int ZCALLBACK fclose_file_func OF((voidpf opaque, voidpf stream)); 93 static int ZCALLBACK ferror_file_func OF((voidpf opaque, voidpf stream)); [all …]
|
D | ioapi.h | 135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode… typedef 136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLon… 137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf… 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, i… 155 voidpf opaque; 158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream)); 159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset… [all …]
|
D | iowin32.c | 36 voidpf ZCALLBACK win32_open_file_func OF((voidpf opaque, const char* filename, int mode)); 37 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size)); 38 uLong ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong si… 39 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream)); 40 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int or… 41 int ZCALLBACK win32_close_file_func OF((voidpf opaque, voidpf stream)); 42 int ZCALLBACK win32_error_file_func OF((voidpf opaque, voidpf stream)); 77 static voidpf win32_build_iowin(HANDLE hFile) in win32_build_iowin() 79 voidpf ret=NULL; in win32_build_iowin() 96 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) in win32_open64_file_func() [all …]
|
/external/freetype/src/gzip/ |
D | zutil.c | 71 voidpf org_ptr; 72 voidpf new_ptr; 83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() 85 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc() 107 void zcfree (voidpf opaque, voidpf ptr) in zcfree() 142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() 148 void zcfree (voidpf opaque, voidpf ptr) in zcfree() 161 extern void ft_sfree OF((voidpf ptr)); 164 voidpf zcalloc (opaque, items, size) in zcalloc() 165 voidpf opaque; in zcalloc() [all …]
|
D | zlib.h | 63 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); typedef 64 typedef void (*free_func) OF((voidpf opaque, voidpf address)); 82 voidpf opaque; /* private data object passed to zalloc and zfree */
|
D | zutil.h | 207 local voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size)); 208 local void zcfree OF((voidpf opaque, voidpf ptr)); 212 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
D | ftzconf.h | 47 # define voidpf z_voidpf macro 236 typedef void FAR *voidpf; typedef 239 typedef Byte FAR *voidpf; typedef
|
D | ftgzip.c | 123 static voidpf 140 voidpf address ) in ft_gzip_free() 148 local voidpf 149 zcalloc ( voidpf opaque, in zcalloc() 157 zcfree( voidpf opaque, in zcfree() 158 voidpf ptr ) in zcfree()
|
/external/python/cpython2/Modules/zlib/ |
D | zutil.c | 49 switch ((int)(sizeof(voidpf))) { in zlibCompileFlags() 205 voidpf org_ptr; 206 voidpf new_ptr; 217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() 219 voidpf buf; in zcalloc() 243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 302 extern void free OF((voidpf ptr)); 305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() [all …]
|
D | zutil.h | 257 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items, 259 void ZLIB_INTERNAL zcfree OF((voidpf opaque, voidpf ptr)); 264 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
D | example.c | 210 c_stream.opaque = (voidpf)0; 249 d_stream.opaque = (voidpf)0; 288 c_stream.opaque = (voidpf)0; 345 d_stream.opaque = (voidpf)0; 385 c_stream.opaque = (voidpf)0; 424 d_stream.opaque = (voidpf)0; 466 c_stream.opaque = (voidpf)0; 505 d_stream.opaque = (voidpf)0;
|
/external/libwebsockets/win32port/zlib/ |
D | zutil.c | 49 switch ((int)(sizeof(voidpf))) { in zlibCompileFlags() 204 voidpf org_ptr; 205 voidpf new_ptr; 216 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() 218 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc() 240 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 275 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 281 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 297 extern void free OF((voidpf ptr)); 300 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() [all …]
|
D | zutil.h | 265 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items, 267 void ZLIB_INTERNAL zcfree OF((voidpf opaque, voidpf ptr)); 271 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
/external/zlib/ |
D | zutil.c | 49 switch ((int)(sizeof(voidpf))) { in zlibCompileFlags() 205 voidpf org_ptr; 206 voidpf new_ptr; 217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() 219 voidpf buf; in zcalloc() 243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 302 extern void free OF((voidpf ptr)); 305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() [all …]
|
D | zutil.h | 272 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items, 274 void ZLIB_INTERNAL zcfree OF((voidpf opaque, voidpf ptr)); 279 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
/external/rust/crates/libz-sys/src/zlib/ |
D | zutil.c | 49 switch ((int)(sizeof(voidpf))) { in zlibCompileFlags() 205 voidpf org_ptr; 206 voidpf new_ptr; 217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() 219 voidpf buf; in zcalloc() 243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() 302 extern void free OF((voidpf ptr)); 305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() [all …]
|
D | zutil.h | 257 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items, 259 void ZLIB_INTERNAL zcfree OF((voidpf opaque, voidpf ptr)); 264 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
/external/zlib/patches/ |
D | 0004-fix-uwp.patch | 21 voidpf ZCALLBACK win32_open_file_func OF((voidpf opaque, const char* filename, int mode)); 22 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size));
|
/external/rust/crates/libz-sys/src/ |
D | lib.rs | 6 pub type alloc_func = unsafe extern "C" fn(voidpf, uInt, uInt) -> voidpf; 8 pub type free_func = unsafe extern "C" fn(voidpf, voidpf); 18 pub type voidpf = *mut c_void; typedef 59 pub opaque: voidpf,
|
/external/zstd/zlibWrapper/examples/ |
D | example.c | 235 c_stream.opaque = (voidpf)0; 274 d_stream.opaque = (voidpf)0; 313 c_stream.opaque = (voidpf)0; 370 d_stream.opaque = (voidpf)0; 410 c_stream.opaque = (voidpf)0; 449 d_stream.opaque = (voidpf)0; 491 c_stream.opaque = (voidpf)0; 530 d_stream.opaque = (voidpf)0;
|
D | example_original.c | 227 c_stream.opaque = (voidpf)0; 266 d_stream.opaque = (voidpf)0; 305 c_stream.opaque = (voidpf)0; 362 d_stream.opaque = (voidpf)0; 402 c_stream.opaque = (voidpf)0; 441 d_stream.opaque = (voidpf)0; 483 c_stream.opaque = (voidpf)0; 522 d_stream.opaque = (voidpf)0;
|
/external/rust/crates/libz-sys/src/zlib/test/ |
D | example.c | 210 c_stream.opaque = (voidpf)0; 249 d_stream.opaque = (voidpf)0; 288 c_stream.opaque = (voidpf)0; 345 d_stream.opaque = (voidpf)0; 385 c_stream.opaque = (voidpf)0; 424 d_stream.opaque = (voidpf)0; 466 c_stream.opaque = (voidpf)0; 505 d_stream.opaque = (voidpf)0;
|