/external/skia/tests/ |
D | SkColorSpaceXformStepsTest.cpp | 24 opaque = kOpaque_SkAlphaType, in DEF_TEST() local 56 { adobe, srgb, opaque, premul, false,true,true,true,false }, in DEF_TEST() 57 { srgb, adobe, opaque, premul, false,true,true,true,false }, in DEF_TEST() 74 { srgb, srgb22, opaque, premul, false,true,false,true,false }, in DEF_TEST() 75 { srgb22, srgb, opaque, premul, false,true,false,true,false }, in DEF_TEST() 81 { srgb, srgb, opaque, premul, false,false,false,false,false }, in DEF_TEST() 92 { adobe1, srgb1, opaque, premul, false,false,true,false,false }, in DEF_TEST() 97 { srgb, srgb1, opaque, premul, false, true,false,false,false }, in DEF_TEST() 99 { srgb, adobe1, opaque, premul, false, true, true,false,false }, in DEF_TEST() 101 { srgb1, srgb, opaque, premul, false,false,false, true,false }, in DEF_TEST() [all …]
|
/external/llvm/test/Transforms/InferFunctionAttrs/ |
D | annotate.ll | 22 ; Use an opaque pointer type for all the (possibly opaque) structs. 23 %opaque = type opaque 154 ; CHECK: declare void @clearerr(%opaque* nocapture) [[G0]] 155 declare void @clearerr(%opaque*) 157 ; CHECK: declare i32 @closedir(%opaque* nocapture) [[G0]] 158 declare i32 @closedir(%opaque*) 226 ; CHECK: declare i32 @fclose(%opaque* nocapture) [[G0]] 227 declare i32 @fclose(%opaque*) 229 ; CHECK: declare noalias %opaque* @fdopen(i32, i8* nocapture readonly) [[G0]] 230 declare %opaque* @fdopen(i32, i8*) [all …]
|
/external/tensorflow/tensorflow/compiler/xla/stream_executor/ |
D | device_memory.h | 62 explicit DeviceMemoryBase(void *opaque = nullptr, uint64_t size = 0) 63 : opaque_(opaque), size_(size) {} in opaque_() argument 76 return opaque() < other.opaque(); 84 void *opaque() { return opaque_; } in opaque() function 85 const void *opaque() const { return opaque_; } in opaque() function 96 return opaque() == other.opaque() && size() == other.size(); in IsSameAs() 104 void Reset(void *opaque, uint64_t bytes) { in Reset() argument 105 opaque_ = opaque; in Reset() 131 : DeviceMemoryBase(const_cast<DeviceMemoryBase &>(other).opaque(), in DeviceMemory() 146 static DeviceMemory<ElemT> MakeFromByteSize(void *opaque, uint64_t bytes) { in MakeFromByteSize() argument [all …]
|
/external/tflite-support/third_party/zlib/contrib/minizip/ |
D | ioapi.c | 34 … 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 …]
|
D | ioapi.h | 135 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 …]
|
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)); 101 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) in win32_open64_file_func() argument 130 voidpf ZCALLBACK win32_open64_file_funcA (voidpf opaque,const void* filename,int mode) in win32_open64_file_funcA() argument 154 voidpf ZCALLBACK win32_open64_file_funcW (voidpf opaque,const void* filename,int mode) in win32_open64_file_funcW() argument [all …]
|
/external/rust/crates/libz-sys/src/zlib/contrib/minizip/ |
D | ioapi.c | 34 … 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 …]
|
D | ioapi.h | 135 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 …]
|
/external/zlib/contrib/minizip/ |
D | ioapi.c | 34 … 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 …]
|
D | ioapi.h | 135 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 …]
|
/external/clang/test/CodeGenCXX/ |
D | eh.cpp | 184 void opaque(); 193 opaque(); in A() 205 opaque(); 211 void opaque(); 222 opaque(); in foo() 248 void opaque(); 254 opaque(); in foo() 275 opaque(); in bar() 290 bool opaque(const A&); 302 if (opaque(x)) { in test() [all …]
|
/external/tflite-support/tensorflow_lite_support/metadata/cc/utils/ |
D | zip_readonly_mem_file.cc | 36 zlib_filefunc64_def_.opaque = this; in ZipReadOnlyMemFile() 44 voidpf ZipReadOnlyMemFile::OpenFile(voidpf opaque, const void* filename, in OpenFile() argument 47 return opaque; in OpenFile() 51 uLong ZipReadOnlyMemFile::ReadFile(voidpf opaque, voidpf stream, void* buf, in ReadFile() argument 53 auto* mem_file = static_cast<ZipReadOnlyMemFile*>(opaque); in ReadFile() 68 uLong ZipReadOnlyMemFile::WriteFile(voidpf opaque, voidpf stream, in WriteFile() argument 75 ZPOS64_T ZipReadOnlyMemFile::TellFile(voidpf opaque, voidpf stream) { in TellFile() argument 76 return static_cast<ZipReadOnlyMemFile*>(opaque)->offset_; in TellFile() 81 (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) { in SeekFile() argument 82 auto* mem_file = static_cast<ZipReadOnlyMemFile*>(opaque); in SeekFile() [all …]
|
/external/libwebsockets/win32port/zlib/ |
D | zutil.c | 216 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 …]
|
/external/zlib/google/ |
D | zip_internal.cc | 45 void* ZipOpenFunc(void* opaque, const void* filename, int mode) { in ZipOpenFunc() argument 91 void* FdOpenFileFunc(void* opaque, const void* filename, int mode) { in FdOpenFileFunc() argument 103 int fd = dup(*static_cast<int*>(opaque)); in FdOpenFileFunc() 111 int FdCloseFileFunc(void* opaque, void* stream) { in FdCloseFileFunc() argument 113 free(opaque); // malloc'ed in FillFdOpenFileFunc() in FdCloseFileFunc() 125 pzlib_filefunc_def->opaque = ptr_fd; in FillFdOpenFileFunc() 132 void* HandleOpenFileFunc(void* opaque, const void* /*filename*/, int mode) { in HandleOpenFileFunc() argument 134 file_ret.hf = static_cast<HANDLE>(opaque); in HandleOpenFileFunc() 145 int HandleCloseFileFunc(void* opaque, void* stream) { in HandleCloseFileFunc() argument 166 void* OpenZipBuffer(void* opaque, const void* /*filename*/, int mode) { in OpenZipBuffer() argument [all …]
|
/external/rust/crates/libz-sys/src/zlib/ |
D | zutil.c | 217 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 …]
|
/external/zlib/ |
D | zutil.c | 219 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) in zcalloc() argument 224 (void)opaque; in zcalloc() 245 void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr) in zcfree() argument 249 (void)opaque; in zcfree() 282 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) in zcalloc() argument 284 (void)opaque; in zcalloc() 288 void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr) in zcfree() argument 290 (void)opaque; in zcfree() 307 voidpf ZLIB_INTERNAL zcalloc(opaque, items, size) in zcalloc() argument 308 voidpf opaque; in zcalloc() [all …]
|
/external/python/cpython2/Modules/zlib/ |
D | zutil.c | 217 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 …]
|
/external/tflite-support/third_party/zlib/ |
D | zutil.c | 217 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 …]
|
/external/swiftshader/tests/regres/testlists/vk-default/ |
D | wsi.txt | 71 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.identity.opaque.reference 72 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.identity.opaque.incremental_present 79 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.rotate_90.opaque.reference 80 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.rotate_90.opaque.incremental_present 87 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.rotate_180.opaque.reference 88 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.rotate_180.opaque.incremental_present 95 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.rotate_270.opaque.reference 96 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.rotate_270.opaque.incremental_present 103 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.horizontal_mirror.opaque.reference 104 dEQP-VK.wsi.xlib.incremental_present.scale_none.immediate.horizontal_mirror.opaque.incremental_pres… [all …]
|
/external/deqp/android/cts/main/vk-master-2019-03-01/ |
D | wsi.txt | 49 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.identity.opaque.reference 50 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.identity.opaque.incremental_present 57 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.rotate_90.opaque.reference 58 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.rotate_90.opaque.incremental_present 65 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.rotate_180.opaque.reference 66 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.rotate_180.opaque.incremental_present 73 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.rotate_270.opaque.reference 74 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.rotate_270.opaque.incremental_present 81 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.horizontal_mirror.opaque.reference 82 dEQP-VK.wsi.android.incremental_present.scale_none.immediate.horizontal_mirror.opaque.incremental_p… [all …]
|
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | zutil.c | 103 void Z_INTERNAL *zng_calloc(void *opaque, unsigned items, unsigned size) { in zng_calloc() argument 104 Z_UNUSED(opaque); in zng_calloc() 108 void Z_INTERNAL zng_cfree(void *opaque, void *ptr) { in zng_cfree() argument 109 Z_UNUSED(opaque); in zng_cfree() 115 void Z_INTERNAL *zng_alloc_aligned(zng_calloc_func zalloc, void *opaque, unsigned items, unsigned s… in zng_alloc_aligned() argument 122 return zng_calloc(opaque, items, size); in zng_alloc_aligned() 126 ptr = zalloc(opaque, 1, alloc_size); in zng_alloc_aligned() 144 void Z_INTERNAL zng_free_aligned(zng_cfree_func zfree, void *opaque, void *ptr) { in zng_free_aligned() argument 147 zng_cfree(opaque, ptr); in zng_free_aligned() 158 zfree(opaque, free_ptr); in zng_free_aligned()
|
/external/cronet/third_party/brotli/enc/ |
D | memory.c | 32 void* opaque) { in BrotliInitMemoryManager() argument 36 m->opaque = 0; in BrotliInitMemoryManager() 40 m->opaque = opaque; in BrotliInitMemoryManager() 53 void* result = m->alloc_func(m->opaque, n); in BrotliAllocate() 59 m->free_func(m->opaque, p); in BrotliFree() 139 void* result = m->alloc_func(m->opaque, n); in BrotliAllocate() 151 m->free_func(m->opaque, p); in BrotliFree() 161 m->free_func(m->opaque, m->pointers[PERM_ALLOCATED_OFFSET + i]); in BrotliWipeOutMemoryManager() 169 brotli_alloc_func alloc_func, brotli_free_func free_func, void* opaque) { in BrotliBootstrapAlloc() argument 173 return alloc_func(opaque, size); in BrotliBootstrapAlloc() [all …]
|
/external/libaom/third_party/libyuv/source/ |
D | convert_jpeg.cc | 35 static void JpegCopyI420(void* opaque, in JpegCopyI420() argument 39 I420Buffers* dest = (I420Buffers*)(opaque); in JpegCopyI420() 49 static void JpegI422ToI420(void* opaque, in JpegI422ToI420() argument 53 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI422ToI420() 63 static void JpegI444ToI420(void* opaque, in JpegI444ToI420() argument 67 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI444ToI420() 77 static void JpegI400ToI420(void* opaque, in JpegI400ToI420() argument 81 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI400ToI420() 202 static void JpegI420ToNV21(void* opaque, in JpegI420ToNV21() argument 206 NV21Buffers* dest = (NV21Buffers*)(opaque); in JpegI420ToNV21() [all …]
|
/external/libyuv/files/source/ |
D | convert_jpeg.cc | 35 static void JpegCopyI420(void* opaque, in JpegCopyI420() argument 39 I420Buffers* dest = (I420Buffers*)(opaque); in JpegCopyI420() 49 static void JpegI422ToI420(void* opaque, in JpegI422ToI420() argument 53 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI422ToI420() 63 static void JpegI444ToI420(void* opaque, in JpegI444ToI420() argument 67 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI444ToI420() 77 static void JpegI400ToI420(void* opaque, in JpegI400ToI420() argument 81 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI400ToI420() 202 static void JpegI420ToNV21(void* opaque, in JpegI420ToNV21() argument 206 NV21Buffers* dest = (NV21Buffers*)(opaque); in JpegI420ToNV21() [all …]
|
/external/freetype/src/gzip/ |
D | zutil.c | 226 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, unsigned items, unsigned size) in zcalloc() argument 231 (void)opaque; in zcalloc() 252 void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr) in zcfree() argument 256 (void)opaque; in zcfree() 289 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) in zcalloc() argument 291 (void)opaque; in zcalloc() 295 void ZLIB_INTERNAL zcfree(voidpf opaque, voidpf ptr) in zcfree() argument 297 (void)opaque; in zcfree() 315 voidpf opaque, in zcalloc() argument 319 (void)opaque; in zcalloc() [all …]
|