Home
last modified time | relevance | path

Searched refs:not_equal (Results 1 – 25 of 155) sorted by relevance

1234567

/third_party/mindspore/mindspore/ops/composite/multitype_ops/
Dnot_equal_impl.py23 not_equal = base.MultitypeFuncGraph("not_equal", True) variable
30 @not_equal.register("Number", "Number")
45 @not_equal.register("mstype", "mstype")
60 @not_equal.register("String", "String")
75 @not_equal.register("String", "None")
90 @not_equal.register("None", "String")
105 @not_equal.register("None", "None")
120 @not_equal.register("Number", "None")
135 @not_equal.register("None", "Number")
150 @not_equal.register("Tuple", "Tuple")
[all …]
/third_party/boost/libs/hana/test/_include/auto/
Dtake_while.hpp24 hana::take_while(MAKE_TUPLE(), hana::not_equal.to(z)), in __anon52d6cb340102()
29 hana::take_while(MAKE_TUPLE(ct_eq<1>{}), hana::not_equal.to(z)), in __anon52d6cb340102()
33 hana::take_while(MAKE_TUPLE(z), hana::not_equal.to(z)), in __anon52d6cb340102()
38 hana::take_while(MAKE_TUPLE(ct_eq<1>{}, ct_eq<2>{}), hana::not_equal.to(z)), in __anon52d6cb340102()
42 hana::take_while(MAKE_TUPLE(ct_eq<1>{}, z), hana::not_equal.to(z)), in __anon52d6cb340102()
46 hana::take_while(MAKE_TUPLE(z, ct_eq<2>{}), hana::not_equal.to(z)), in __anon52d6cb340102()
51 hana::take_while(MAKE_TUPLE(ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), hana::not_equal.to(z)), in __anon52d6cb340102()
55 hana::take_while(MAKE_TUPLE(ct_eq<1>{}, ct_eq<2>{}, z), hana::not_equal.to(z)), in __anon52d6cb340102()
59 hana::take_while(MAKE_TUPLE(ct_eq<1>{}, z, ct_eq<3>{}), hana::not_equal.to(z)), in __anon52d6cb340102()
63 hana::take_while(MAKE_TUPLE(z, ct_eq<2>{}, ct_eq<3>{}), hana::not_equal.to(z)), in __anon52d6cb340102()
Ddrop_while.hpp55 hana::drop_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}), hana::not_equal.to(ct_eq<99>{})), in __anon62ec12040102()
59 … hana::drop_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}), hana::not_equal.to(ct_eq<1>{})), in __anon62ec12040102()
63 …_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), hana::not_equal.to(ct_eq<3>{})), in __anon62ec12040102()
67 …_while(MAKE_TUPLE(ct_eq<0>{}, ct_eq<1>{}, ct_eq<2>{}, ct_eq<3>{}), hana::not_equal.to(ct_eq<0>{})), in __anon62ec12040102()
/third_party/boost/libs/hana/example/
Dnot_equal.cpp13 static_assert(hana::not_equal(hana::make_tuple(1, 2), hana::make_tuple(3)), ""); in main()
14 static_assert(hana::not_equal('x', 'y'), ""); in main()
15 BOOST_HANA_CONSTANT_CHECK(hana::not_equal(hana::make_tuple(1, 2), 'y')); in main()
17 static_assert(hana::all_of(hana::make_tuple(1, 2, 3), hana::not_equal.to(5)), ""); in main()
/third_party/boost/libs/hana/test/concept/constant/
Dlogical.cpp160 … hana::while_(hana::not_equal.to(hana::test::ct_eq<0>{}), hana::test::ct_eq<0>{}, invalid{}), in main()
165 hana::while_(hana::not_equal.to(f(hana::test::ct_eq<0>{})), hana::test::ct_eq<0>{}, f), in main()
170 … hana::while_(hana::not_equal.to(f(f(hana::test::ct_eq<0>{}))), hana::test::ct_eq<0>{}, f), in main()
175 … hana::while_(hana::not_equal.to(f(f(f(hana::test::ct_eq<0>{})))), hana::test::ct_eq<0>{}, f), in main()
180 … hana::while_(hana::not_equal.to(f(f(f(f(hana::test::ct_eq<0>{}))))), hana::test::ct_eq<0>{}, f), in main()
187 hana::while_(hana::not_equal.to(f(f(f(f(hana::test::ct_eq<0>{}))))), state, f), in main()
/third_party/boost/boost/thread/
Dlatch.hpp77 cond_.wait(lk, detail::not_equal(generation, generation_)); in wait()
95 return cond_.wait_for(lk, rel_time, detail::not_equal(generation, generation_)) in wait_for()
108 return cond_.wait_until(lk, abs_time, detail::not_equal(generation, generation_)) in wait_until()
143 cond_.wait(lk, detail::not_equal(generation, generation_)); in count_down_and_wait()
/third_party/boost/libs/hana/test/_include/laws/
Dmonad_plus.hpp210 filter(list(z), not_equal.to(z)),
214 filter(list(eq<1>{}), not_equal.to(z)),
219 filter(list(eq<1>{}, eq<2>{}), not_equal.to(z)),
223 filter(list(z, eq<2>{}), not_equal.to(z)),
227 filter(list(eq<1>{}, z), not_equal.to(z)),
232 filter(list(z, eq<2>{}, eq<3>{}), not_equal.to(z)),
236 filter(list(eq<1>{}, z, eq<3>{}), not_equal.to(z)),
240 filter(list(eq<1>{}, eq<2>{}, z), not_equal.to(z)),
244 filter(list(eq<1>{}, z, z), not_equal.to(z)),
248 filter(list(z, eq<2>{}, z), not_equal.to(z)),
[all …]
Dcomparable.hpp58 hana::not_equal(a, b) ^iff^ hana::not_(hana::equal(a, b)) in TestComparable()
67 hana::not_equal.to(a)(b) ^iff^ hana::not_equal(a, b) in TestComparable()
Deuclidean_ring.hpp54 only_when_(hana::not_equal(b, zero<D>()), in TestEuclideanRing()
81 only_when_(hana::not_equal(zero<C>(), y), in __anon93b5488e0402()
/third_party/boost/libs/hana/example/ext/std/integer_sequence/
Dcomparable.cpp19 BOOST_HANA_CONSTANT_CHECK(hana::not_equal(xs, zs));
20 BOOST_HANA_CONSTANT_CHECK(hana::not_equal(ys, zs));
/third_party/boost/boost/hana/fwd/
Dnot_equal.hpp54 constexpr auto not_equal = [](auto&& x, auto&& y) { in __anon2a0c8c830102() variable
66 constexpr not_equal_t not_equal{};
/third_party/boost/libs/hana/include/boost/hana/fwd/
Dnot_equal.hpp54 constexpr auto not_equal = [](auto&& x, auto&& y) { in __anon000d33560102() variable
66 constexpr not_equal_t not_equal{};
/third_party/pulseaudio/src/pulsecore/
Datomic.h469 unsigned long not_equal, not_exclusive; in pa_atomic_cmpxchg() local
477 : "=&r" (not_exclusive), "=&r" (not_equal) in pa_atomic_cmpxchg()
480 } while(not_exclusive && !not_equal); in pa_atomic_cmpxchg()
483 return !not_equal; in pa_atomic_cmpxchg()
503 unsigned long not_equal, not_exclusive; in pa_atomic_ptr_cmpxchg() local
511 : "=&r" (not_exclusive), "=&r" (not_equal) in pa_atomic_ptr_cmpxchg()
514 } while(not_exclusive && !not_equal); in pa_atomic_ptr_cmpxchg()
517 return !not_equal; in pa_atomic_ptr_cmpxchg()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/
Dids.hpp46 not_equal, enumerator
123 not_equal = binary_op<op::not_equal>::value, enumerator
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_cull.c179 LLVMValueRef min, max, not_equal[2], visible; in cull_bbox() local
196 not_equal[chan] = LLVMBuildFCmp(builder, LLVMRealONE, min, max, ""); in cull_bbox()
198 visible = LLVMBuildAnd(builder, not_equal[0], not_equal[1], ""); in cull_bbox()
/third_party/boost/boost/thread/detail/
Dcounter.hpp94 struct not_equal struct
96 not_equal(std::size_t& x, std::size_t& y) : x_(x), y_(y) {} in not_equal() function
/third_party/boost/libs/hana/example/misc/
Drestricted_function.cpp55 { return hana::not_equal(f, g); } in operator !=()
90 return implies(hana::not_equal(x, y), hana::not_equal(f(x), f(y))); in is_injective()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/
Dids.hpp47 not_equal, enumerator
124 not_equal = binary_op<op::not_equal>::value, enumerator
/third_party/gettext/gettext-runtime/intl/
Dplural-exp.c49 .operation = not_equal,
84 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
/third_party/boost/boost/heap/
Dheap_concepts.hpp99 not_equal = (h != h2); in BOOST_CONCEPT_USAGE()
105 bool equal, not_equal; member
/third_party/mindspore/tests/st/networks/models/deeplabv3/src/
Dlosses.py36 self.not_equal = P.NotEqual()
51 … weights = self.cast(self.not_equal(labels, self.ignore_label), mstype.float32) * self.loss_weight
/third_party/boost/libs/pfr/include/boost/pfr/
Dfunctors.hpp69 template <class T = void> struct not_equal { struct
86 template <> struct not_equal<void> { struct
/third_party/boost/boost/pfr/
Dfunctors.hpp69 template <class T = void> struct not_equal { struct
86 template <> struct not_equal<void> { struct
/third_party/boost/boost/geometry/algorithms/detail/is_valid/
Dhas_spikes.hpp91 > not_equal; in find_different_from_first() typedef
97 return std::find_if(second, last, not_equal(*first)); in find_different_from_first()
/third_party/boost/libs/hana/example/string/
Dhashable.cpp14 BOOST_HANA_CONSTANT_CHECK(hana::not_equal(

1234567