HomeSort by relevance Sort by last modified time
    Searched defs:planeSize (Results 1 - 6 of 6) sorted by null

  /external/skia/src/effects/
SkEmbossMaskFilter.cpp 98 size_t planeSize = dst->computeImageSize();
99 if (0 == planeSize) {
102 dst->fImage = SkMask::AllocImage(planeSize * 3);
103 memcpy(dst->fImage, alphaPlane, planeSize);
SkEmbossMask.cpp 94 size_t planeSize = mask->computeImageSize();
96 uint8_t* multiply = (uint8_t*)alpha + planeSize;
97 uint8_t* additive = multiply + planeSize;
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
YUVImage.java 236 int planeSize = TJ.planeSizeYUV(i, width, strides[i], height, subsamp);
247 if (strides[i] < 0 && offsets[i] - planeSize + pw < 0)
249 if (planes[i].length < offsets[i] + planeSize)
  /external/opencv3/modules/ts/src/
ts_func.cpp 347 size_t planeSize = planes[0].total()*src.elemSize();
350 memcpy(planes[1].ptr(), planes[0].ptr(), planeSize);
392 size_t j, k, elemSize = dst.elemSize(), planeSize = plane.total()*elemSize;
403 memset( dptr, gptr[0], planeSize );
406 for( j = 0; j < planeSize; j += elemSize, dptr += elemSize )
411 memcpy(dptr, dst.ptr(), planeSize);
    [all...]
  /external/libjpeg-turbo/
turbojpeg-jni.c 316 int planeSize=tjPlaneSizeYUV(i, width, srcStrides[i], height, subsamp);
319 if(planeSize<0 || pw<0)
324 if(srcStrides[i]<0 && srcOffsets[i]-planeSize+pw<0)
328 if((*env)->GetArrayLength(env, jSrcPlanes[i])<srcOffsets[i]+planeSize)
395 int planeSize=tjPlaneSizeYUV(i, width, dstStrides[i], height, subsamp);
398 if(planeSize<0 || pw<0)
403 if(dstStrides[i]<0 && dstOffsets[i]-planeSize+pw<0)
407 if((*env)->GetArrayLength(env, jDstPlanes[i])<dstOffsets[i]+planeSize)
761 int planeSize=tjPlaneSizeYUV(i, scaledWidth, dstStrides[i], scaledHeight,
765 if(planeSize<0 || pw<0
    [all...]
  /packages/apps/LegacyCamera/jni/
feature_mos_jni.cpp 350 int planeSize = width * height;
352 unsigned char* Vptr = planar + planeSize;
353 unsigned char* Uptr = Vptr + planeSize;
355 for (int i = 0; i < planeSize; i++)

Completed in 194 milliseconds