Searched refs:IsGreater (Results 1 – 20 of 20) sorted by relevance
/external/llvm-project/libcxx/test/std/input.output/filesystems/class.path/path.member/ |
D | path.compare.pass.cpp | 144 bool IsGreater = std::lexicographical_compare(RHS.begin(), RHS.end(), LHS.begin(), LHS.end()); in CompareElements() local 145 if (IsGreater) in CompareElements()
|
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/ |
D | path.compare.pass.cpp | 147 bool IsGreater = std::lexicographical_compare(RHS.begin(), RHS.end(), LHS.begin(), LHS.end()); in CompareElements() local 148 if (IsGreater) in CompareElements()
|
/external/libchrome/base/numerics/ |
D | clamped_math.h | 238 BASE_NUMERIC_COMPARISON_OPERATORS(Clamped, IsGreater, >);
|
D | safe_conversions.h | 320 BASE_NUMERIC_COMPARISON_OPERATORS(Strict, IsGreater, >);
|
D | clamped_math_impl.h | 294 return IsGreater<T, U>::Test(x, y) ? saturated_cast<V>(x)
|
D | checked_math.h | 173 IsGreater<T, R>::Test(state_.value(), Wrapper<U>::value(rhs)) in Max()
|
D | checked_math_impl.h | 390 result_type tmp = IsGreater<T, U>::Test(x, y) ? static_cast<result_type>(x)
|
D | safe_conversions_impl.h | 742 struct IsGreater {
|
/external/tensorflow/tensorflow/core/grappler/ |
D | op_types.h | 91 bool IsGreater(const NodeDef& node);
|
D | op_types.cc | 303 bool IsGreater(const NodeDef& node) { return node.op() == "Greater"; } in IsGreater() function
|
/external/pdfium/third_party/base/numerics/ |
D | safe_conversions.h | 330 BASE_NUMERIC_COMPARISON_OPERATORS(Strict, IsGreater, >)
|
D | safe_math.h | 239 IsGreater<T, R>::Test(state_.value(), Wrapper<U>::value(rhs)) in Max()
|
D | safe_math_impl.h | 424 *result = IsGreater<T, U>::Test(x, y) ? static_cast<result_type>(x)
|
D | safe_conversions_impl.h | 743 struct IsGreater {
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | loop_optimizer.cc | 550 return (IsLess(node) || IsLessEqual(node) || IsGreater(node) || in IsSimpleBinaryOperator()
|
D | layout_optimizer.cc | 314 IsGreater(node) || IsGreaterEqual(node) || IsLess(node) || in IsComparisonOp()
|
D | generic_layout_optimizer_transposer.cc | 104 IsGreater(node) || IsGreaterEqual(node) || IsLess(node) || in IsComparisonOp()
|
D | arithmetic_optimizer.cc | 1413 } else if (IsGreater(*input)) { in TrySimplify()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 9557 bool IsGreater = ICmpInst::isGE(Pred) || ICmpInst::isGT(Pred); in getMonotonicPredicateTypeImpl() local 9558 assert((IsGreater || ICmpInst::isLE(Pred) || ICmpInst::isLT(Pred)) && in getMonotonicPredicateTypeImpl() 9565 return IsGreater ? MonotonicallyIncreasing : MonotonicallyDecreasing; in getMonotonicPredicateTypeImpl() 9575 return IsGreater ? MonotonicallyIncreasing : MonotonicallyDecreasing; in getMonotonicPredicateTypeImpl() 9578 return !IsGreater ? MonotonicallyIncreasing : MonotonicallyDecreasing; in getMonotonicPredicateTypeImpl()
|
/external/llvm-project/clang/lib/AST/ |
D | ExprConstant.cpp | 12859 IsGreater = CR == CmpResult::Greater; in VisitBinaryOperator() local 12870 return Success(IsGreater, E); in VisitBinaryOperator() 12874 return Success(IsEqual || IsGreater, E); in VisitBinaryOperator()
|