Home
last modified time | relevance | path

Searched refs:equation (Results 1 – 25 of 562) sorted by relevance

12345678910>>...23

/third_party/mesa3d/src/panfrost/lib/
Dpan_blend.c143 pan_blend_can_fixed_function(const struct pan_blend_equation equation, in pan_blend_can_fixed_function() argument
146 return !equation.blend_enable || in pan_blend_can_fixed_function()
147 (can_fixed_function_equation(equation.rgb_func, in pan_blend_can_fixed_function()
148 equation.rgb_src_factor, in pan_blend_can_fixed_function()
149 equation.rgb_invert_src_factor, in pan_blend_can_fixed_function()
150 equation.rgb_dst_factor, in pan_blend_can_fixed_function()
151 equation.rgb_invert_dst_factor, in pan_blend_can_fixed_function()
153 can_fixed_function_equation(equation.alpha_func, in pan_blend_can_fixed_function()
154 equation.alpha_src_factor, in pan_blend_can_fixed_function()
155 equation.alpha_invert_src_factor, in pan_blend_can_fixed_function()
[all …]
Dpan_blend.h62 struct pan_blend_equation equation; member
82 struct pan_blend_equation equation; member
105 pan_blend_can_fixed_function(const struct pan_blend_equation equation,
147 struct MALI_BLEND_EQUATION *equation);
150 pan_pack_blend(const struct pan_blend_equation equation);
/third_party/boost/libs/math/doc/sf/
Dbessel_introduction.qbk6 equation:
8 [equation bessel1]
10 where [nu] is the /order/ of the equation, and may be an arbitrary
15 Since this is a second order differential equation, there must be two
19 [equation bessel2]
27 [equation bessel3]
33 [equation bessel4]
35 [equation bessel5]
39 [equation bessel6]
41 [equation bessel7]
[all …]
Dbessel_ik.qbk31 [equation mbessel2]
33 [equation mbessel3]
126 [equation bessel21]
128 [equation bessel20]
130 [equation bessel17]
132 [equation bessel18]
136 [equation bessel22]
138 [equation bessel23]
140 [equation bessel24]
142 [equation bessel25]
[all …]
Dinv_hyper.qbk28 [equation special_functions_blurb1]
44 Hyperbolic cosine: [equation special_functions_blurb5]
46 Hyperbolic sine: [equation special_functions_blurb6]
48 Hyperbolic tangent: [equation special_functions_blurb7]
66 and can be computed as [equation special_functions_blurb15]
69 and can be computed (for __form5) as [equation special_functions_blurb17]
72 and can be computed as [equation special_functions_blurb18]
110 [equation acosh1]
121 [equation acosh2]
127 [equation acosh4]
[all …]
Dellint_introduction.qbk26 [equation ellint1]
38 [equation ellint2]
42 [equation ellint3]
46 [equation ellint4]
50 [equation ellint5]
98 [equation ellint6]
102 [equation ellint7]
106 [equation ellint8]
110 [equation ellint_d]
121 [equation ellint9]
[all …]
Dpolygamma.qbk24 [equation polygamma1]
61 [equation polygamma2]
66 [equation polygamma3]
71 [equation polygamma7]
81 [equation polygamma4]
88 [equation polygamma5]
92 [equation polygamma6]
98 [equation polygamma8]
100 [equation polygamma9]
Digamma.qbk63 [equation igamma4]
77 [equation igamma3]
91 [equation igamma2]
101 [equation igamma1]
147 1) [equation igamma5]
149 2) [equation igamma6]
151 3) [equation igamma7]
155 4) [equation igamma8]
162 5) [equation igamma9]
171 6) [equation igamma10]
[all …]
Dzeta.qbk35 [equation zeta1]
77 [equation zeta3]
81 [equation zeta6]
89 [equation zeta4]
95 [equation zeta5]
111 [equation zeta7]
113 [equation zeta8]
115 [equation zeta9]
/third_party/mesa3d/src/mesa/main/
Dclip.c57 GLfloat equation[4]; in _mesa_ClipPlane() local
65 equation[0] = (GLfloat) eq[0]; in _mesa_ClipPlane()
66 equation[1] = (GLfloat) eq[1]; in _mesa_ClipPlane()
67 equation[2] = (GLfloat) eq[2]; in _mesa_ClipPlane()
68 equation[3] = (GLfloat) eq[3]; in _mesa_ClipPlane()
81 _mesa_transform_vector( equation, equation, in _mesa_ClipPlane()
84 if (TEST_EQ_4V(ctx->Transform.EyeUserPlane[p], equation)) in _mesa_ClipPlane()
90 COPY_4FV(ctx->Transform.EyeUserPlane[p], equation); in _mesa_ClipPlane()
97 ctx->Driver.ClipPlane( ctx, plane, equation ); in _mesa_ClipPlane()
102 _mesa_GetClipPlane( GLenum plane, GLdouble *equation ) in _mesa_GetClipPlane() argument
[all …]
/third_party/boost/libs/proto/test/
Dconstrained_ops.cpp17 struct equation;
27 struct equation: struct
41 equation,
108 proto::assert_matches_not<equation>(i); // false in test_constrained_ops()
109 proto::assert_matches_not<equation>(j); // false in test_constrained_ops()
110 proto::assert_matches_not<equation>(i + i); // false in test_constrained_ops()
111 proto::assert_matches_not<equation>(j + j); // false in test_constrained_ops()
113 proto::assert_matches_not<equation>(i + j); // compile error (by design) in test_constrained_ops()
114 proto::assert_matches_not<equation>(j + i); // compile error (by design) in test_constrained_ops()
116 proto::assert_matches<equation>(i == j); // true in test_constrained_ops()
[all …]
/third_party/skia/src/gpu/
DGrBlend.h102 static constexpr bool GrBlendEquationIsAdvanced(GrBlendEquation equation) { in GrBlendEquationIsAdvanced() argument
103 return equation >= kFirstAdvancedGrBlendEquation in GrBlendEquationIsAdvanced()
104 && equation != kIllegal_GrBlendEquation; in GrBlendEquationIsAdvanced()
107 static constexpr bool GrBlendModifiesDst(GrBlendEquation equation, GrBlendCoeff srcCoeff, in GrBlendModifiesDst() argument
109 return (kAdd_GrBlendEquation != equation && kReverseSubtract_GrBlendEquation != equation) || in GrBlendModifiesDst()
117 static constexpr bool GrBlendShouldDisable(GrBlendEquation equation, GrBlendCoeff srcCoeff, in GrBlendShouldDisable() argument
119 return (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) && in GrBlendShouldDisable()
150 static constexpr bool GrBlendAllowsCoverageAsAlpha(GrBlendEquation equation, in GrBlendAllowsCoverageAsAlpha() argument
153 return GrBlendEquationIsAdvanced(equation) || in GrBlendAllowsCoverageAsAlpha()
154 !GrBlendModifiesDst(equation, srcCoeff, dstCoeff) || in GrBlendAllowsCoverageAsAlpha()
[all …]
/third_party/flutter/skia/src/gpu/
DGrBlend.h102 static constexpr bool GrBlendEquationIsAdvanced(GrBlendEquation equation) { in GrBlendEquationIsAdvanced() argument
103 return equation >= kFirstAdvancedGrBlendEquation in GrBlendEquationIsAdvanced()
104 && equation != kIllegal_GrBlendEquation; in GrBlendEquationIsAdvanced()
107 static constexpr bool GrBlendModifiesDst(GrBlendEquation equation, GrBlendCoeff srcCoeff, in GrBlendModifiesDst() argument
109 return (kAdd_GrBlendEquation != equation && kReverseSubtract_GrBlendEquation != equation) || in GrBlendModifiesDst()
140 static constexpr bool GrBlendAllowsCoverageAsAlpha(GrBlendEquation equation, in GrBlendAllowsCoverageAsAlpha() argument
143 return GrBlendEquationIsAdvanced(equation) || in GrBlendAllowsCoverageAsAlpha()
144 !GrBlendModifiesDst(equation, srcCoeff, dstCoeff) || in GrBlendAllowsCoverageAsAlpha()
145 ((kAdd_GrBlendEquation == equation || kReverseSubtract_GrBlendEquation == equation) && in GrBlendAllowsCoverageAsAlpha()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/fact_manager/
Ddata_synonym_and_id_equation_facts.cpp171 for (const auto& equation : GetEquations(rhs_dds[0])) { in AddEquationFactRecursive() local
172 if (equation.opcode == SpvOpISub) { in AddEquationFactRecursive()
174 if (synonymous_.IsEquivalent(*equation.operands[1], *rhs_dds[1])) { in AddEquationFactRecursive()
177 AddDataSynonymFactRecursive(lhs_dd, *equation.operands[0]); in AddEquationFactRecursive()
181 for (const auto& equation : GetEquations(rhs_dds[1])) { in AddEquationFactRecursive() local
182 if (equation.opcode == SpvOpISub) { in AddEquationFactRecursive()
184 if (synonymous_.IsEquivalent(*equation.operands[1], *rhs_dds[0])) { in AddEquationFactRecursive()
187 AddDataSynonymFactRecursive(lhs_dd, *equation.operands[0]); in AddEquationFactRecursive()
195 for (const auto& equation : GetEquations(rhs_dds[0])) { in AddEquationFactRecursive() local
196 if (equation.opcode == SpvOpIAdd) { in AddEquationFactRecursive()
[all …]
/third_party/spirv-tools/source/fuzz/fact_manager/
Ddata_synonym_and_id_equation_facts.cpp171 for (const auto& equation : GetEquations(rhs_dds[0])) { in AddEquationFactRecursive() local
172 if (equation.opcode == SpvOpISub) { in AddEquationFactRecursive()
174 if (synonymous_.IsEquivalent(*equation.operands[1], *rhs_dds[1])) { in AddEquationFactRecursive()
177 AddDataSynonymFactRecursive(lhs_dd, *equation.operands[0]); in AddEquationFactRecursive()
181 for (const auto& equation : GetEquations(rhs_dds[1])) { in AddEquationFactRecursive() local
182 if (equation.opcode == SpvOpISub) { in AddEquationFactRecursive()
184 if (synonymous_.IsEquivalent(*equation.operands[1], *rhs_dds[0])) { in AddEquationFactRecursive()
187 AddDataSynonymFactRecursive(lhs_dd, *equation.operands[0]); in AddEquationFactRecursive()
195 for (const auto& equation : GetEquations(rhs_dds[0])) { in AddEquationFactRecursive() local
196 if (equation.opcode == SpvOpIAdd) { in AddEquationFactRecursive()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/fact_manager/
Ddata_synonym_and_id_equation_facts.cpp171 for (const auto& equation : GetEquations(rhs_dds[0])) { in AddEquationFactRecursive() local
172 if (equation.opcode == SpvOpISub) { in AddEquationFactRecursive()
174 if (synonymous_.IsEquivalent(*equation.operands[1], *rhs_dds[1])) { in AddEquationFactRecursive()
177 AddDataSynonymFactRecursive(lhs_dd, *equation.operands[0]); in AddEquationFactRecursive()
181 for (const auto& equation : GetEquations(rhs_dds[1])) { in AddEquationFactRecursive() local
182 if (equation.opcode == SpvOpISub) { in AddEquationFactRecursive()
184 if (synonymous_.IsEquivalent(*equation.operands[1], *rhs_dds[0])) { in AddEquationFactRecursive()
187 AddDataSynonymFactRecursive(lhs_dd, *equation.operands[0]); in AddEquationFactRecursive()
195 for (const auto& equation : GetEquations(rhs_dds[0])) { in AddEquationFactRecursive() local
196 if (equation.opcode == SpvOpIAdd) { in AddEquationFactRecursive()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DGLES1State.cpp48 ClipPlaneParameters::ClipPlaneParameters(bool enabled, const angle::Vector4 &equation) in ClipPlaneParameters() argument
49 : enabled(enabled), equation(equation) in ClipPlaneParameters()
454 void GLES1State::setClipPlane(unsigned int plane, const GLfloat *equation) in setClipPlane() argument
458 mClipPlanes[plane].equation[0] = equation[0]; in setClipPlane()
459 mClipPlanes[plane].equation[1] = equation[1]; in setClipPlane()
460 mClipPlanes[plane].equation[2] = equation[2]; in setClipPlane()
461 mClipPlanes[plane].equation[3] = equation[3]; in setClipPlane()
464 void GLES1State::getClipPlane(unsigned int plane, GLfloat *equation) const in getClipPlane()
467 equation[0] = mClipPlanes[plane].equation[0]; in getClipPlane()
468 equation[1] = mClipPlanes[plane].equation[1]; in getClipPlane()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DGLES1State.cpp48 ClipPlaneParameters::ClipPlaneParameters(bool enabled, const angle::Vector4 &equation) in ClipPlaneParameters() argument
49 : enabled(enabled), equation(equation) in ClipPlaneParameters()
436 void GLES1State::setClipPlane(unsigned int plane, const GLfloat *equation) in setClipPlane() argument
440 mClipPlanes[plane].equation[0] = equation[0]; in setClipPlane()
441 mClipPlanes[plane].equation[1] = equation[1]; in setClipPlane()
442 mClipPlanes[plane].equation[2] = equation[2]; in setClipPlane()
443 mClipPlanes[plane].equation[3] = equation[3]; in setClipPlane()
446 void GLES1State::getClipPlane(unsigned int plane, GLfloat *equation) const in getClipPlane()
449 equation[0] = mClipPlanes[plane].equation[0]; in getClipPlane()
450 equation[1] = mClipPlanes[plane].equation[1]; in getClipPlane()
[all …]
/third_party/mesa3d/src/panfrost/vulkan/
Dpanvk_vX_shader.c337 options.rt[rt].colormask = rt_state->equation.color_mask; in panvk_lower_blend()
339 if (!rt_state->equation.blend_enable) { in panvk_lower_blend()
351 options.rt[rt].rgb.func = rt_state->equation.rgb_func; in panvk_lower_blend()
352 options.rt[rt].rgb.src_factor = rt_state->equation.rgb_src_factor; in panvk_lower_blend()
353 options.rt[rt].rgb.invert_src_factor = rt_state->equation.rgb_invert_src_factor; in panvk_lower_blend()
354 options.rt[rt].rgb.dst_factor = rt_state->equation.rgb_dst_factor; in panvk_lower_blend()
355 options.rt[rt].rgb.invert_dst_factor = rt_state->equation.rgb_invert_dst_factor; in panvk_lower_blend()
356 options.rt[rt].alpha.func = rt_state->equation.alpha_func; in panvk_lower_blend()
357 options.rt[rt].alpha.src_factor = rt_state->equation.alpha_src_factor; in panvk_lower_blend()
358 options.rt[rt].alpha.invert_src_factor = rt_state->equation.alpha_invert_src_factor; in panvk_lower_blend()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/extensions/
DEXT_blend_minmax.txt26 equation. While this document defines only two new equations, the
38 equation includes the parameters specified by BlendFunc. (The min
70 The GL Specification defines a single blending equation. This
71 extension introduces a blend equation mode that is specified by calling
73 value FUNC_ADD_EXT specifies that the blending equation defined in
74 the GL Specification be used. This equation is
86 blending equation becomes
91 blending equation becomes
95 In all cases the blending equation is evaluated separately for each
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_blend_minmax.txt26 equation. While this document defines only two new equations, the
38 equation includes the parameters specified by BlendFunc. (The min
70 The GL Specification defines a single blending equation. This
71 extension introduces a blend equation mode that is specified by calling
73 value FUNC_ADD_EXT specifies that the blending equation defined in
74 the GL Specification be used. This equation is
86 blending equation becomes
91 blending equation becomes
95 In all cases the blending equation is evaluated separately for each
/third_party/openGLES/extensions/EXT/
DEXT_blend_minmax.txt26 equation. While this document defines only two new equations, the
38 equation includes the parameters specified by BlendFunc. (The min
70 The GL Specification defines a single blending equation. This
71 extension introduces a blend equation mode that is specified by calling
73 value FUNC_ADD_EXT specifies that the blending equation defined in
74 the GL Specification be used. This equation is
86 blending equation becomes
91 blending equation becomes
95 In all cases the blending equation is evaluated separately for each
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fNegativeAdvancedBlendEquationTests.cpp81 std::string getShaderLayoutEquation (BlendEquation equation) in getShaderLayoutEquation() argument
83 switch (equation) in getShaderLayoutEquation()
107 glw::GLenum getEquation (BlendEquation equation) in getEquation() argument
109 switch (equation) in getEquation()
147 std::string generateFragmentShaderSource (NegativeTestContext& ctx, BlendEquation equation) in generateFragmentShaderSource() argument
155 << "layout(" << getShaderLayoutEquation(equation) << ") out;\n" in generateFragmentShaderSource()
165 glu::ProgramSources generateProgramSources (NegativeTestContext& ctx, BlendEquation equation) in generateProgramSources() argument
169 << glu::FragmentSource(generateFragmentShaderSource(ctx, equation)); in generateProgramSources()
/third_party/boost/libs/math/doc/distributions/
Dskew_normal.qbk39 [equation normal01_pdf]
43 [equation normal01_cdf]
49 [equation skew_normal_pdf0]
58 [equation skew_normal_pdf]
62 [equation skew_normal_cdf]
103 [equation skew_normal_skewness]
167 [[pdf][Using:[equation skew_normal_pdf] ]]
168 [[cdf][Using: [equation skew_normal_cdf][br]
177 [[mean][[equation skew_normal_mean]]]
179 [[variance][[equation skew_normal_variance] ]]
[all …]
/third_party/mesa3d/src/amd/common/
Dac_surface_meta_address_test.c122 const uint16_t *equation, in gfx10_meta_addr_from_coord() argument
143 if (equation[i*4+c] != 0) { in gfx10_meta_addr_from_coord()
144 unsigned mask = equation[i*4+c]; in gfx10_meta_addr_from_coord()
176 const uint16_t *equation, unsigned bpp, in gfx10_dcc_addr_from_coord() argument
188 return gfx10_meta_addr_from_coord(info, equation, in gfx10_dcc_addr_from_coord()
266 assert(dout.equation.gfx9.num_bits <= ARRAY_SIZE(eq.u.gfx9.bit)); in one_dcc_address_test()
270 assert(dout.equation.gfx10_bits[i] == 0); in one_dcc_address_test()
273 assert(dout.equation.gfx10_bits[i] == 0); in one_dcc_address_test()
288 … addr = gfx9_meta_addr_from_coord(info, &dout.equation.gfx9, dout.metaBlkWidth, dout.metaBlkHeight, in one_dcc_address_test()
294 … gfx9_meta_addr_from_coord(info, &dout.equation.gfx9, dout.metaBlkWidth, dout.metaBlkHeight, in one_dcc_address_test()
[all …]

12345678910>>...23