Searched defs:src_y0 (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_mipmap_tree.c984 int src_y0 = 0; local
994 src_x0, src_y0,
1003 src_x0, src_y0,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_mipmap_tree.c984 int src_y0 = 0; local
994 src_x0, src_y0,
1003 src_x0, src_y0,
H A Dbrw_blorp_blit.cpp129 int src_x0, int src_y0,
137 src_x0, src_y0,
1636 GLuint src_x0, GLuint src_y0,
1759 wm_push_consts.y_transform.setup(src_y0, dst_y0, dst_y1, mirror_y);
124 brw_blorp_blit_miptrees(struct intel_context *intel, struct intel_mipmap_tree *src_mt, unsigned src_level, unsigned src_layer, struct intel_mipmap_tree *dst_mt, unsigned dst_level, unsigned dst_layer, int src_x0, int src_y0, int dst_x0, int dst_y0, int dst_x1, int dst_y1, bool mirror_x, bool mirror_y) argument
1631 brw_blorp_blit_params(struct brw_context *brw, struct intel_mipmap_tree *src_mt, unsigned src_level, unsigned src_layer, struct intel_mipmap_tree *dst_mt, unsigned dst_level, unsigned dst_layer, GLuint src_x0, GLuint src_y0, GLuint dst_x0, GLuint dst_y0, GLuint dst_x1, GLuint dst_y1, bool mirror_x, bool mirror_y) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_mipmap_tree.c984 int src_y0 = 0; local
994 src_x0, src_y0,
1003 src_x0, src_y0,
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_mipmap_tree.c984 int src_y0 = 0; local
994 src_x0, src_y0,
1003 src_x0, src_y0,
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_mipmap_tree.c984 int src_y0 = 0; local
994 src_x0, src_y0,
1003 src_x0, src_y0,
H A Dbrw_blorp_blit.cpp129 int src_x0, int src_y0,
137 src_x0, src_y0,
1636 GLuint src_x0, GLuint src_y0,
1759 wm_push_consts.y_transform.setup(src_y0, dst_y0, dst_y1, mirror_y);
124 brw_blorp_blit_miptrees(struct intel_context *intel, struct intel_mipmap_tree *src_mt, unsigned src_level, unsigned src_layer, struct intel_mipmap_tree *dst_mt, unsigned dst_level, unsigned dst_layer, int src_x0, int src_y0, int dst_x0, int dst_y0, int dst_x1, int dst_y1, bool mirror_x, bool mirror_y) argument
1631 brw_blorp_blit_params(struct brw_context *brw, struct intel_mipmap_tree *src_mt, unsigned src_level, unsigned src_layer, struct intel_mipmap_tree *dst_mt, unsigned dst_level, unsigned dst_layer, GLuint src_x0, GLuint src_y0, GLuint dst_x0, GLuint dst_y0, GLuint dst_x1, GLuint dst_y1, bool mirror_x, bool mirror_y) argument
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_mipmap_tree.c984 int src_y0 = 0; local
994 src_x0, src_y0,
1003 src_x0, src_y0,
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Drow_neon.cc3061 void SobelXRow_NEON(const uint8* src_y0, const uint8* src_y1, argument
3090 : "+r"(src_y0), // %0
3105 void SobelYRow_NEON(const uint8* src_y0, const uint8* src_y1, argument
3134 : "+r"(src_y0), // %0
H A Drow_neon64.cc3238 void SobelXRow_NEON(const uint8* src_y0, const uint8* src_y1, argument
3267 : "+r"(src_y0), // %0
3284 void SobelYRow_NEON(const uint8* src_y0, const uint8* src_y1, argument
3313 : "+r"(src_y0), // %0
H A Drow_common.cc852 void SobelXRow_C(const uint8* src_y0, const uint8* src_y1, const uint8* src_y2, argument
856 int a = src_y0[i];
859 int a_sub = src_y0[i + 2];
870 void SobelYRow_C(const uint8* src_y0, const uint8* src_y1, argument
874 int a = src_y0[i + 0];
875 int b = src_y0[i + 1];
876 int c = src_y0[i + 2];
H A Drow_posix.cc4746 void SobelXRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
4786 : "+r"(src_y0), // %0
4808 void SobelYRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
4847 : "+r"(src_y0), // %0
H A Drow_win.cc5626 void SobelXRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
5631 mov eax, [esp + 8 + 4] // src_y0
5643 movq xmm0, qword ptr [eax] // read 8 pixels from src_y0[0]
5644 movq xmm1, qword ptr [eax + 2] // read 8 pixels from src_y0[2]
5683 void SobelYRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
5687 mov eax, [esp + 4 + 4] // src_y0
5697 movq xmm0, qword ptr [eax] // read 8 pixels from src_y0[0]
5702 movq xmm1, qword ptr [eax + 1] // read 8 pixels from src_y0[1]
5707 movq xmm2, qword ptr [eax + 2] // read 8 pixels from src_y0[2]
/external/chromium_org/third_party/libyuv/source/
H A Drow_neon.cc3062 void SobelXRow_NEON(const uint8* src_y0, const uint8* src_y1, argument
3091 : "+r"(src_y0), // %0
3106 void SobelYRow_NEON(const uint8* src_y0, const uint8* src_y1, argument
3135 : "+r"(src_y0), // %0
H A Drow_common.cc852 void SobelXRow_C(const uint8* src_y0, const uint8* src_y1, const uint8* src_y2, argument
856 int a = src_y0[i];
859 int a_sub = src_y0[i + 2];
870 void SobelYRow_C(const uint8* src_y0, const uint8* src_y1, argument
874 int a = src_y0[i + 0];
875 int b = src_y0[i + 1];
876 int c = src_y0[i + 2];
H A Drow_posix.cc4746 void SobelXRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
4786 : "+r"(src_y0), // %0
4808 void SobelYRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
4847 : "+r"(src_y0), // %0
H A Drow_win.cc5627 void SobelXRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
5632 mov eax, [esp + 8 + 4] // src_y0
5644 movq xmm0, qword ptr [eax] // read 8 pixels from src_y0[0]
5645 movq xmm1, qword ptr [eax + 2] // read 8 pixels from src_y0[2]
5684 void SobelYRow_SSE2(const uint8* src_y0, const uint8* src_y1, argument
5688 mov eax, [esp + 4 + 4] // src_y0
5698 movq xmm0, qword ptr [eax] // read 8 pixels from src_y0[0]
5703 movq xmm1, qword ptr [eax + 1] // read 8 pixels from src_y0[1]
5708 movq xmm2, qword ptr [eax + 2] // read 8 pixels from src_y0[2]

Completed in 359 milliseconds