OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pUV
(Results
1 - 11
of
11
) 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
...]
yuv2rgb.h
39
const uint8_t* const
pUV
, uint32_t* const output,
/frameworks/av/media/libstagefright/filters/
ColorConvert.h
29
uint8_t *pY, uint8_t *
pUV
, int32_t width, int32_t height,
33
uint8_t *pY, uint8_t *
pUV
, int32_t width, int32_t height,
ColorConvert.cpp
49
uint8_t *pY, uint8_t *
pUV
, int32_t width, int32_t height,
56
int32_t u = *(
pUV
+ (i/2) * width + bytes_per_pixel * (j/2));
57
int32_t v = *(
pUV
+ (i/2) * width + bytes_per_pixel * (j/2) + 1);
71
uint8_t *pY, uint8_t *
pUV
, int32_t width, int32_t height,
78
int32_t u = *(
pUV
+ (i/2) * width + bytes_per_pixel * (j/2));
79
int32_t v = *(
pUV
+ (i/2) * width + bytes_per_pixel * (j/2) + 1);
/external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTFixedPoint.cpp
59
if(mesh->
pUV
)
61
new_mesh->
pUV
= new VERTTYPE[mesh->nNumVertex*2];
63
new_mesh->
pUV
[i] = PVRTF2X(mesh->
pUV
[i]);
66
new_mesh->
pUV
= 0;
133
delete[] mesh->
pUV
;
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 756 milliseconds