Lines Matching refs:myres
87 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()
140 if (myres != CUDA_SUCCESS) { in init()
143 CUDA_DPRINT("Failed to create cuda context, error code %d", (int)myres); in init()