Home
last modified time | relevance | path

Searched refs:y0 (Results 1 – 25 of 39) sorted by relevance

12

/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
502 y0 = (value >> 8) & 0xff; in util_format_uyvy_unpack_rgba_float()
506 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_uyvy_unpack_rgba_float()
519 y0 = (value >> 8) & 0xff; in util_format_uyvy_unpack_rgba_float()
523 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_uyvy_unpack_rgba_float()
543 uint8_t y0, y1, u, v; in util_format_vyuy_unpack_rgba_float() local
549 y0 = (value >> 8) & 0xff; in util_format_vyuy_unpack_rgba_float()
553 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_vyuy_unpack_rgba_float()
566 y0 = (value >> 8) & 0xff; in util_format_vyuy_unpack_rgba_float()
570 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]); in util_format_vyuy_unpack_rgba_float()
[all …]
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dastcenc_color_unquantize.cpp727 int y0, y1; in hdr_luminance_small_range_unpack() local
730 y0 = ((v1 & 0xE0) << 4) | ((v0 & 0x7F) << 2); in hdr_luminance_small_range_unpack()
735 y0 = ((v1 & 0xF0) << 4) | ((v0 & 0x7F) << 1); in hdr_luminance_small_range_unpack()
739 y1 += y0; in hdr_luminance_small_range_unpack()
743 output0 = vint4(y0 << 4, y0 << 4, y0 << 4, 0x7800); in hdr_luminance_small_range_unpack()
764 int y0, y1; in hdr_luminance_large_range_unpack() local
767 y0 = v0 << 4; in hdr_luminance_large_range_unpack()
772 y0 = (v1 << 4) + 8; in hdr_luminance_large_range_unpack()
776 output0 = vint4(y0 << 4, y0 << 4, y0 << 4, 0x7800); in hdr_luminance_large_range_unpack()
/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()
167 assert(rects[r].x0 < rects[r].x1 && rects[r].y0 < rects[r].y1); in setup_viewport_scissor()
246 float y0 = rects[r].y0 * y_scale - 1.0f; in create_vertex_buffer() local
254 { x0, y0, z, w }, in create_vertex_buffer()
257 { x1, y0, z, w }, in create_vertex_buffer()
259 { x0, y0, z, w }, in create_vertex_buffer()
Dvk_meta_clear.c275 .y0 = clear_rects[0].rect.offset.y, in vk_meta_clear_attachments()
296 .y0 = clear_rects[r].rect.offset.y, in vk_meta_clear_attachments()
332 .y0 = clear_rects[r].rect.offset.y, in vk_meta_clear_attachments()
Dvk_meta_blit_resolve.c647 dst_rect->y0 in do_blit()
651 dst_rect->y1 - dst_rect->y0 in do_blit()
757 &dst_rect.y0, &dst_rect.y1, in vk_meta_blit_image()
835 .y0 = regions[r].dstOffset.y, in vk_meta_resolve_image()
Dvk_meta.h42 uint32_t x0, y0, x1, y1; member
/hardware/google/gfxstream/third-party/glm/include/glm/gtx/
Dsimd_mat4.hpp61 float const & x0, float const & y0, float const & z0, float const & w0,
Dsimd_mat4.inl60 float const & x0, float const & y0, float const & z0, float const & w0, argument
66 this->Data[0] = fvec4SIMD(x0, y0, z0, w0);
Dsimd_quat.inl612 __m128 y0 = _mm_mul_ps(x3, c0); local
616 return _mm_sub_ps(_mm_add_ps(_mm_sub_ps(x, y0), y1), y2);
/hardware/google/gfxstream/third-party/glm/include/glm/detail/
Dtype_mat2x3.hpp38 T x0, T y0, T z0,
Dtype_mat3x4.hpp38 T x0, T y0, T z0, T w0,
Dtype_mat2x4.hpp38 T x0, T y0, T z0, T w0,
Dtype_mat4x2.hpp38 T x0, T y0,
Dtype_mat3x2.hpp38 T x0, T y0,
Dtype_mat4x3.hpp38 T const & x0, T const & y0, T const & z0,
Dtype_mat3x3.hpp37 T x0, T y0, T z0,
Dtype_mat4x4.hpp37 T const & x0, T const & y0, T const & z0, T const & w0,
Dtype_mat2x2.inl52 T const & x0, T const & y0, argument
56 this->value[0] = col_type(x0, y0);
Dtype_mat2x3.inl50 T x0, T y0, T z0, argument
54 this->value[0] = col_type(x0, y0, z0);
Dtype_mat2x4.inl51 T x0, T y0, T z0, T w0, argument
55 this->value[0] = col_type(x0, y0, z0, w0);
Dtype_mat3x2.inl54 T x0, T y0, argument
59 this->value[0] = col_type(x0, y0);
Dtype_mat3x4.inl54 T x0, T y0, T z0, T w0, argument
59 this->value[0] = col_type(x0, y0, z0, w0);
Dtype_mat3x3.inl56 T x0, T y0, T z0, argument
61 this->value[0] = col_type(x0, y0, z0);
Dtype_mat4x2.inl65 T x0, T y0, argument
71 this->value[0] = col_type(x0, y0);
/hardware/google/pixel/vibrator/cs40l25/
DVibrator.cpp185 float y0 = itr0->second; in createPwleMaxLevelLimitMap() local
196 float yp = y0 + ((y1 - y0) / (x1 - x0)) * (xp - x0); in createPwleMaxLevelLimitMap()

12