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

  /external/tensorflow/tensorflow/examples/android/jni/
rgb2yuv.cc 22 uint8_t* const pY, uint8_t* const pUV) {
35 pUV[offset] = 0;
36 pUV[offset + 1] = 0;
47 pUV[offset + v_offset] += ((112 * r8 - 94 * g8 - 18 * b8 + 128) >> 10) + 32;
50 pUV[offset + u_offset] += ((-38 * r8 - 74 * g8 + 112 * b8 + 128) >> 10) + 32;
56 uint8_t* pUV = output + (width * height);
71 WriteYUV(x, y, width, nR, nG, nB, pY++, pUV);
79 uint8_t* pUV = output + (width * height);
96 WriteYUV(x, y, width, r8, g8, b8, pY++, pUV);
yuv2rgb.cc 92 const uint8_t* pUV = uvData;
100 int nU = pUV[offset];
101 int nV = pUV[offset + 1];
103 int nV = pUV[offset];
104 int nU = pUV[offset + 1];
117 const uint8_t* pUV = input + (width * height);
128 int nU = *pUV++;
129 int nV = *pUV++;
131 int nV = *pUV++;
132 int nU = *pUV++
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTFixedPoint.h 129 float *pUV;
163 VERTTYPE *pUV;
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
image_utils.h 31 const uint8_t* pUV = input;
38 *u_curr++ = *pUV++;
39 *v_curr++ = *pUV++;
41 *v_curr++ = *pUV++;
42 *u_curr++ = *pUV++;
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/env/
ImageUtils.java 186 int pUV = uvRowStride * (j >> 1);
189 int uv_offset = pUV + (i >> 1) * uvPixelStride;
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/env/
ImageUtils.java 186 int pUV = uvRowStride * (j >> 1);
189 int uv_offset = pUV + (i >> 1) * uvPixelStride;
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTPrint3DAPI.cpp 587 float *pUV = ( (float*)&UVs );
625 glVertexAttribPointer(UV_ARRAY, 2, GL_FLOAT, GL_FALSE, 0, (const void*)pUV);

Completed in 154 milliseconds