/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 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/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/zlib/src/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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InferFunctionAttrs/ |
D | annotate.ll | 22 ; Use an opaque pointer type for all the (possibly opaque) structs. 23 %opaque = type opaque 280 ; CHECK: declare void @clearerr(%opaque* nocapture) [[G0]] 281 declare void @clearerr(%opaque*) 283 ; CHECK: declare i32 @closedir(%opaque* nocapture) [[G0]] 284 declare i32 @closedir(%opaque*) 352 ; CHECK: declare i32 @fclose(%opaque* nocapture) [[G0]] 353 declare i32 @fclose(%opaque*) 355 ; CHECK: declare noalias %opaque* @fdopen(i32, i8* nocapture readonly) [[G0]] 356 declare %opaque* @fdopen(i32, i8*) [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/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/tensorflow/tensorflow/stream_executor/ |
D | device_memory.h | 61 explicit DeviceMemoryBase(void *opaque = nullptr, uint64 size = 0, 63 : opaque_(opaque), size_(size), is_sub_buffer_(is_sub_buffer) {} 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 93 return opaque() == other.opaque() && size() == other.size(); in IsSameAs() 101 void Reset(void *opaque, uint64 bytes) { in Reset() argument 102 opaque_ = opaque; in Reset() 128 : DeviceMemoryBase(const_cast<DeviceMemoryBase &>(other).opaque(), in DeviceMemory() 141 static DeviceMemory<ElemT> MakeFromByteSize(void *opaque, uint64 bytes) { in MakeFromByteSize() argument [all …]
|
/external/zlib/src/ |
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/spirv-llvm/test/SPIRV/transcoding/ |
D | spirv-types.ll | 1 ;; Test SPIR-V opaque types 45 ; CHECK-LLVM-DAG: %opencl.pipe_t = type opaque 46 ; CHECK-LLVM-DAG: %opencl.image3d_t = type opaque 47 ; CHECK-LLVM_DAG: %opencl.image2d_depth_t = type opaque 48 ; CHECK-LLVM-DAG: %opencl.image2d_array_t = type opaque 49 ; CHECK-LLVM-DAG: %opencl.image1d_buffer_t = type opaque 50 ; CHECK-LLVM-DAG: %opencl.image1d_t = type opaque 51 ; CHECK-LLVM-DAG: %opencl.image2d_t = type opaque 52 ; CHECK-LLVM-DAG: %opencl.clk_event_t = type opaque 53 ; CHECK-LLVM-DAG: %opencl.event_t = type opaque [all …]
|
/external/tensorflow/tensorflow/stream_executor/host/ |
D | host_gpu_executor.cc | 46 return reinterpret_cast<char *>(parent->opaque()) + offset_bytes; in AllocateSubBuffer() 51 delete[] static_cast<char *>(mem->opaque()); in Deallocate() 56 memset(location->opaque(), 0, size); in SynchronousMemZero() 62 memset(location->opaque(), value, size); in SynchronousMemSet() 70 void *src_mem = const_cast<void *>(gpu_src.opaque()); in Memcpy() 78 void *dst_mem = gpu_dst->opaque(); in Memcpy() 90 void *dst_mem = gpu_dst->opaque(); in MemcpyDeviceToDevice() 91 void *src_mem = const_cast<void *>(gpu_src.opaque()); in MemcpyDeviceToDevice() 102 void *gpu_mem = location->opaque(); in MemZero() 112 void *gpu_mem = location->opaque(); in Memset() [all …]
|
/external/libaom/libaom/third_party/libyuv/source/ |
D | convert_jpeg.cc | 34 static void JpegCopyI420(void* opaque, in JpegCopyI420() argument 38 I420Buffers* dest = (I420Buffers*)(opaque); in JpegCopyI420() 52 static void JpegI422ToI420(void* opaque, in JpegI422ToI420() argument 56 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI422ToI420() 70 static void JpegI444ToI420(void* opaque, in JpegI444ToI420() argument 74 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI444ToI420() 88 static void JpegI411ToI420(void* opaque, in JpegI411ToI420() argument 92 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI411ToI420() 106 static void JpegI400ToI420(void* opaque, in JpegI400ToI420() argument 110 I420Buffers* dest = (I420Buffers*)(opaque); in JpegI400ToI420() [all …]
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_dnn.cc | 952 handle.get(), cudnn.handle(), dropout, state_memory.opaque(), in Create() 1571 /*xDesc=*/input_desc.data_handle(), /*x=*/input_data.opaque(), in DoRnnForwardImpl() 1572 /*hxDesc=*/input_h_desc.handle(), /*hx=*/input_h_data.opaque(), in DoRnnForwardImpl() 1573 /*cxDesc=*/input_c_desc.handle(), /*cx=*/input_c_data.opaque(), in DoRnnForwardImpl() 1574 /*wDesc=*/rnn_desc.params_handle(), /*w=*/params.opaque(), in DoRnnForwardImpl() 1576 /*y=*/output_data->opaque(), in DoRnnForwardImpl() 1577 /*hyDesc=*/output_h_desc.handle(), /*hy=*/output_h_data->opaque(), in DoRnnForwardImpl() 1578 /*cyDesc=*/output_c_desc.handle(), /*cy=*/output_c_data->opaque(), in DoRnnForwardImpl() 1581 /*workspace=*/workspace.opaque(), in DoRnnForwardImpl() 1593 /*x=*/input_data.opaque(), /*hxDesc=*/input_h_desc.handle(), in DoRnnForwardImpl() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | hsa-metadata-images.ll | 5 %opencl.image1d_t = type opaque 6 %opencl.image1d_array_t = type opaque 7 %opencl.image1d_buffer_t = type opaque 8 %opencl.image2d_t = type opaque 9 %opencl.image2d_array_t = type opaque 10 %opencl.image2d_array_depth_t = type opaque 11 %opencl.image2d_array_msaa_t = type opaque 12 %opencl.image2d_array_msaa_depth_t = type opaque 13 %opencl.image2d_depth_t = type opaque 14 %opencl.image2d_msaa_t = type opaque [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | opaque.ll | 4 %swift.opaque = type opaque 8 …%Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8 }>, %Si, %SQ, %SQ, %Si, %swift.opaque }> 18 define %swift.opaque* @_TwTkV([24 x i8]* %dest, %swift.opaque* %src, 21 %0 = bitcast %swift.opaque* %src to %V* 29 %6 = bitcast %V* %3 to %swift.opaque* 30 ret %swift.opaque* %6
|
/external/llvm/test/Transforms/InstCombine/ |
D | opaque.ll | 4 %swift.opaque = type opaque 8 …%Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8, %Vs4Int8 }>, %Si, %SQ, %SQ, %Si, %swift.opaque }> 19 define %swift.opaque* @_TwTkV([24 x i8]* %dest, %swift.opaque* %src, 22 %0 = bitcast %swift.opaque* %src to %V* 30 %6 = bitcast %V* %3 to %swift.opaque* 31 ret %swift.opaque* %6
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
D | rocm_dnn.cc | 2078 input_data.opaque() /*x*/, input_h_desc.handle() /*hxDesc*/, in DoRnnForwardImpl() 2079 input_h_data.opaque() /*hx*/, input_c_desc.handle() /*cxDesc*/, in DoRnnForwardImpl() 2080 input_c_data.opaque() /*cx*/, rnn_desc.params_handle() /*wDesc*/, in DoRnnForwardImpl() 2081 params.opaque() /*w*/, output_desc.handles() /*yDesc*/, in DoRnnForwardImpl() 2082 output_data->opaque() /*y*/, output_h_desc.handle() /*hyDesc*/, in DoRnnForwardImpl() 2083 output_h_data->opaque() /*hy*/, output_c_desc.handle() /*cyDesc*/, in DoRnnForwardImpl() 2084 output_c_data->opaque() /*cy*/, workspace.opaque() /*workspace*/, in DoRnnForwardImpl() 2096 input_data.opaque() /*x*/, input_h_desc.handle() /*hxDesc*/, in DoRnnForwardImpl() 2097 input_h_data.opaque() /*hx*/, input_c_desc.handle() /*cxDesc*/, in DoRnnForwardImpl() 2098 input_c_data.opaque() /*cx*/, rnn_desc.params_handle() /*wDesc*/, in DoRnnForwardImpl() [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() 192 static void JpegI420ToARGB(void* opaque, in JpegI420ToARGB() argument 196 ARGBBuffers* dest = (ARGBBuffers*)(opaque); in JpegI420ToARGB() [all …]
|
/external/libvpx/libvpx/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() 201 static void JpegI420ToARGB(void* opaque, in JpegI420ToARGB() argument 205 ARGBBuffers* dest = (ARGBBuffers*)(opaque); in JpegI420ToARGB() [all …]
|
/external/brotli/c/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()
|
/external/skia/gm/ |
D | wacky_yuv_formats.cpp | 154 static SkBitmap make_bitmap(const SkPath& path, const SkTDArray<SkRect>& circles, bool opaque) { in make_bitmap() argument 168 canvas->clear(opaque ? kGreen : SK_ColorTRANSPARENT); in make_bitmap() 176 paint.setColor(opaque ? kYellow : SK_ColorTRANSPARENT); in make_bitmap() 339 SkBitmap resultBMs[], SkYUVAIndex yuvaIndices[4], bool opaque) { in create_YUV() argument 464 if (opaque) { in create_YUV() 629 static void draw_col_label(SkCanvas* canvas, int x, int yuvColorSpace, bool opaque) { in draw_col_label() argument 646 colLabel.printf("%s", opaque ? "Opaque" : "Transparent"); in draw_col_label() 789 for (bool opaque : { false, true }) { in createImages() 792 extract_planes(fOriginalBMs[opaque], (SkYUVColorSpace) cs, &planes); in createImages() 797 create_YUV(planes, (YUVFormat) format, resultBMs, yuvaIndices, opaque); in createImages() [all …]
|
/external/swiftshader/third_party/LLVM/test/Linker/ |
D | 2003-08-23-GlobalVarLinking.ll | 2 ; RUN: echo {%%T1 = type opaque %%T2 = type opaque @S = external global \{ i32, %%T1* \} declare vo… 4 ; RUN: llvm-link %t.out1.bc %t.out2.bc -S | not grep opaque 6 ; After linking this testcase, there should be no opaque types left. The two 7 ; S's should cause the opaque type to be resolved to 'int'.
|