/external/clang/test/CodeGen/ |
unwind-attr.c | 4 int opaque(); 9 return opaque();
|
trapv.c | 28 extern void opaque(int); 29 opaque(i++); 42 extern void opaque(int); 43 opaque(++i);
|
/external/webrtc/webrtc/base/ |
linuxfdwalk.h | 28 int fdwalk(void (*func)(void *, int), void *opaque);
|
/external/clang/test/CodeGenCXX/ |
exceptions-no-rtti.cpp | 32 void opaque(); 39 opaque(); 44 opaque();
|
eh.cpp | 184 void opaque(); 193 opaque(); 205 opaque(); 211 void opaque(); 222 opaque(); 248 void opaque(); 254 opaque(); 275 opaque(); 290 bool opaque(const A&); 302 if (opaque(x)) [all...] |
partial-destruction.cpp | 5 void opaque(); 12 opaque();
|
/external/freetype/src/gzip/ |
zutil.c | 83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) 85 voidpf buf = opaque; /* just to make some compilers happy */ 107 void zcfree (voidpf opaque, voidpf ptr) 125 ptr = opaque; /* just to make some compilers happy */ 142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) 144 if (opaque) opaque = 0; /* to make compiler happy */ 148 void zcfree (voidpf opaque, voidpf ptr) 150 if (opaque) opaque = 0; /* to make compiler happy * [all...] |
/external/skia/tests/ |
SkColorSpaceXformStepsTest.cpp | 20 opaque = kOpaque_SkAlphaType, local 50 // If opaque, we need neither the initial unpremul, nor the premul later. 51 { adobe, srgb, opaque, premul, false,true,true,true,false }, 52 { srgb, adobe, opaque, premul, false,true,true,true,false }, 69 { srgb, srgb22, opaque, premul, false,true,false,true,false }, 70 { srgb22, srgb, opaque, premul, false,true,false,true,false }, 76 { srgb, srgb, opaque, premul, false,false,false,false,false }, 87 { adobe1, srgb1, opaque, premul, false,false,true,false,false }, 92 { srgb, srgb1, opaque, premul, false, true,false,false,false }, 94 { srgb, adobe1, opaque, premul, false, true, true,false,false } [all...] |
/external/skqp/tests/ |
SkColorSpaceXformStepsTest.cpp | 20 opaque = kOpaque_SkAlphaType, local 50 // If opaque, we need neither the initial unpremul, nor the premul later. 51 { adobe, srgb, opaque, premul, false,true,true,true,false }, 52 { srgb, adobe, opaque, premul, false,true,true,true,false }, 69 { srgb, srgb22, opaque, premul, false,true,false,true,false }, 70 { srgb22, srgb, opaque, premul, false,true,false,true,false }, 76 { srgb, srgb, opaque, premul, false,false,false,false,false }, 87 { adobe1, srgb1, opaque, premul, false,false,true,false,false }, 92 { srgb, srgb1, opaque, premul, false, true,false,false,false }, 94 { srgb, adobe1, opaque, premul, false, true, true,false,false } [all...] |
/external/tensorflow/tensorflow/stream_executor/ |
device_memory.h | 52 // DeviceMemoryBase::opaque does not necessarily produce a pointer that can be 59 // region. An opaque pointer may be provided -- see header for details on the 61 explicit DeviceMemoryBase(void *opaque = nullptr, uint64 size = 0, 63 : opaque_(opaque), size_(size), is_sub_buffer_(is_sub_buffer) {} 76 return opaque() < other.opaque(); 84 void *opaque() { return opaque_; } function in class:stream_executor::DeviceMemoryBase 85 const void *opaque() const { return opaque_; } function in class:stream_executor::DeviceMemoryBase 91 // their opaque pointer and size). 93 return opaque() == other.opaque() && size() == other.size() [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
zutil.c | 216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void zcfree (voidpf opaque, voidpf ptr)
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void zcfree (voidpf opaque, voidpf ptr)
283 if (opaque) opaque = 0; /* to make compiler happy */ [all...] |
/external/u-boot/lib/zlib/ |
zutil.c | 56 voidpf zcalloc(voidpf opaque, unsigned items, unsigned size) 58 if (opaque) 64 void zcfree(voidpf opaque, voidpf ptr, unsigned nb) 67 if (opaque)
|
/external/zlib/src/contrib/minizip/ |
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, 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, voidpf stream, ZPOS64_T offset, int origin)) 171 voidpf opaque; member in struct:zlib_filefunc64_def_s [all...] |
ioapi.c | 34 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, voidpf stream, void* buf, uLong size)) [all...] |
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 size)); 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 origin)); 41 int ZCALLBACK win32_close_file_func OF((voidpf opaque, voidpf stream)); 42 int ZCALLBACK win32_error_file_func OF((voidpf opaque, voidpf stream)); 96 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) 125 voidpf ZCALLBACK win32_open64_file_funcA (voidpf opaque,const void* filename,int mode) 149 voidpf ZCALLBACK win32_open64_file_funcW (voidpf opaque,const void* filename,int mode [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/ |
owning_device_memory.h | 93 const void* opaque() const { return mem_.opaque(); } function in class:xla::OwningDeviceMemory 94 void* opaque() { return mem_.opaque(); } function in class:xla::OwningDeviceMemory 104 return se::DeviceMemoryBase(opaque(), size(), /*is_sub_buffer=*/false);
|
owning_device_memory.cc | 28 LOG(WARNING) << "Deallocating buffer " << mem_.opaque() << " failed.";
|
/external/brotli/c/include/brotli/ |
types.h | 65 * @param opaque custom memory manager handle provided by client 71 typedef void* (*brotli_alloc_func)(void* opaque, size_t size); 78 * @param opaque custom memory manager handle provided by client 81 typedef void (*brotli_free_func)(void* opaque, void* address);
|
/external/clang/test/Analysis/ |
taint-tester.cpp | 30 class opaque; 31 void testOpaqueClass(opaque *obj) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
zutil.c | 220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
222 voidpf buf = opaque; /* just to make some compilers happy */
244 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
262 ptr = opaque; /* just to make some compilers happy */
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
281 if (opaque) opaque = 0; /* to make compiler happy */
285 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
287 if (opaque) opaque = 0; /* to make compiler happy */ [all...] |
/external/tensorflow/tensorflow/stream_executor/host/ |
host_gpu_executor.cc | 46 return reinterpret_cast<char *>(parent->opaque()) + offset_bytes; 51 delete[] static_cast<char *>(mem->opaque()); 56 memset(location->opaque(), 0, size); 62 memset(location->opaque(), value, size); 70 void *src_mem = const_cast<void *>(gpu_src.opaque()); 78 void *dst_mem = gpu_dst->opaque(); 90 void *dst_mem = gpu_dst->opaque(); 91 void *src_mem = const_cast<void *>(gpu_src.opaque()); 102 void *gpu_mem = location->opaque(); 112 void *gpu_mem = location->opaque(); [all...] |
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
zutil.c | 214 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) 219 (void)opaque; 240 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) 244 (void)opaque; 277 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) 279 (void)opaque; 283 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) 285 (void)opaque; 302 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) 303 voidpf opaque; [all...] |
/external/python/cpython2/Modules/zlib/ |
zutil.c | 217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) 222 (void)opaque; 243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) 247 (void)opaque; 280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) 282 (void)opaque; 286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) 288 (void)opaque; 305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) 306 voidpf opaque; [all...] |
/external/zlib/src/ |
zutil.c | 217 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) 222 (void)opaque; 243 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) 247 (void)opaque; 280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) 282 (void)opaque; 286 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) 288 (void)opaque; 305 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) 306 voidpf opaque; [all...] |
/external/boringssl/src/include/openssl/ |
hrss.h | 32 uint8_t opaque[1808]; member in struct:HRSS_private_key 36 uint8_t opaque[1424]; member in struct:HRSS_public_key
|