/third_party/mindspore/mindspore/ops/composite/multitype_ops/ |
D | not_equal_impl.py | 23 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/ |
D | take_while.hpp | 24 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()
|
D | drop_while.hpp | 55 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/ |
D | not_equal.cpp | 13 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/ |
D | logical.cpp | 160 … 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/ |
D | latch.hpp | 77 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/ |
D | monad_plus.hpp | 210 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 …]
|
D | comparable.hpp | 58 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()
|
D | euclidean_ring.hpp | 54 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/ |
D | comparable.cpp | 19 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/ |
D | not_equal.hpp | 54 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/ |
D | not_equal.hpp | 54 constexpr auto not_equal = [](auto&& x, auto&& y) { in __anon000d33560102() variable 66 constexpr not_equal_t not_equal{};
|
/third_party/pulseaudio/src/pulsecore/ |
D | atomic.h | 469 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/ |
D | ids.hpp | 46 not_equal, enumerator 123 not_equal = binary_op<op::not_equal>::value, enumerator
|
/third_party/mesa3d/src/amd/llvm/ |
D | ac_llvm_cull.c | 179 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/ |
D | counter.hpp | 94 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/ |
D | restricted_function.cpp | 55 { 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/ |
D | ids.hpp | 47 not_equal, enumerator 124 not_equal = binary_op<op::not_equal>::value, enumerator
|
/third_party/gettext/gettext-runtime/intl/ |
D | plural-exp.c | 49 .operation = not_equal, 84 GERMANIC_PLURAL.operation = not_equal; in init_germanic_plural()
|
/third_party/boost/boost/heap/ |
D | heap_concepts.hpp | 99 not_equal = (h != h2); in BOOST_CONCEPT_USAGE() 105 bool equal, not_equal; member
|
/third_party/mindspore/tests/st/networks/models/deeplabv3/src/ |
D | losses.py | 36 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/ |
D | functors.hpp | 69 template <class T = void> struct not_equal { struct 86 template <> struct not_equal<void> { struct
|
/third_party/boost/boost/pfr/ |
D | functors.hpp | 69 template <class T = void> struct not_equal { struct 86 template <> struct not_equal<void> { struct
|
/third_party/boost/boost/geometry/algorithms/detail/is_valid/ |
D | has_spikes.hpp | 91 > 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/ |
D | hashable.cpp | 14 BOOST_HANA_CONSTANT_CHECK(hana::not_equal(
|