Home
last modified time | relevance | path

Searched refs:y1 (Results 1 – 25 of 61) sorted by relevance

123

/hardware/google/gfxstream/guest/mesa/src/util/format/
Du_format_yuv.c496 uint8_t y0, y1, u, v; in util_format_uyvy_unpack_rgba_float() local
504 y1 = (value >> 24) & 0xff; in util_format_uyvy_unpack_rgba_float()
510 util_format_yuv_to_rgb_float(y1, u, v, &dst[0], &dst[1], &dst[2]); in util_format_uyvy_unpack_rgba_float()
521 y1 = (value >> 24) & 0xff; in util_format_uyvy_unpack_rgba_float()
543 uint8_t y0, y1, u, v; in util_format_vyuy_unpack_rgba_float() local
551 y1 = (value >> 24) & 0xff; in util_format_vyuy_unpack_rgba_float()
557 util_format_yuv_to_rgb_float(y1, u, v, &dst[0], &dst[1], &dst[2]); in util_format_vyuy_unpack_rgba_float()
568 y1 = (value >> 24) & 0xff; in util_format_vyuy_unpack_rgba_float()
590 uint8_t y0, y1, u, v; in util_format_uyvy_unpack_rgba_8unorm() local
598 y1 = (value >> 24) & 0xff; in util_format_uyvy_unpack_rgba_8unorm()
[all …]
/hardware/google/gfxstream/host/apigen-codec-common/X11/
DXregion.h52 short x1, x2, y1, y2; member
93 (r1)->y2 > (r2)->y1 && \
94 (r1)->y1 < (r2)->y2)
102 if((r)->y1 < (idRect)->extents.y1)\
103 (idRect)->extents.y1 = (r)->y1;\
130 ((R-1)->y1 == (Ry1)) &&\
140 (r)->y1 = (ry1);\
156 (r)->y1 = (ry1);\
172 ( ((r).y1 <= y)) )
DXprotostr.h55 INT16 x1 B16, y1 B16, x2 B16, y2 B16;
/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/
Dvk_meta_draw_rects.c163 assert(rects[0].x0 < rects[0].x1 && rects[0].y0 < rects[0].y1); in setup_viewport_scissor()
164 uint32_t xbits = rects[0].x1 - 1, ybits = rects[0].y1 - 1; in setup_viewport_scissor()
167 assert(rects[r].x0 < rects[r].x1 && rects[r].y0 < rects[r].y1); in setup_viewport_scissor()
169 ybits |= rects[r].y1 - 1; in setup_viewport_scissor()
248 float y1 = rects[r].y1 * y_scale - 1.0f; in create_vertex_buffer() local
253 { x0, y1, z, w }, in create_vertex_buffer()
255 { x1, y1, z, w }, in create_vertex_buffer()
258 { x1, y1, z, w }, in create_vertex_buffer()
Dvk_meta_clear.c276 .y1 = clear_rects[0].rect.offset.y + in vk_meta_clear_attachments()
297 .y1 = clear_rects[r].rect.offset.y + in vk_meta_clear_attachments()
333 .y1 = clear_rects[r].rect.offset.y + in vk_meta_clear_attachments()
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dastcenc_color_unquantize.cpp727 int y0, y1; in hdr_luminance_small_range_unpack() local
731 y1 = (v1 & 0x1F) << 2; in hdr_luminance_small_range_unpack()
736 y1 = (v1 & 0xF) << 1; in hdr_luminance_small_range_unpack()
739 y1 += y0; in hdr_luminance_small_range_unpack()
740 if (y1 > 0xFFF) in hdr_luminance_small_range_unpack()
741 y1 = 0xFFF; in hdr_luminance_small_range_unpack()
744 output1 = vint4(y1 << 4, y1 << 4, y1 << 4, 0x7800); in hdr_luminance_small_range_unpack()
764 int y0, y1; in hdr_luminance_large_range_unpack() local
768 y1 = v1 << 4; in hdr_luminance_large_range_unpack()
773 y1 = (v0 << 4) - 8; in hdr_luminance_large_range_unpack()
[all …]
/hardware/google/gfxstream/guest/OpenglSystemCommon/
DFormatConversions.cpp255 signed y1 = (signed)yv12_y[i] - 16; in yv12_to_rgb565() local
264 signed tmp1 = y1 * 298; in yv12_to_rgb565()
301 signed y1 = (signed)yv12_y[i] - 16; in yv12_to_rgb888() local
305 signed r1 = clamp_rgb(1 * (1.1643835616438356 * y1 + 1.5960267857142856 * v)); in yv12_to_rgb888()
306 …signed g1 = clamp_rgb(1 * (1.1643835616438356 * y1 - 0.39176229009491365 * u * 0.97 - 0.812967647… in yv12_to_rgb888()
307 signed b1 = clamp_rgb(1 * (1.1643835616438356 * y1 + 2.017232142857143 * u * 0.97)); in yv12_to_rgb888()
339 signed y1 = (signed)yv12_y[i] - 16; in yuv420p_to_rgb888() local
348 signed tmp1 = y1 * 298; in yuv420p_to_rgb888()
/hardware/google/graphics/common/libhwc2.1/libdevice/
DBrightnessController.h346 static inline float LinearInterpolation(float x, float x1, float x2, float y1, float y2) { in LinearInterpolation() argument
352 if (y2 == y1) { in LinearInterpolation()
354 return y1; in LinearInterpolation()
362 return y1 + (y2 - y1) * t; in LinearInterpolation()
/hardware/google/gfxstream/third-party/glm/include/glm/gtx/
Dfast_exponential.inl100 float y1 = (x - 1.0f) / (x + 1.0f);
101 float y2 = y1 * y1;
102 return 2.0f * y1 * (1.0f + y2 * (0.3333333333f + y2 * (0.2f + y2 * 0.1428571429f)));
Dsimd_mat4.hpp62 float const & x1, float const & y1, float const & z1, float const & w1,
/hardware/google/gfxstream/host/apigen-codec-common/X11/extensions/
DXfixes.h258 XFixesCreatePointerBarrier(Display *dpy, Window w, int x1, int y1,
263 XFixesCreatePointerBarrierVelocity(Display *dpy, Window w, int x1, int y1,
DXKBgeom.h92 short x1,y1; member
96 #define XkbBoundsHeight(b) (((b)->y2)-((b)->y1))
/hardware/google/gfxstream/third-party/glm/include/glm/detail/
Dtype_mat2x3.hpp39 T x1, T y1, T z1);
48 X1 x1, Y1 y1, Z1 z1,
Dtype_mat3x2.hpp39 T x1, T y1,
53 X1 x1, Y1 y1,
Dtype_mat4x2.hpp39 T x1, T y1,
56 X1 x1, Y1 y1,
Dtype_mat3x4.hpp39 T x1, T y1, T z1, T w1,
53 X1 x1, Y1 y1, Z1 z1, W1 w1,
Dtype_mat2x4.hpp39 T x1, T y1, T z1, T w1);
50 X1 x1, Y1 y1, Z1 z1, W1 w1,
Dtype_mat2x2.hpp37 T const & x1, T const & y1,
47 U const & x1, V const & y1,
Dtype_mat4x3.hpp39 T const & x1, T const & y1, T const & z1,
56 X1 const & x1, Y1 const & y1, Z1 const & z1,
Dtype_mat3x3.hpp38 T x1, T y1, T z1,
52 X1 x1, Y1 y1, Z1 z1,
Dtype_mat4x4.hpp38 T const & x1, T const & y1, T const & z1, T const & w1,
55 X1 const & x1, Y1 const & y1, Z1 const & z1, W1 const & w1,
Dtype_mat2x2.inl53 T const & x1, T const & y1 argument
57 this->value[1] = col_type(x1, y1);
73 X1 const & x1, Y1 const & y1, argument
77 this->value[0] = col_type(static_cast<T>(x1), value_type(y1));
Dtype_mat2x3.inl51 T x1, T y1, T z1 argument
55 this->value[1] = col_type(x1, y1, z1);
73 X1 x1, Y1 y1, Z1 z1, argument
77 this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1));
Dtype_mat2x4.inl52 T x1, T y1, T z1, T w1 argument
56 this->value[1] = col_type(x1, y1, z1, w1);
74 X1 x1, Y1 y1, Z1 z1, W1 w1, argument
78 this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1), value_type(w1));
Dtype_mat3x2.inl55 T x1, T y1, argument
60 this->value[1] = col_type(x1, y1);
86 X1 x1, Y1 y1, argument
91 this->value[0] = col_type(static_cast<T>(x1), value_type(y1));

123