Searched defs:nV (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTShadowVol.h51 unsigned int nV; /*!< Vertex count */ member in struct:PVRTShadowVolShadowMesh
/external/tensorflow/tensorflow/examples/android/jni/
H A Dyuv2rgb.cc30 static inline uint32_t YUV2RGB(int nY, int nU, int nV) { argument
33 nV -= 128;
39 // nG = (int)(1.164 * nY - 0.813 * nV - 0.391 * nU);
40 // nB = (int)(1.164 * nY + 1.596 * nV);
42 int nR = 1192 * nY + 1634 * nV;
43 int nG = 1192 * nY - 833 * nV - 400 * nU;
101 int nV = pUV[offset + 1]; local
103 int nV = pUV[offset]; local
107 *out++ = YUV2RGB(nY, nU, nV);
129 int nV local
131 int nV = *pUV++; local
157 int nV = pUV[offset + 1]; local
159 int nV = pUV[offset]; local
[all...]

Completed in 111 milliseconds