Home
last modified time | relevance | path

Searched refs:negation (Results 1 – 25 of 226) sorted by relevance

12345678910

/external/libcxx/test/std/utilities/meta/meta.logical/
Dnegation.pass.cpp25 static_assert (!std::negation<std::true_type >::value, "" ); in main()
26 static_assert ( std::negation<std::false_type>::value, "" ); in main()
31 static_assert (!std::negation<True >::value, "" ); in main()
32 static_assert ( std::negation<False>::value, "" ); in main()
37 static_assert ( std::negation<std::negation<std::true_type >>::value, "" ); in main()
38 static_assert (!std::negation<std::negation<std::false_type>>::value, "" ); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/
Dvec-neg-01.ll1 ; Test vector negation.
5 ; Test a v16i8 negation.
14 ; Test a v8i16 negation.
23 ; Test a v4i32 negation.
32 ; Test a v2i64 negation.
41 ; Test a v2f64 negation.
50 ; Test an f64 negation that uses vector registers.
Dint-neg-01.ll1 ; Test integer negation.
5 ; Test i32->i32 negation.
14 ; Test i32->i64 negation.
24 ; Test i32->i64 negation that uses an "in-register" form of sign extension.
35 ; Test i64 negation.
Dvec-neg-02.ll1 ; Test vector negation on z14.
5 ; Test a v4f32 negation.
15 ; Test an f32 negation that uses vector registers.
Dfp-neg-01.ll1 ; Test floating-point negation.
24 ; Test f128. With the loads and stores, a pure negation would probably
Dfp-neg-02.ll1 ; Test floating-point negation on z14.
23 ; Test f128. With the loads and stores, a pure negation would probably
/external/llvm/test/CodeGen/SystemZ/
Dvec-neg-01.ll1 ; Test vector negation.
5 ; Test a v16i8 negation.
14 ; Test a v8i16 negation.
23 ; Test a v4i32 negation.
32 ; Test a v2i64 negation.
41 ; Test a v2f64 negation.
50 ; Test an f64 negation that uses vector registers.
Dint-neg-01.ll1 ; Test integer negation.
5 ; Test i32->i32 negation.
14 ; Test i32->i64 negation.
24 ; Test i32->i64 negation that uses an "in-register" form of sign extension.
35 ; Test i64 negation.
Dfp-neg-01.ll1 ; Test floating-point negation.
24 ; Test f128. With the loads and stores, a pure negation would probably
/external/deqp-deps/SPIRV-Tools/source/opt/
Dscalar_analysis_simplification.cpp96 bool negation);
103 bool AccumulatorsFromMultiply(SENode* multiply, bool negation);
153 bool negation) { in AccumulatorsFromMultiply() argument
184 int64_t sign = negation ? -1 : 1; in AccumulatorsFromMultiply()
245 bool negation) { in GatherAccumulatorsFromChildNodes() argument
246 int32_t sign = negation ? -1 : 1; in GatherAccumulatorsFromChildNodes()
268 if (!AccumulatorsFromMultiply(child, negation)) { in GatherAccumulatorsFromChildNodes()
274 GatherAccumulatorsFromChildNodes(new_node, next_child, negation); in GatherAccumulatorsFromChildNodes()
279 GatherAccumulatorsFromChildNodes(new_node, negated_node, !negation); in GatherAccumulatorsFromChildNodes()
384 bool negation = false; in FoldRecurrentAddExpressions() local
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dscalar_analysis_simplification.cpp96 bool negation);
103 bool AccumulatorsFromMultiply(SENode* multiply, bool negation);
153 bool negation) { in AccumulatorsFromMultiply() argument
184 int64_t sign = negation ? -1 : 1; in AccumulatorsFromMultiply()
245 bool negation) { in GatherAccumulatorsFromChildNodes() argument
246 int32_t sign = negation ? -1 : 1; in GatherAccumulatorsFromChildNodes()
268 if (!AccumulatorsFromMultiply(child, negation)) { in GatherAccumulatorsFromChildNodes()
274 GatherAccumulatorsFromChildNodes(new_node, next_child, negation); in GatherAccumulatorsFromChildNodes()
279 GatherAccumulatorsFromChildNodes(new_node, negated_node, !negation); in GatherAccumulatorsFromChildNodes()
384 bool negation = false; in FoldRecurrentAddExpressions() local
[all …]
/external/googletest/googlemock/include/gmock/
Dgmock-more-matchers.h61 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") {
73 MATCHER(IsTrue, negation ? "is false" : "is true") {
81 MATCHER(IsFalse, negation ? "is true" : "is false") {
Dgmock-generated-matchers.h285 ::std::string FormatDescription(bool negation) const {\
291 negation, #name, \
335 ::std::string FormatDescription(bool negation) const {\
341 negation, #name, \
389 ::std::string FormatDescription(bool negation) const {\
395 negation, #name, \
450 ::std::string FormatDescription(bool negation) const {\
456 negation, #name, \
515 ::std::string FormatDescription(bool negation) const {\
521 negation, #name, \
[all …]
Dgmock-generated-matchers.h.pump149 // special bool-typed variable named 'negation'. When 'negation' is
151 // otherwise it should evaluate to the description of the negation of
157 // std::string(negation ? "is not" : "is") + " in range [" +
318 ::std::string FormatDescription(bool negation) const {\
324 negation, #name, \
/external/google-breakpad/src/testing/src/
Dgmock-matchers.cc92 GTEST_API_ string FormatMatcherDescription(bool negation, in FormatMatcherDescription() argument
98 return negation ? "not (" + result + ")" : result; in FormatMatcherDescription()
/external/v8/testing/
Dgmock-support.h69 MATCHER_P(BitEq, x, std::string(negation ? "isn't" : "is") +
85 MATCHER(IsNaN, std::string(negation ? "isn't" : "is") + " not a number") {
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-ref_count.hpp92 using has_observable_t = rxu::negation<std::is_same<void, Observable>>;
100 rxu::negation<HasObservable>>>
128 rxu::negation<HasObservable>>>
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_has_key.py79 negation = results.get("negation")
96 if negation:
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_has_key.py80 negation = results.get("negation")
97 if negation:
/external/tensorflow/tensorflow/contrib/session_bundle/
Dgc_test.py92 mod = gc.negation(gc.mod_export_version(2))
94 mod = gc.negation(gc.mod_export_version(3))
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-more-matchers.h48 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") {
/external/deqp-deps/glslang/Test/
Dhlsl.y-negate-1.vert2 // Test Y negation from entry point return
Dhlsl.y-negate-2.vert1 // Test Y negation from entry point out parameter
Dhlsl.y-negate-3.vert1 // Test Y negation from entry point out parameter
/external/tensorflow/tensorflow/contrib/learn/python/learn/utils/
Dgc_test.py126 mod = gc.negation(gc.mod_export_version(2))
128 mod = gc.negation(gc.mod_export_version(3))

12345678910