Home
last modified time | relevance | path

Searched refs:m_y (Results 1 – 19 of 19) sorted by relevance

/third_party/boost/boost/math/interpolators/detail/
Dwhittaker_shannon_detail.hpp20 …whittaker_shannon_detail(RandomAccessContainer&& y, Real const & t0, Real const & h) : m_y{std::mo… in whittaker_shannon_detail()
22 for (size_t i = 1; i < m_y.size(); i += 2)
24 m_y[i] = -m_y[i];
35 auto it = m_y.begin(); in operator ()()
39 auto end = m_y.end(); in operator ()()
53 return -m_y[i]; in operator ()()
55 return m_y[i]; in operator ()()
69 long n = m_y.size(); in prime()
74 s += m_y[i]/(j-i); in prime()
86 auto it = m_y.begin(); in prime()
[all …]
Dbarycentric_rational_detail.hpp44 return std::move(m_y); in return_y()
52 std::vector<Real> m_y; member in boost::math::detail::barycentric_rational_imp
69 m_y.resize(n); in barycentric_rational_imp()
86 m_y[i] = *start_y; in barycentric_rational_imp()
92 …Real>&& x, std::vector<Real>&& y,size_t approximation_order) : m_x(std::move(x)), m_y(std::move(y)) in barycentric_rational_imp()
94 …BOOST_ASSERT_MSG(m_x.size() == m_y.size(), "There must be the same number of abscissas and ordinat… in barycentric_rational_imp()
164 return m_y[i]; in operator ()()
167 numerator += t*m_y[i]; in operator ()()
202 sum += m_w[j]*(m_y[i] - m_y[j])/(m_x[i] - m_x[j]); in prime()
207 Real diff = (rx - m_y[i])/(x-m_x[i]); in prime()
/third_party/boost/libs/log/example/doc/
Dextension_filter_parser_custom_rel.cpp37 float m_x, m_y; member
39 point() : m_x(0.0f), m_y(0.0f) {} in point()
40 point(float x, float y) : m_x(x), m_y(y) {} in point()
56 (left.m_y - epsilon <= right.m_y && left.m_y + epsilon >= right.m_y); in operator ==()
68 strm << "(" << p.m_x << ", " << p.m_y << ")"; in operator <<()
79 strm >> left_brace >> p.m_x >> comma >> p.m_y >> right_brace; in operator >>()
128 p->m_y >= r.m_top_left.m_y && p->m_y <= r.m_bottom_right.m_y; in is_in_rectangle()
Dextension_filter_parser.cpp38 float m_x, m_y; member
40 point() : m_x(0.0f), m_y(0.0f) {} in point()
41 point(float x, float y) : m_x(x), m_y(y) {} in point()
58 (left.m_y - epsilon <= right.m_y && left.m_y + epsilon >= right.m_y); in operator ==()
70 strm << "(" << p.m_x << ", " << p.m_y << ")"; in operator <<()
81 strm >> left_brace >> p.m_x >> comma >> p.m_y >> right_brace; in operator >>()
Dextension_formatter_parser.cpp37 float m_x, m_y; member
39 point() : m_x(0.0f), m_y(0.0f) {} in point()
40 point(float x, float y) : m_x(x), m_y(y) {} in point()
46 strm << "(" << p.m_x << ", " << p.m_y << ")"; in operator <<()
77 m_format % p.m_x % p.m_y; in operator ()()
/third_party/boost/libs/geometry/example/
Dc01_custom_point_example.cpp44 my_class_ro(double x, double y) : m_x(x), m_y(y) {} in my_class_ro()
46 double y() const { return m_y; } in y()
48 double m_x, m_y; member in my_class_ro
56 const double& y() const { return m_y; } in y()
58 double& y() { return m_y; } in y()
60 double m_x, m_y; member in my_class_rw
68 const double get_y() const { return m_y; } in get_y()
70 void set_y(double v) { m_y = v; } in set_y()
72 double m_x, m_y; member in my_class_gs
/third_party/vk-gl-cts/framework/common/
DtcuSurfaceAccess.cpp32 , m_y (y) in SurfaceAccess()
42 , m_y (0) in SurfaceAccess()
52 , m_y (parent.m_y + y) in SurfaceAccess()
DtcuSurfaceAccess.hpp66 int m_y; member in tcu::SurfaceAccess
74 m_surface->setPixel(m_x+x, m_y+y, toRGBAMasked(color, m_colorMask)); in setPixel()
/third_party/boost/boost/compute/types/
Dcomplex.hpp93 m_y(y) in invoked_complex_multiplies()
98 Arg2 m_y; member
108 << "(" << expr.m_x << ".x*" << expr.m_y << ".x-" in operator <<()
109 << expr.m_x << ".y*" << expr.m_y << ".y," in operator <<()
110 << expr.m_x << ".y*" << expr.m_y << ".x+" in operator <<()
111 << expr.m_x << ".x*" << expr.m_y << ".y" << ")"; in operator <<()
/third_party/boost/libs/compute/include/boost/compute/types/
Dcomplex.hpp93 m_y(y) in invoked_complex_multiplies()
98 Arg2 m_y; member
108 << "(" << expr.m_x << ".x*" << expr.m_y << ".x-" in operator <<()
109 << expr.m_x << ".y*" << expr.m_y << ".y," in operator <<()
110 << expr.m_x << ".y*" << expr.m_y << ".x+" in operator <<()
111 << expr.m_x << ".x*" << expr.m_y << ".y" << ")"; in operator <<()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
DvktDrawScissorTests.cpp58 : m_x(x), m_y(y), m_width(width), m_height(height), m_color(color) in ColorQuad()
63 deUint32 m_y; member
73 int top = quad.m_y; in scissorQuad()
74 int bottom = quad.m_y + quad.m_height; in scissorQuad()
133 …eft (-1.0f + scaleWidth * (float)m_quad.m_x, -1.0f + scaleHeight * (float)m_quad.m_y, 0.0f, 1.0f); in getVertices()
134 …Width * (float)(m_quad.m_x + m_quad.m_width), -1.0f + scaleHeight * (float)m_quad.m_y, 0.0f, 1.0f); in getVertices()
135 ….0f + scaleWidth * (float)m_quad.m_x, -1.0f + scaleHeight * (float)(m_quad.m_y + m_quad.m_height),… in getVertices()
136 …(float)(m_quad.m_x + m_quad.m_width), -1.0f + scaleHeight * (float)(m_quad.m_y + m_quad.m_height),… in getVertices()
183 makeRect2D(m_quad.m_x, m_quad.m_y, m_quad.m_width, m_quad.m_height), // VkRect2D rect in addCommands()
584 …clear(getSubregion(refImage.getAccess(), scissoredQuad.m_x, scissoredQuad.m_y, 0, scissoredQuad.m_… in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/compute/
DvktComputeZeroInitializeWorkgroupMemoryTests.cpp1058 m_y(y), in SpecializeWorkgroupInstance()
1065 deUint32 m_y; member in vkt::compute::__anoned0c3eac0111::SpecializeWorkgroupInstance
1078 m_y(y), in SpecializeWorkgroupTest()
1086 return new SpecializeWorkgroupInstance(context, m_x, m_y, m_z); in createInstance()
1091 deUint32 m_y; member in vkt::compute::__anoned0c3eac0111::SpecializeWorkgroupTest
1102 if (m_x * m_y * m_z > properties.limits.maxComputeWorkGroupInvocations) in checkSupport()
1128 const deUint32 size = (deUint32)sizeof(deUint32) * m_x * m_y * m_z; in iterate()
1129 return runCompute(m_context, size, 1, 1, 1, {m_x, m_y, m_z}); in iterate()
/third_party/boost/libs/python/doc/reference/
Dinit.qbk72 X(int x, Y* y) : m_y(y) {}
75 Y* m_y;
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_marmalade.cpp143 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
145 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_marmalade.cpp137 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
139 io.MouseWheel += pEvent->m_y; in ImGui_Marmalade_PointerButtonEventCallback()
/third_party/ffmpeg/libswscale/x86/
Dyuv_2_rgb.asm80 %define m_y m6
142 movu m_y, [py_2indexq + 2 * indexq]
350 movu m_y, [py_2indexq + 2 * indexq + 8 * time_num]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cShaderSubroutineTests.cpp3716 …gl.uniform4f(input_data_location, expected_results[0].m_x, expected_results[0].m_y, expected_resul… in testDraw()
3737 results[0].m_y = feedback_data[1]; in testDraw()
3742 results[1].m_y = feedback_data[5]; in testDraw()
3747 results[2].m_y = feedback_data[9]; in testDraw()
3752 results[3].m_y = feedback_data[13]; in testDraw()
3757 results[4].m_y = feedback_data[17]; in testDraw()
4158 gl.uniform4f(m_uniform_locations[i], input_data[i].m_x, input_data[i].m_y, input_data[i].m_z, in testDraw()
4181 out_first_routine_result.m_y = float_ptr[1]; in testDraw()
4187 out_second_routine_result.m_y = float_ptr[5]; in testDraw()
4193 out_third_routine_result.m_y = float_ptr[9]; in testDraw()
[all …]
Dgl4cShaderSubroutineTests.hpp169 vec4(T x, T y, T z, T w) : m_x(x), m_y(y), m_z(z), m_w(w) in vec4()
178 result = result && compare(m_y, val.m_y); in operator ==()
187 message << "[ " << m_x << ", " << m_y << ", " << m_z << ", " << m_w << " ]"; in log()
191 T m_y; member
/third_party/vk-gl-cts/modules/egl/
DteglGLES2SharingThreadedTests.cpp1059 GLint m_y; member in deqp::egl::GLES2ThreadTest::CopyTexImage2D
1071 , m_y (y) in CopyTexImage2D()
1091 …URE_2D, " << m_level << ", " << m_internalFormat << ", " << m_x << ", " << m_y << ", " << m_width … in exec()
1092 …GLU_CHECK_GLW_CALL(thread.gl, copyTexImage2D(GL_TEXTURE_2D, m_level, m_internalFormat, m_x, m_y, m… in exec()
1112 GLint m_y; member in deqp::egl::GLES2ThreadTest::CopyTexSubImage2D
1124 , m_y (y) in CopyTexSubImage2D()
1142 …_level << ", " << m_xoffset << ", " << m_yoffset << ", " << m_x << ", " << m_y << ", " << m_width … in exec()
1143 …d.gl, copyTexSubImage2D(GL_TEXTURE_2D, m_level, m_xoffset, m_yoffset, m_x, m_y, m_width, m_height)… in exec()
1840 int m_y; member in deqp::egl::GLES2ThreadTest::ReadPixels
1851 , m_y (y) in ReadPixels()
[all …]