Home
last modified time | relevance | path

Searched refs:occ0 (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/samples/gpu/
Dopticalflow_nvidia_api.cpp497 SAFE_MAT_DECL (occ0, g_pGPUMemAllocator, width, height); in main()
532 … ncvAssertCUDAReturn (cudaMemset (occ0.ptr (), 0, occ0.pitch () * occ0.height ()), NCV_CUDA_ERROR); in main()
548 state.ppBuffers[0] = occ0.ptr (); in main()
565 … ncvAssertCUDAReturn (cudaMemset (occ0.ptr (), 0, occ0.pitch () * occ0.height ()), NCV_CUDA_ERROR); in main()
582 … ncvAssertCUDAReturn (cudaMemset (occ0.ptr (), 0, occ0.pitch () * occ0.height ()), NCV_CUDA_ERROR); in main()
/external/opencv3/3rdparty/libtiff/
Dtif_predict.c47 static int PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
48 static int PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
409 PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeRow() argument
417 if ((*sp->decoderow)(tif, op0, occ0, s)) { in PredictorDecodeRow()
418 (*sp->decodepfunc)(tif, op0, occ0); in PredictorDecodeRow()
432 PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeTile() argument
439 if ((*sp->decodetile)(tif, op0, occ0, s)) { in PredictorDecodeTile()
442 assert((occ0%rowsize)==0); in PredictorDecodeTile()
444 while (occ0 > 0) { in PredictorDecodeTile()
446 occ0 -= rowsize; in PredictorDecodeTile()
Dtif_lzw.c161 static int LZWDecode(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
163 static int LZWDecodeCompat(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
358 LZWDecode(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecode() argument
363 long occ = (long) occ0; in LZWDecode()
378 if ((tmsize_t) occ != occ0) in LZWDecode()
583 LZWDecodeCompat(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecodeCompat() argument
588 long occ = (long) occ0; in LZWDecodeCompat()
601 if ((tmsize_t) occ != occ0) in LZWDecodeCompat()
/external/pdfium/third_party/libtiff/
Dtif_predict.c49 static int PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
50 static int PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
417 PredictorDecodeRow(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeRow() argument
425 if ((*sp->decoderow)(tif, op0, occ0, s)) { in PredictorDecodeRow()
426 (*sp->decodepfunc)(tif, op0, occ0); in PredictorDecodeRow()
440 PredictorDecodeTile(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in PredictorDecodeTile() argument
447 if ((*sp->decodetile)(tif, op0, occ0, s)) { in PredictorDecodeTile()
450 assert((occ0%rowsize)==0); in PredictorDecodeTile()
452 while (occ0 > 0) { in PredictorDecodeTile()
454 occ0 -= rowsize; in PredictorDecodeTile()
Dtif_lzw.c161 static int LZWDecode(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
163 static int LZWDecodeCompat(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s);
360 LZWDecode(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecode() argument
365 long occ = (long) occ0; in LZWDecode()
381 if ((tmsize_t) occ != occ0) in LZWDecode()
588 LZWDecodeCompat(TIFF* tif, uint8* op0, tmsize_t occ0, uint16 s) in LZWDecodeCompat() argument
593 long occ = (long) occ0; in LZWDecodeCompat()
606 if ((tmsize_t) occ != occ0) in LZWDecodeCompat()
/external/opencv3/modules/cudalegacy/src/
Dinterpolate_frames.cpp70 GpuMat occ0 = buf.rowRange(0 * frame0.rows, 1 * frame0.rows); in interpolateFrames() local
100 state.ppBuffers[0] = occ0.ptr<Ncv32f>(); in interpolateFrames()