Home
last modified time | relevance | path

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

/hardware/google/aemu/host-common/
DMediaCudaVideoHelper.cpp87 CUresult myres = cuCtxDestroy(mCudaContext); in deInit() local
88 if (myres != CUDA_SUCCESS) { in deInit()
90 (int)myres); in deInit()
118 CUresult myres = cuDeviceGet(&cudaDevice, gpuIndex); in init() local
119 if (myres != CUDA_SUCCESS) { in init()
123 CUDA_DPRINT("Failed to get cuda device, error code %d", (int)myres); in init()
128 myres = cuDeviceGetName(buf, sizeof(buf), cudaDevice); in init()
129 if (myres != CUDA_SUCCESS) { in init()
133 CUDA_DPRINT("Failed to get gpu device name, error code %d", (int)myres); in init()
139 myres = cuCtxCreate(&mCudaContext, cudaFlags, cudaDevice); in init()
[all …]
DMediaCudaDriverHelper.cpp95 CUresult myres = cuDeviceGetCount(&numGpuCards); in initCudaDrivers() local
96 if (myres != CUDA_SUCCESS) { in initCudaDrivers()
100 (int)myres); in initCudaDrivers()
DMediaH264DecoderCuvid.cpp139 CUresult myres = cuDeviceGet(&cudaDevice, gpuIndex); in initH264ContextInternal() local
140 if (myres != CUDA_SUCCESS) { in initH264ContextInternal()
141 H264_DPRINT("Failed to get cuda device, error code %d", (int)myres); in initH264ContextInternal()
146 myres = cuDeviceGetName(buf, sizeof(buf), cudaDevice); in initH264ContextInternal()
147 if (myres != CUDA_SUCCESS) { in initH264ContextInternal()
148 H264_DPRINT("Failed to get gpu device name, error code %d", (int)myres); in initH264ContextInternal()
154 myres = cuCtxCreate(&mCudaContext, cudaFlags, cudaDevice); in initH264ContextInternal()
155 if (myres != CUDA_SUCCESS) { in initH264ContextInternal()
156 H264_DPRINT("Failed to create cuda context, error code %d", (int)myres); in initH264ContextInternal()
199 CUresult myres = cuCtxDestroy(mCudaContext); in destroyH264Context() local
[all …]