Home
last modified time | relevance | path

Searched refs:opaque (Results 1 – 25 of 1155) sorted by relevance

12345678910>>...47

/third_party/zlib/contrib/minizip/
Dioapi.c34 … return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode); in call_zopen64()
37 … return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode); in call_zopen64()
44 …return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset… in call_zseek64()
51 …return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,orig… in call_zseek64()
58 … return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
61 … uLong tell_uLong = (uLong)(*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque; in fill_zlib_filefunc64_32_def_from_filefunc32()
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…
[all …]
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, uLon…
139 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf…
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, i…
157 voidpf opaque; member
160 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
161 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset…
[all …]
/third_party/skia/tests/
DSkColorSpaceXformStepsTest.cpp20 opaque = kOpaque_SkAlphaType, in DEF_TEST() local
52 { adobe, srgb, opaque, premul, false,true,true,true,false }, in DEF_TEST()
53 { srgb, adobe, opaque, premul, false,true,true,true,false }, in DEF_TEST()
70 { srgb, srgb22, opaque, premul, false,true,false,true,false }, in DEF_TEST()
71 { srgb22, srgb, opaque, premul, false,true,false,true,false }, in DEF_TEST()
77 { srgb, srgb, opaque, premul, false,false,false,false,false }, in DEF_TEST()
88 { adobe1, srgb1, opaque, premul, false,false,true,false,false }, in DEF_TEST()
93 { srgb, srgb1, opaque, premul, false, true,false,false,false }, in DEF_TEST()
95 { srgb, adobe1, opaque, premul, false, true, true,false,false }, in DEF_TEST()
97 { srgb1, srgb, opaque, premul, false,false,false, true,false }, in DEF_TEST()
[all …]
/third_party/flutter/skia/tests/
DSkColorSpaceXformStepsTest.cpp20 opaque = kOpaque_SkAlphaType, in DEF_TEST() local
51 { adobe, srgb, opaque, premul, false,true,true,true,false }, in DEF_TEST()
52 { srgb, adobe, opaque, premul, false,true,true,true,false }, in DEF_TEST()
69 { srgb, srgb22, opaque, premul, false,true,false,true,false }, in DEF_TEST()
70 { srgb22, srgb, opaque, premul, false,true,false,true,false }, in DEF_TEST()
76 { srgb, srgb, opaque, premul, false,false,false,false,false }, in DEF_TEST()
87 { adobe1, srgb1, opaque, premul, false,false,true,false,false }, in DEF_TEST()
92 { srgb, srgb1, opaque, premul, false, true,false,false,false }, in DEF_TEST()
94 { srgb, adobe1, opaque, premul, false, true, true,false,false }, in DEF_TEST()
96 { srgb1, srgb, opaque, premul, false,false,false, true,false }, in DEF_TEST()
[all …]
/third_party/skia/third_party/externals/zlib/contrib/minizip/
Dioapi.c34 … return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode); in call_zopen64()
37 … return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode); in call_zopen64()
44 …return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset… in call_zseek64()
51 …return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,orig… in call_zseek64()
58 … return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque; in fill_zlib_filefunc64_32_def_from_filefunc32()
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…
[all …]
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, 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; member
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 …]
/third_party/flutter/skia/third_party/externals/zlib/contrib/minizip/
Dioapi.c34 … return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode); in call_zopen64()
37 … return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode); in call_zopen64()
44 …return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset… in call_zseek64()
51 …return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,orig… in call_zseek64()
58 … return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque; in fill_zlib_filefunc64_32_def_from_filefunc32()
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…
[all …]
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, 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; member
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 …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/contrib/minizip/
Dioapi.c34 … return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode); in call_zopen64()
37 … return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode); in call_zopen64()
44 …return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset… in call_zseek64()
51 …return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,orig… in call_zseek64()
58 … return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque; in fill_zlib_filefunc64_32_def_from_filefunc32()
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…
[all …]
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, 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; member
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 …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/contrib/minizip/
Dioapi.c34 … return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode); in call_zopen64()
37 … return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode); in call_zopen64()
44 …return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset… in call_zseek64()
51 …return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,orig… in call_zseek64()
58 … return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream); in call_ztell64()
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque; in fill_zlib_filefunc64_32_def_from_filefunc32()
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…
[all …]
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, 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; member
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 …]
/third_party/skia/third_party/externals/freetype/src/gzip/
Dzutil.c83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
85 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc()
107 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
125 ptr = opaque; /* just to make some compilers happy */ in zcfree()
142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
144 if (opaque) opaque = 0; /* to make compiler happy */ in zcalloc()
148 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
150 if (opaque) opaque = 0; /* to make compiler happy */ in zcfree()
164 voidpf zcalloc (opaque, items, size) in zcalloc() argument
165 voidpf opaque; in zcalloc()
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/gzip/
Dzutil.c83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
85 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc()
107 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
125 ptr = opaque; /* just to make some compilers happy */ in zcfree()
142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
144 if (opaque) opaque = 0; /* to make compiler happy */ in zcalloc()
148 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
150 if (opaque) opaque = 0; /* to make compiler happy */ in zcfree()
164 voidpf zcalloc (opaque, items, size) in zcalloc() argument
165 voidpf opaque; in zcalloc()
[all …]
/third_party/freetype/src/gzip/
Dzutil.c83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
85 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc()
107 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
125 ptr = opaque; /* just to make some compilers happy */ in zcfree()
142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
144 if (opaque) opaque = 0; /* to make compiler happy */ in zcalloc()
148 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
150 if (opaque) opaque = 0; /* to make compiler happy */ in zcfree()
164 voidpf zcalloc (opaque, items, size) in zcalloc() argument
165 voidpf opaque; in zcalloc()
[all …]
/third_party/node/deps/zlib/google/
Dzip_internal.cc39 void* ZipOpenFunc(void *opaque, const char* filename, int mode) { in ZipOpenFunc() argument
84 void* FdOpenFileFunc(void* opaque, const char* filename, int mode) { in FdOpenFileFunc() argument
96 int fd = dup(*static_cast<int*>(opaque)); in FdOpenFileFunc()
104 int FdCloseFileFunc(void* opaque, void* stream) { in FdCloseFileFunc() argument
106 free(opaque); // malloc'ed in FillFdOpenFileFunc() in FdCloseFileFunc()
118 pzlib_filefunc_def->opaque = ptr_fd; in FillFdOpenFileFunc()
125 void* HandleOpenFileFunc(void* opaque, const char* filename, int mode) { in HandleOpenFileFunc() argument
127 file_ret.hf = static_cast<HANDLE>(opaque); in HandleOpenFileFunc()
138 int HandleCloseFileFunc(void* opaque, void* stream) { in HandleCloseFileFunc() argument
159 void* OpenZipBuffer(void* opaque, const char* /*filename*/, int mode) { in OpenZipBuffer() argument
[all …]
/third_party/skia/third_party/externals/zlib/google/
Dzip_internal.cc41 void* ZipOpenFunc(void *opaque, const char* filename, int mode) { in ZipOpenFunc() argument
86 void* FdOpenFileFunc(void* opaque, const char* filename, int mode) { in FdOpenFileFunc() argument
98 int fd = dup(*static_cast<int*>(opaque)); in FdOpenFileFunc()
106 int FdCloseFileFunc(void* opaque, void* stream) { in FdCloseFileFunc() argument
108 free(opaque); // malloc'ed in FillFdOpenFileFunc() in FdCloseFileFunc()
120 pzlib_filefunc_def->opaque = ptr_fd; in FillFdOpenFileFunc()
127 void* HandleOpenFileFunc(void* opaque, const char* filename, int mode) { in HandleOpenFileFunc() argument
129 file_ret.hf = static_cast<HANDLE>(opaque); in HandleOpenFileFunc()
140 int HandleCloseFileFunc(void* opaque, void* stream) { in HandleCloseFileFunc() argument
161 void* OpenZipBuffer(void* opaque, const char* /*filename*/, int mode) { in OpenZipBuffer() argument
[all …]
/third_party/flutter/skia/third_party/externals/zlib/google/
Dzip_internal.cc39 void* ZipOpenFunc(void *opaque, const char* filename, int mode) { in ZipOpenFunc() argument
84 void* FdOpenFileFunc(void* opaque, const char* filename, int mode) { in FdOpenFileFunc() argument
96 int fd = dup(*static_cast<int*>(opaque)); in FdOpenFileFunc()
104 int FdCloseFileFunc(void* opaque, void* stream) { in FdCloseFileFunc() argument
106 free(opaque); // malloc'ed in FillFdOpenFileFunc() in FdCloseFileFunc()
118 pzlib_filefunc_def->opaque = ptr_fd; in FillFdOpenFileFunc()
125 void* HandleOpenFileFunc(void* opaque, const char* filename, int mode) { in HandleOpenFileFunc() argument
127 file_ret.hf = static_cast<HANDLE>(opaque); in HandleOpenFileFunc()
138 int HandleCloseFileFunc(void* opaque, void* stream) { in HandleCloseFileFunc() argument
159 void* OpenZipBuffer(void* opaque, const char* /*filename*/, int mode) { in OpenZipBuffer() argument
[all …]
/third_party/libwebsockets/win32port/zlib/
Dzutil.c216 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
218 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc()
240 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
258 ptr = opaque; /* just to make some compilers happy */ in zcfree()
275 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() argument
277 if (opaque) opaque = 0; /* to make compiler happy */ in zcalloc()
281 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
283 if (opaque) opaque = 0; /* to make compiler happy */ in zcfree()
300 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() argument
301 voidpf opaque; in zcalloc()
[all …]
/third_party/mesa3d/src/panfrost/lib/tests/
Dtest-blend.c32 bool opaque; member
50 .opaque = true,
67 .opaque = false,
85 .opaque = false,
102 .opaque = false,
120 .opaque = false,
137 .opaque = false,
153 .opaque = false,
165 .opaque = false,
181 .opaque = false,
[all …]
/third_party/ffmpeg/libavutil/
Dbuffer.c30 void (*free)(void *opaque, uint8_t *data), in av_buffer_create() argument
31 void *opaque, int flags) in av_buffer_create()
43 buf->opaque = opaque; in av_buffer_create()
62 void av_buffer_default_free(void *opaque, uint8_t *data) in av_buffer_default_free() argument
120 b->free(b->opaque, b->data); in buffer_replace()
143 return buf->buffer->opaque; in av_buffer_get_opaque()
245 AVBufferPool *av_buffer_pool_init2(buffer_size_t size, void *opaque, in av_buffer_pool_init2() argument
246 AVBufferRef* (*alloc)(void *opaque, buffer_size_t size), in av_buffer_pool_init2() argument
247 void (*pool_free)(void *opaque)) in av_buffer_pool_init2() argument
256 pool->opaque = opaque; in av_buffer_pool_init2()
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/
Dzutil.c217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
222 (void)opaque; in zcalloc()
243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
247 (void)opaque; in zcfree()
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() argument
282 (void)opaque; in zcalloc()
286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
288 (void)opaque; in zcfree()
305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() argument
306 voidpf opaque; in zcalloc()
[all …]
/third_party/skia/third_party/externals/zlib/
Dzutil.c217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
222 (void)opaque; in zcalloc()
243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
247 (void)opaque; in zcfree()
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() argument
282 (void)opaque; in zcalloc()
286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
288 (void)opaque; in zcfree()
305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() argument
306 voidpf opaque; in zcalloc()
[all …]
/third_party/node/deps/zlib/
Dzutil.c217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
222 (void)opaque; in zcalloc()
243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
247 (void)opaque; in zcfree()
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() argument
282 (void)opaque; in zcalloc()
286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
288 (void)opaque; in zcfree()
305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() argument
306 voidpf opaque; in zcalloc()
[all …]
/third_party/zlib/
Dzutil.c217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
222 (void)opaque; in zcalloc()
243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
247 (void)opaque; in zcfree()
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() argument
282 (void)opaque; in zcalloc()
286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
288 (void)opaque; in zcfree()
305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() argument
306 voidpf opaque; in zcalloc()
[all …]

12345678910>>...47