/external/skqp/tests/ |
D | SkColorSpaceXformStepsTest.cpp | 20 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 …]
|
/external/skia/tests/ |
D | SkColorSpaceXformStepsTest.cpp | 20 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 …]
|
/external/tensorflow/tensorflow/stream_executor/ |
D | device_memory.h | 62 explicit DeviceMemoryBase(void *opaque = nullptr, uint64 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 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 bytes) { in MakeFromByteSize() argument [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/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 …]
|
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)); 96 voidpf ZCALLBACK win32_open64_file_func (voidpf opaque,const void* filename,int mode) in win32_open64_file_func() argument 125 voidpf ZCALLBACK win32_open64_file_funcA (voidpf opaque,const void* filename,int mode) in win32_open64_file_funcA() argument 149 voidpf ZCALLBACK win32_open64_file_funcW (voidpf opaque,const void* filename,int mode) in win32_open64_file_funcW() argument [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 …]
|
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/freetype/src/gzip/ |
D | zutil.c | 83 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 …]
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | eh.cpp | 185 void opaque(); 194 opaque(); in A() 206 opaque(); 212 void opaque(); 223 opaque(); in foo() 249 void opaque(); 255 opaque(); in foo() 276 opaque(); in bar() 291 bool opaque(const A&); 303 if (opaque(x)) { in test() [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/llvm-project/llvm/test/Transforms/InferFunctionAttrs/ |
D | annotate.ll | 22 ; Use an opaque pointer type for all the (possibly opaque) structs. 23 %opaque = type opaque 283 ; CHECK: declare void @clearerr(%opaque* nocapture noundef) [[G1]] 284 declare void @clearerr(%opaque*) 286 ; CHECK: declare noundef i32 @closedir(%opaque* nocapture noundef) [[G1]] 287 declare i32 @closedir(%opaque*) 355 ; CHECK: declare noundef i32 @fclose(%opaque* nocapture noundef) [[G1]] 356 declare i32 @fclose(%opaque*) 358 ; CHECK: declare noalias noundef %opaque* @fdopen(i32 noundef, i8* nocapture noundef readonly) [[G1… 359 declare %opaque* @fdopen(i32, i8*) [all …]
|
/external/zlib/google/ |
D | zip_internal.cc | 41 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 …]
|
/external/angle/third_party/zlib/google/ |
D | zip_internal.cc | 41 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 …]
|
/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/ |
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/angle/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/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/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/llvm-project/clang/test/CodeGenOpenCL/ |
D | intel-subgroups-avc-ext-types.cl | 3 // CHECK: %opencl.intel_sub_group_avc_mce_payload_t = type opaque 4 // CHECK: %opencl.intel_sub_group_avc_ime_payload_t = type opaque 5 // CHECK: %opencl.intel_sub_group_avc_ref_payload_t = type opaque 6 // CHECK: %opencl.intel_sub_group_avc_sic_payload_t = type opaque 8 // CHECK: %opencl.intel_sub_group_avc_mce_result_t = type opaque 9 // CHECK: %opencl.intel_sub_group_avc_ime_result_t = type opaque 10 // CHECK: %opencl.intel_sub_group_avc_ref_result_t = type opaque 11 // CHECK: %opencl.intel_sub_group_avc_sic_result_t = type opaque 13 // CHECK: %opencl.intel_sub_group_avc_ime_result_single_reference_streamout_t = type opaque 14 // CHECK: %opencl.intel_sub_group_avc_ime_result_dual_reference_streamout_t = type opaque [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/its/asn1/ |
D | SspRange.java | 25 private final SequenceOfOctetString opaque; field in SspRange 31 opaque = null; in SspRange() 40 opaque = seq; in SspRange() 46 opaque = SequenceOfOctetString.getInstance(seq); in SspRange() 66 this.opaque = null; in SspRange() 113 return opaque != null; in maybeOpaque() 123 return opaque; in getOpaque() 138 return opaque.toASN1Primitive(); in toASN1Primitive()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/its/asn1/ |
D | SspRange.java | 27 private final SequenceOfOctetString opaque; field in SspRange 33 opaque = null; in SspRange() 42 opaque = seq; in SspRange() 48 opaque = SequenceOfOctetString.getInstance(seq); in SspRange() 68 this.opaque = null; in SspRange() 115 return opaque != null; in maybeOpaque() 125 return opaque; in getOpaque() 140 return opaque.toASN1Primitive(); in toASN1Primitive()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/its/asn1/ |
D | SspRange.java | 27 private final SequenceOfOctetString opaque; field in SspRange 33 opaque = null; in SspRange() 42 opaque = seq; in SspRange() 48 opaque = SequenceOfOctetString.getInstance(seq); in SspRange() 68 this.opaque = null; in SspRange() 115 return opaque != null; in maybeOpaque() 125 return opaque; in getOpaque() 140 return opaque.toASN1Primitive(); in toASN1Primitive()
|