Home
last modified time | relevance | path

Searched refs:notEqual (Results 1 – 25 of 1541) sorted by relevance

12345678910>>...62

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/test/java/org/springframework/beans/factory/support/
H A DDefinitionMetadataEqualsHashCodeTests.java34 RootBeanDefinition notEqual = new RootBeanDefinition(String.class); in testRootBeanDefinitionEqualsAndHashCode() local
38 setBaseProperties(notEqual); in testRootBeanDefinitionEqualsAndHashCode()
41 assertEqualsContract(master, equal, notEqual, subclass); in testRootBeanDefinitionEqualsAndHashCode()
48 ChildBeanDefinition notEqual = new ChildBeanDefinition("bar"); in testChildBeanDefinitionEqualsAndHashCode() local
52 setBaseProperties(notEqual); in testChildBeanDefinitionEqualsAndHashCode()
55 assertEqualsContract(master, equal, notEqual, subclass); in testChildBeanDefinitionEqualsAndHashCode()
62 RuntimeBeanReference notEqual = new RuntimeBeanReference("someOtherName"); in testRuntimeBeanReference() local
64 assertEqualsContract(master, equal, notEqual, subclass); in testRuntimeBeanReference()
90 private void assertEqualsContract(Object master, Object equal, Object notEqual, Object subclass) { in assertEqualsContract() argument
92 assertFalse("Should not be equal", master.equals(notEqual)); in assertEqualsContract()
/dports/emulators/mess/mame-mame0226/3rdparty/glm/test/gtx/
H A Dgtx_scalar_relational.cpp109 Error += glm::notEqual(0, 1) ? 0 : 1; in test_notEqual()
110 Error += glm::notEqual(1, 0) ? 0 : 1; in test_notEqual()
111 Error += glm::notEqual(0, 0) ? 1 : 0; in test_notEqual()
112 Error += glm::notEqual(1, 1) ? 1 : 0; in test_notEqual()
113 Error += glm::notEqual(0.0f, 1.0f) ? 0 : 1; in test_notEqual()
114 Error += glm::notEqual(1.0f, 0.0f) ? 0 : 1; in test_notEqual()
115 Error += glm::notEqual(0.0f, 0.0f) ? 1 : 0; in test_notEqual()
117 Error += glm::notEqual(0.0, 1.0) ? 0 : 1; in test_notEqual()
118 Error += glm::notEqual(1.0, 0.0) ? 0 : 1; in test_notEqual()
119 Error += glm::notEqual(0.0, 0.0) ? 1 : 0; in test_notEqual()
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/glm/test/gtx/
H A Dgtx_scalar_relational.cpp109 Error += glm::notEqual(0, 1) ? 0 : 1; in test_notEqual()
110 Error += glm::notEqual(1, 0) ? 0 : 1; in test_notEqual()
111 Error += glm::notEqual(0, 0) ? 1 : 0; in test_notEqual()
112 Error += glm::notEqual(1, 1) ? 1 : 0; in test_notEqual()
113 Error += glm::notEqual(0.0f, 1.0f) ? 0 : 1; in test_notEqual()
114 Error += glm::notEqual(1.0f, 0.0f) ? 0 : 1; in test_notEqual()
115 Error += glm::notEqual(0.0f, 0.0f) ? 1 : 0; in test_notEqual()
117 Error += glm::notEqual(0.0, 1.0) ? 0 : 1; in test_notEqual()
118 Error += glm::notEqual(1.0, 0.0) ? 0 : 1; in test_notEqual()
119 Error += glm::notEqual(0.0, 0.0) ? 1 : 0; in test_notEqual()
[all …]
/dports/graphics/nanort/nanort-b1feea8/examples/common/glm/test/gtx/
H A Dgtx_scalar_relational.cpp110 Error += glm::notEqual(0, 1) ? 0 : 1; in test_notEqual()
111 Error += glm::notEqual(1, 0) ? 0 : 1; in test_notEqual()
112 Error += glm::notEqual(0, 0) ? 1 : 0; in test_notEqual()
113 Error += glm::notEqual(1, 1) ? 1 : 0; in test_notEqual()
114 Error += glm::notEqual(0.0f, 1.0f) ? 0 : 1; in test_notEqual()
115 Error += glm::notEqual(1.0f, 0.0f) ? 0 : 1; in test_notEqual()
116 Error += glm::notEqual(0.0f, 0.0f) ? 1 : 0; in test_notEqual()
118 Error += glm::notEqual(0.0, 1.0) ? 0 : 1; in test_notEqual()
119 Error += glm::notEqual(1.0, 0.0) ? 0 : 1; in test_notEqual()
120 Error += glm::notEqual(0.0, 0.0) ? 1 : 0; in test_notEqual()
[all …]
/dports/games/warzone2100/warzone2100/3rdparty/glm/test/gtx/
H A Dgtx_scalar_relational.cpp113 Error += glm::notEqual(0, 1) ? 0 : 1; in test_notEqual()
114 Error += glm::notEqual(1, 0) ? 0 : 1; in test_notEqual()
115 Error += glm::notEqual(0, 0) ? 1 : 0; in test_notEqual()
116 Error += glm::notEqual(1, 1) ? 1 : 0; in test_notEqual()
117 Error += glm::notEqual(0.0f, 1.0f, glm::epsilon<float>()) ? 0 : 1; in test_notEqual()
118 Error += glm::notEqual(1.0f, 0.0f, glm::epsilon<float>()) ? 0 : 1; in test_notEqual()
119 Error += glm::notEqual(0.0f, 0.0f, glm::epsilon<float>()) ? 1 : 0; in test_notEqual()
121 Error += glm::notEqual(0.0, 1.0, glm::epsilon<double>()) ? 0 : 1; in test_notEqual()
122 Error += glm::notEqual(1.0, 0.0, glm::epsilon<double>()) ? 0 : 1; in test_notEqual()
123 Error += glm::notEqual(0.0, 0.0, glm::epsilon<double>()) ? 1 : 0; in test_notEqual()
[all …]
/dports/math/glm/glm-0.9.9.8/test/gtx/
H A Dgtx_scalar_relational.cpp113 Error += glm::notEqual(0, 1) ? 0 : 1; in test_notEqual()
114 Error += glm::notEqual(1, 0) ? 0 : 1; in test_notEqual()
115 Error += glm::notEqual(0, 0) ? 1 : 0; in test_notEqual()
116 Error += glm::notEqual(1, 1) ? 1 : 0; in test_notEqual()
117 Error += glm::notEqual(0.0f, 1.0f, glm::epsilon<float>()) ? 0 : 1; in test_notEqual()
118 Error += glm::notEqual(1.0f, 0.0f, glm::epsilon<float>()) ? 0 : 1; in test_notEqual()
119 Error += glm::notEqual(0.0f, 0.0f, glm::epsilon<float>()) ? 1 : 0; in test_notEqual()
121 Error += glm::notEqual(0.0, 1.0, glm::epsilon<double>()) ? 0 : 1; in test_notEqual()
122 Error += glm::notEqual(1.0, 0.0, glm::epsilon<double>()) ? 0 : 1; in test_notEqual()
123 Error += glm::notEqual(0.0, 0.0, glm::epsilon<double>()) ? 1 : 0; in test_notEqual()
[all …]
/dports/math/glm/glm-0.9.9.8/test/ext/
H A Dext_scalar_relational.cpp24 static_assert(glm::notEqual(1.01f, 1.02f, 0.001f), "GLM: Failed constexpr"); in test_notEqual_epsilon()
25 static_assert(!glm::notEqual(1.01f, 1.02f, 0.1f), "GLM: Failed constexpr"); in test_notEqual_epsilon()
30 Error += glm::notEqual(1.01f, 1.02f, 0.001f) ? 0 : 1; in test_notEqual_epsilon()
31 Error += !glm::notEqual(1.01f, 1.02f, 0.1f) ? 0 : 1; in test_notEqual_epsilon()
60 Error += !glm::notEqual(1.0f, ULP1Plus, 1) ? 0 : 1; in test_notEqual_ulps()
63 Error += glm::notEqual(1.0f, ULP2Plus, 1) ? 0 : 1; in test_notEqual_ulps()
66 Error += !glm::notEqual(1.0f, ULP1Minus, 1) ? 0 : 1; in test_notEqual_ulps()
69 Error += glm::notEqual(1.0f, ULP2Minus, 1) ? 0 : 1; in test_notEqual_ulps()
/dports/games/warzone2100/warzone2100/3rdparty/glm/test/ext/
H A Dext_scalar_relational.cpp24 static_assert(glm::notEqual(1.01f, 1.02f, 0.001f), "GLM: Failed constexpr"); in test_notEqual_epsilon()
25 static_assert(!glm::notEqual(1.01f, 1.02f, 0.1f), "GLM: Failed constexpr"); in test_notEqual_epsilon()
30 Error += glm::notEqual(1.01f, 1.02f, 0.001f) ? 0 : 1; in test_notEqual_epsilon()
31 Error += !glm::notEqual(1.01f, 1.02f, 0.1f) ? 0 : 1; in test_notEqual_epsilon()
60 Error += !glm::notEqual(1.0f, ULP1Plus, 1) ? 0 : 1; in test_notEqual_ulps()
63 Error += glm::notEqual(1.0f, ULP2Plus, 1) ? 0 : 1; in test_notEqual_ulps()
66 Error += !glm::notEqual(1.0f, ULP1Minus, 1) ? 0 : 1; in test_notEqual_ulps()
69 Error += glm::notEqual(1.0f, ULP2Minus, 1) ? 0 : 1; in test_notEqual_ulps()
/dports/science/cdk/cdk-cdk-2.3/legacy/src/main/java/org/openscience/cdk/smsd/helper/
H A DBinaryTree.java51 private BinaryTree notEqual = null; field in BinaryTree
83 return notEqual; in getNotEqual()
90 public void setNotEqual(BinaryTree notEqual) { in setNotEqual() argument
91 this.notEqual = notEqual; in setNotEqual()
/dports/emulators/mess/mame-mame0226/src/osd/modules/render/bgfx/shaders/chains/xbr/
H A Dfs_xbr-lv2-noblend.sc136 vec4 interp_restriction_lv1 = vec4(notEqual(e,f)) * vec4(notEqual(e,h));
139 …vec4 interp_restriction_lv1 = (vec4(notEqual(e,f)) * vec4(notEqual(e,h)) * (neq(f,b) * neq(h,d) + …
144notEqual(e,f)) * vec4(notEqual(e,h)) * (neq(f,b) * neq(h,d) + eq(e,i) * neq(f,i4) * neq(h,i5) + eq…
147 …vec4 interp_restriction_lv1 = (vec4(notEqual(e,f)) * vec4(notEqual(e,h)) * (neq(f,b) * neq(f,c) + …
152 vec4 interp_restriction_lv2_left = vec4(notEqual(e,g)) * vec4(notEqual(d,g));
153 vec4 interp_restriction_lv2_up = vec4(notEqual(e,c)) * vec4(notEqual(b,c));
/dports/emulators/mame/mame-mame0226/src/osd/modules/render/bgfx/shaders/chains/xbr/
H A Dfs_xbr-lv2-noblend.sc136 vec4 interp_restriction_lv1 = vec4(notEqual(e,f)) * vec4(notEqual(e,h));
139 …vec4 interp_restriction_lv1 = (vec4(notEqual(e,f)) * vec4(notEqual(e,h)) * (neq(f,b) * neq(h,d) + …
144notEqual(e,f)) * vec4(notEqual(e,h)) * (neq(f,b) * neq(h,d) + eq(e,i) * neq(f,i4) * neq(h,i5) + eq…
147 …vec4 interp_restriction_lv1 = (vec4(notEqual(e,f)) * vec4(notEqual(e,h)) * (neq(f,b) * neq(f,c) + …
152 vec4 interp_restriction_lv2_left = vec4(notEqual(e,g)) * vec4(notEqual(d,g));
153 vec4 interp_restriction_lv2_up = vec4(notEqual(e,c)) * vec4(notEqual(b,c));
/dports/science/cdk/cdk-cdk-2.3/legacy/src/test/java/org/openscience/cdk/smsd/helper/
H A DBinaryTreeTest.java101 BinaryTree notEqual = new BinaryTree(10); in testGetNotEqual() local
103 instance.setNotEqual(notEqual); in testGetNotEqual()
104 BinaryTree expResult = notEqual; in testGetNotEqual()
116 BinaryTree notEqual = new BinaryTree(10); in testSetNotEqual() local
118 instance.setNotEqual(notEqual); in testSetNotEqual()
119 BinaryTree expResult = notEqual; in testSetNotEqual()
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/glsl-1.20/compiler/structure-and-array-operations/
H A Darray-size-constant-relational.vert89 // All forms of notEqual.
90 float [all( notEqual( v4_1, v4_0) ) ? 1 : -1] array51;
91 float [all(not(notEqual( v4_1, v4_0))) ? -1 : 1] array52;
92 float [any( notEqual( v4_1, v4_0) ) ? 1 : -1] array53;
93 float [any(not(notEqual( v4_1, v4_0))) ? -1 : 1] array54;
94 float [all( notEqual(iv4_1, iv4_0) ) ? 1 : -1] array55;
95 float [all(not(notEqual(iv4_1, iv4_0))) ? -1 : 1] array56;
96 float [any( notEqual(iv4_1, iv4_0) ) ? 1 : -1] array57;
97 float [any(not(notEqual(iv4_1, iv4_0))) ? -1 : 1] array58;
98 float [all( notEqual(bv4_1, bv4_0) ) ? 1 : -1] array59;
[all …]
/dports/games/warzone2100/warzone2100/3rdparty/glm/glm/ext/
H A Dmatrix_relational.inl32 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
34 return notEqual(x, y, static_cast<T>(0));
38 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
40 return notEqual(x, y, vec<C, T, Q>(Epsilon));
44 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& a, mat<C, R, T, Q… function
48 Result[i] = any(notEqual(a[i], b[i], Epsilon[i]));
68 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
70 return notEqual(x, y, vec<C, int, Q>(MaxULPs));
74 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& a, mat<C, R, T, Q… function
78 Result[i] = any(notEqual(a[i], b[i], MaxULPs[i]));
/dports/devel/upp/upp/uppsrc/plugin/glm/ext/
H A Dmatrix_relational.inl32 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
34 return notEqual(x, y, static_cast<T>(0));
38 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
40 return notEqual(x, y, vec<C, T, Q>(Epsilon));
44 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& a, mat<C, R, T, Q… function
48 Result[i] = any(notEqual(a[i], b[i], Epsilon[i]));
68 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
70 return notEqual(x, y, vec<C, int, Q>(MaxULPs));
74 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& a, mat<C, R, T, Q… function
78 Result[i] = any(notEqual(a[i], b[i], MaxULPs[i]));
/dports/math/glm/glm-0.9.9.8/glm/ext/
H A Dmatrix_relational.inl32 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
34 return notEqual(x, y, static_cast<T>(0));
38 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
40 return notEqual(x, y, vec<C, T, Q>(Epsilon));
44 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& a, mat<C, R, T, Q… function
48 Result[i] = any(notEqual(a[i], b[i], Epsilon[i]));
68 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q… function
70 return notEqual(x, y, vec<C, int, Q>(MaxULPs));
74 …GLM_FUNC_QUALIFIER GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& a, mat<C, R, T, Q… function
78 Result[i] = any(notEqual(a[i], b[i], MaxULPs[i]));
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/likexian/gokit/assert/
H A Dassert.go51 notEqual(t, got, exp, 1, args...)
61 notEqual(t, got, nil, 1, args...)
71 notEqual(t, got, true, 1, args...)
81 notEqual(t, IsZero(got), true, 1, args...)
91 notEqual(t, Length(got), exp, 1, args...)
101 notEqual(t, IsContains(got, exp), true, 1, args...)
111 notEqual(t, IsMatch(got, exp), true, 1, args...)
182 func notEqual(t *testing.T, got, exp interface{}, step int, args ...interface{}) { func
/dports/devel/py-ZopeUndo/ZopeUndo-2.12.0/src/ZopeUndo/tests/
H A DtestPrefix.py24 for notEqual in ("", "/a/c", "/a/bbb", "///"):
25 self.assertNotEqual(p1, notEqual)
36 for notEqual in (" spam", "/a/c spam", "/a/bbb spam", "/// spam"):
37 self.assertNotEqual(p1, notEqual)
/dports/games/libretro-shaders-slang/slang-shaders-9850d68939b86262eae9f0da01ff1c11daafcdc3/xbr/shaders/
H A Dxbr-lv3.slang197 {interp_restriction_lv1 = and(notEqual(e, f), notEqual(e, h));}
199 {interp_restriction_lv1 = and(and(notEqual(e,f) , notEqual(e,h)) ,
204 {interp_restriction_lv1 = and(and(and(notEqual(e,f) , notEqual(e,h)) ,
207 eq(e,c)) )) , (and(or(or(or(or(and(notEqual(f,f4) , notEqual(f,i)) ,
208 and(notEqual(h,h5) , notEqual(h,i))) , notEqual(h,g)) , notEqual(f,c)) ,
211 {interp_restriction_lv1 = and(and(notEqual(e, f), notEqual(e, h)),
218 interp_restriction_lv2_left = and(notEqual(e, g), notEqual(d, g));
219 interp_restriction_lv2_up = and(notEqual(e, c), notEqual(b, c));
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/SPIRV-Tools/src/source/val/
H A Dvalidate_arithmetics.cpp506 const auto notEqual = [](std::tuple<bool, bool, uint32_t> X, in ArithmeticsPass() local
512 if (notEqual(A_scope, B_scope) || notEqual(A_scope, C_scope) || in ArithmeticsPass()
513 notEqual(A_scope, D_scope) || notEqual(B_scope, C_scope) || in ArithmeticsPass()
514 notEqual(B_scope, D_scope) || notEqual(C_scope, D_scope)) { in ArithmeticsPass()
520 if (notEqual(A_rows, C_rows) || notEqual(A_rows, D_rows) || in ArithmeticsPass()
521 notEqual(C_rows, D_rows)) { in ArithmeticsPass()
527 if (notEqual(B_cols, C_cols) || notEqual(B_cols, D_cols) || in ArithmeticsPass()
528 notEqual(C_cols, D_cols)) { in ArithmeticsPass()
534 if (notEqual(A_cols, B_rows)) { in ArithmeticsPass()
/dports/devel/intel-graphics-compiler/SPIRV-Tools/source/val/
H A Dvalidate_arithmetics.cpp506 const auto notEqual = [](std::tuple<bool, bool, uint32_t> X, in ArithmeticsPass() local
512 if (notEqual(A_scope, B_scope) || notEqual(A_scope, C_scope) || in ArithmeticsPass()
513 notEqual(A_scope, D_scope) || notEqual(B_scope, C_scope) || in ArithmeticsPass()
514 notEqual(B_scope, D_scope) || notEqual(C_scope, D_scope)) { in ArithmeticsPass()
520 if (notEqual(A_rows, C_rows) || notEqual(A_rows, D_rows) || in ArithmeticsPass()
521 notEqual(C_rows, D_rows)) { in ArithmeticsPass()
527 if (notEqual(B_cols, C_cols) || notEqual(B_cols, D_cols) || in ArithmeticsPass()
528 notEqual(C_cols, D_cols)) { in ArithmeticsPass()
534 if (notEqual(A_cols, B_rows)) { in ArithmeticsPass()
/dports/emulators/mess/mame-mame0226/3rdparty/bgfx/3rdparty/spirv-tools/source/val/
H A Dvalidate_arithmetics.cpp506 const auto notEqual = [](std::tuple<bool, bool, uint32_t> X, in ArithmeticsPass() local
512 if (notEqual(A_scope, B_scope) || notEqual(A_scope, C_scope) || in ArithmeticsPass()
513 notEqual(A_scope, D_scope) || notEqual(B_scope, C_scope) || in ArithmeticsPass()
514 notEqual(B_scope, D_scope) || notEqual(C_scope, D_scope)) { in ArithmeticsPass()
520 if (notEqual(A_rows, C_rows) || notEqual(A_rows, D_rows) || in ArithmeticsPass()
521 notEqual(C_rows, D_rows)) { in ArithmeticsPass()
527 if (notEqual(B_cols, C_cols) || notEqual(B_cols, D_cols) || in ArithmeticsPass()
528 notEqual(C_cols, D_cols)) { in ArithmeticsPass()
534 if (notEqual(A_cols, B_rows)) { in ArithmeticsPass()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_arithmetics.cpp506 const auto notEqual = [](std::tuple<bool, bool, uint32_t> X, in ArithmeticsPass() local
512 if (notEqual(A_scope, B_scope) || notEqual(A_scope, C_scope) || in ArithmeticsPass()
513 notEqual(A_scope, D_scope) || notEqual(B_scope, C_scope) || in ArithmeticsPass()
514 notEqual(B_scope, D_scope) || notEqual(C_scope, D_scope)) { in ArithmeticsPass()
520 if (notEqual(A_rows, C_rows) || notEqual(A_rows, D_rows) || in ArithmeticsPass()
521 notEqual(C_rows, D_rows)) { in ArithmeticsPass()
527 if (notEqual(B_cols, C_cols) || notEqual(B_cols, D_cols) || in ArithmeticsPass()
528 notEqual(C_cols, D_cols)) { in ArithmeticsPass()
534 if (notEqual(A_cols, B_rows)) { in ArithmeticsPass()
/dports/emulators/mame/mame-mame0226/3rdparty/bgfx/3rdparty/spirv-tools/source/val/
H A Dvalidate_arithmetics.cpp506 const auto notEqual = [](std::tuple<bool, bool, uint32_t> X, in ArithmeticsPass() local
512 if (notEqual(A_scope, B_scope) || notEqual(A_scope, C_scope) || in ArithmeticsPass()
513 notEqual(A_scope, D_scope) || notEqual(B_scope, C_scope) || in ArithmeticsPass()
514 notEqual(B_scope, D_scope) || notEqual(C_scope, D_scope)) { in ArithmeticsPass()
520 if (notEqual(A_rows, C_rows) || notEqual(A_rows, D_rows) || in ArithmeticsPass()
521 notEqual(C_rows, D_rows)) { in ArithmeticsPass()
527 if (notEqual(B_cols, C_cols) || notEqual(B_cols, D_cols) || in ArithmeticsPass()
528 notEqual(C_cols, D_cols)) { in ArithmeticsPass()
534 if (notEqual(A_cols, B_rows)) { in ArithmeticsPass()
/dports/graphics/spirv-tools/SPIRV-Tools-2021.4/source/val/
H A Dvalidate_arithmetics.cpp506 const auto notEqual = [](std::tuple<bool, bool, uint32_t> X, in ArithmeticsPass() local
512 if (notEqual(A_scope, B_scope) || notEqual(A_scope, C_scope) || in ArithmeticsPass()
513 notEqual(A_scope, D_scope) || notEqual(B_scope, C_scope) || in ArithmeticsPass()
514 notEqual(B_scope, D_scope) || notEqual(C_scope, D_scope)) { in ArithmeticsPass()
520 if (notEqual(A_rows, C_rows) || notEqual(A_rows, D_rows) || in ArithmeticsPass()
521 notEqual(C_rows, D_rows)) { in ArithmeticsPass()
527 if (notEqual(B_cols, C_cols) || notEqual(B_cols, D_cols) || in ArithmeticsPass()
528 notEqual(C_cols, D_cols)) { in ArithmeticsPass()
534 if (notEqual(A_cols, B_rows)) { in ArithmeticsPass()

12345678910>>...62