Home
last modified time | relevance | path

Searched refs:texObject (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/compat/cuda/
Dcuda_runtime.h137 inline __device__ T tex2D(cudaTextureObject_t texObject, float x, float y)
143 "l"(texObject), "f"(x), "f"(y));
149 inline __device__ float4 tex2D<float4>(cudaTextureObject_t texObject, float x, float y)
154 "l"(texObject), "f"(x), "f"(y));
159 inline __device__ float tex2D<float>(cudaTextureObject_t texObject, float x, float y)
161 return tex2D<float4>(texObject, x, y).x;
165 inline __device__ float2 tex2D<float2>(cudaTextureObject_t texObject, float x, float y)
167 float4 ret = tex2D<float4>(texObject, x, y);
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstcudaloader.c105 CUresult (CUDAAPI * CuTexObjectDestroy) (CUtexObject texObject);
492 CuTexObjectDestroy (CUtexObject texObject) in CuTexObjectDestroy() argument
496 return gst_cuda_vtable.CuTexObjectDestroy (texObject); in CuTexObjectDestroy()
Dgstcudaloader.h134 CUresult CUDAAPI CuTexObjectDestroy (CUtexObject texObject);