HomeSort by relevance Sort by last modified time
    Searched defs:rhs (Results 1 - 25 of 322) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/catch2/include/internal/
catch_decomposer.cpp 16 void formatReconstructedExpression( std::ostream &os, std::string const& lhs, StringRef op, std::string const& rhs ) {
17 if( lhs.size() + rhs.size() < 40 &&
19 rhs.find('\n') == std::string::npos )
20 os << lhs << " " << op << " " << rhs; local
22 os << lhs << "\n" << op << "\n" << rhs; local
  /external/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/
set_union_move.pass.cpp 34 std::vector<MoveOnly> lhs, rhs; local
36 rhs.push_back(MoveOnly(2));
41 std::make_move_iterator(rhs.begin()),
42 std::make_move_iterator(rhs.end()), std::back_inserter(res));
  /device/generic/goldfish-opengl/system/hwc2/
MiniFence.h 40 MiniFence(const MiniFence& rhs) = delete; member in class:android::MiniFence
41 MiniFence& operator=(const MiniFence& rhs) = delete; member in class:android::MiniFence
42 MiniFence(MiniFence&& rhs) = delete; member in class:android::MiniFence
43 MiniFence& operator=(MiniFence&& rhs) = delete; member in class:android::MiniFence
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
cwise_ops.h 40 const DataType rhs = BaseType(input_type(1)); local
41 OP_REQUIRES(ctx, lhs == rhs,
48 // 'tc->builder()' and '(lhs,rhs)' are the function's inputs and
53 // broadcasting. 'extend_dimension' is non-empty if lhs and rhs have
60 const absl::Span<const int64>& lhs_shape, const xla::XlaOp& rhs,
67 // 'broadcast_helper', yielding arguments 'lhs' and 'rhs' that have the same
70 xla::XlaOp lhs, xla::XlaOp rhs, const BCast& broadcast_helper);
einsum_op.cc 40 xla::XlaOp rhs = ctx->Input(1); variable
43 ctx->SetOutput(0, xla::Einsum(lhs, rhs, equation_));
xla_broadcast_helper_op.cc 37 xla::XlaOp rhs = context->Input(1); variable
59 context->SetOutput(1, rhs);
95 rhs = xla::BroadcastInDim(rhs, broadcast_shape, broadcast_dims);
98 context->SetOutput(1, rhs);
  /external/clang/test/CodeGen/
conditional-gnu-ext.c 33 _Complex int rhs; local
35 return getComplex(1+2i) ? : rhs;
  /external/drm_hwcomposer/
autolock.h 31 AutoLock(const AutoLock &rhs) = delete; member in class:android::AutoLock
32 AutoLock &operator=(const AutoLock &rhs) = delete; member in class:android::AutoLock
  /external/grpc-grpc/src/core/lib/iomgr/
cfstream_handle.h 42 CFStreamHandle& operator=(const CFStreamHandle& rhs) = delete; member in class:final
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Pair.java 49 Pair<?, ?> rhs = (Pair<?, ?>) other; local
50 return first.equals(rhs.first) && second.equals(rhs.second);
  /external/libcxx/test/std/utilities/any/any.class/any.assign/
copy.pass.cpp 36 template <class LHS, class RHS>
39 assert(RHS::count == 0);
41 RHS::reset();
44 any const rhs(RHS(2));
47 assert(RHS::count == 1);
48 assert(RHS::copied == 0);
50 lhs = rhs;
52 assert(RHS::copied == 1);
54 assert(RHS::count == 2)
86 any const rhs; local
    [all...]
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
copy.pass.cpp 13 // optional<T>& operator=(const optional<T>& rhs); // constexpr in C++20
40 const optional<Tp> rhs; local
41 lhs = rhs;
42 return !lhs.has_value() && !rhs.has_value();
47 const optional<Tp> rhs(101);
48 lhs = rhs;
49 return lhs.has_value() && rhs.has_value() && *lhs == *rhs;
  /external/tensorflow/tensorflow/compiler/xla/client/lib/
arithmetic.cc 47 auto rhs = Parameter(b.get(), 1, scalar, "rhs"); local
48 generator(b.get(), lhs, rhs);
58 [](XlaBuilder* b, const XlaOp& lhs, const XlaOp& rhs) {
59 return Add(lhs, rhs);
67 [](XlaBuilder* b, const XlaOp& lhs, const XlaOp& rhs) {
68 return Mul(lhs, rhs);
76 const XlaOp& rhs) { return Ge(lhs, rhs); });
83 [](XlaBuilder* b, const XlaOp& lhs, const XlaOp& rhs) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
elemental_ir_emitter_test.cc 48 reshape.rhs = s32[2,1]{1,0} reshape(arg1)
49 ROOT dot = s32[1,1]{1,0} dot(reshape.lhs, reshape.rhs), lhs_contracting_dims={0}, rhs_contracting_dims={0}
60 Literal rhs = LiteralUtil::CreateR3<int32>({{{3}, {4}}}); local
61 RunTest(hlo_text, {&lhs, &rhs});
  /external/tensorflow/tensorflow/compiler/xla/tests/
binop_scaling_test.cc 37 auto rhs = ConstantR2FromArray2D<float>(&builder, *arhs); local
38 Add(lhs, rhs);
53 auto rhs = ConstantR2FromArray2D<float>(&builder, *arhs); local
54 Add(lhs, rhs);
69 auto rhs = ConstantR2FromArray2D<float>(&builder, *arhs); local
70 Add(lhs, rhs);
85 auto rhs = ConstantR2FromArray2D<float>(&builder, *arhs); local
86 Add(lhs, rhs);
98 auto rhs = ConstantR2<float>(&builder, { local
102 Add(lhs, rhs);
134 auto rhs = ConstantR0<int>(&builder, 42); local
    [all...]
  /external/tensorflow/tensorflow/lite/
context_util.h 35 TfLiteIntArrayView& operator=(const TfLiteIntArrayView& rhs) = default; member in class:tflite::TfLiteIntArrayView
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Pair.java 47 Pair<?, ?> rhs = (Pair<?, ?>) other; local
48 return first.equals(rhs.first) && second.equals(rhs.second);
  /external/libchrome/base/
version_unittest.cc 91 const char* rhs; member in struct:__anon27671::version_compare
110 base::Version rhs(cases[i].rhs);
111 EXPECT_EQ(lhs.CompareTo(rhs), cases[i].expected) <<
112 cases[i].lhs << " ? " << cases[i].rhs;
115 EXPECT_EQ(lhs.CompareToWildcardString(cases[i].rhs), cases[i].expected)
116 << cases[i].lhs << " ? " << cases[i].rhs;
117 EXPECT_EQ(rhs.CompareToWildcardString(cases[i].lhs), -cases[i].expected)
118 << cases[i].lhs << " ? " << cases[i].rhs;
123 EXPECT_LT(lhs, rhs);
    [all...]
  /external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.equivalent/
equivalent.pass.cpp 14 // bool equivalent(path const& lhs, path const& rhs);
15 // bool equivalent(path const& lhs, path const& rhs, std::error_code& ec) noexcept;
41 path rhs; member in struct:TestCase
54 TEST_CHECK(equivalent(TC.lhs, TC.rhs, ec) == TC.expect);
  /external/libcxx/test/std/utilities/function.objects/comparisons/
pointer_comparison_test_helper.hpp 30 T* rhs = pointers[j].get(); local
32 std::uintptr_t rhs_uint = reinterpret_cast<std::uintptr_t>(rhs);
33 assert(comp(lhs, rhs) == ucomp(lhs_uint, rhs_uint));
34 assert(vcomp(lhs, rhs) == ucomp(lhs_uint, rhs_uint));
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
const_optional_U.pass.cpp 14 // optional(const optional<U>& rhs);
26 test(const optional<U>& rhs, bool is_going_to_throw = false)
28 bool rhs_engaged = static_cast<bool>(rhs);
32 optional<T> lhs = rhs;
36 assert(*lhs == *rhs);
44 optional<T> lhs = rhs;
47 assert(*lhs == *rhs);
87 optional<U> rhs; local
88 test<T>(rhs);
93 optional<U> rhs(U{3})
99 optional<U> rhs; local
111 optional<U> rhs; local
123 optional<U> rhs; local
    [all...]
copy.pass.cpp 13 // constexpr optional(const optional<T>& rhs);
27 const optional<T> rhs(std::forward<InitArgs>(args)...);
28 bool rhs_engaged = static_cast<bool>(rhs);
29 optional<T> lhs = rhs;
32 assert(*lhs == *rhs);
39 const optional<T> rhs(std::forward<InitArgs>(args)...);
40 optional<T> lhs = rhs;
41 return (lhs.has_value() == rhs.has_value()) &&
42 (lhs.has_value() ? *lhs == *rhs : true);
54 const optional<Z> rhs(z)
132 const optional<T> rhs; local
    [all...]
explicit_const_optional_U.pass.cpp 14 // explicit optional(const optional<U>& rhs);
26 test(const optional<U>& rhs, bool is_going_to_throw = false)
29 bool rhs_engaged = static_cast<bool>(rhs);
33 optional<T> lhs(rhs);
37 assert(*lhs == T(*rhs));
45 optional<T> lhs(rhs);
48 assert(*lhs == T(*rhs));
88 optional<U> rhs; local
89 test<T>(rhs);
94 optional<U> rhs(3)
100 optional<U> rhs; local
112 optional<U> rhs; local
    [all...]
explicit_optional_U.pass.cpp 14 // explicit optional(optional<U>&& rhs);
26 test(optional<U>&& rhs, bool is_going_to_throw = false)
29 bool rhs_engaged = static_cast<bool>(rhs);
33 optional<T> lhs(std::move(rhs));
43 optional<T> lhs(std::move(rhs));
69 optional<int> rhs; local
70 test<X>(std::move(rhs));
73 optional<int> rhs(3);
74 test<X>(std::move(rhs));
77 optional<int> rhs; local
    [all...]
optional_U.pass.cpp 14 // optional(optional<U>&& rhs);
27 test(optional<U>&& rhs, bool is_going_to_throw = false)
29 bool rhs_engaged = static_cast<bool>(rhs);
33 optional<T> lhs = std::move(rhs);
43 optional<T> lhs = std::move(rhs);
68 optional<short> rhs; local
69 test<int>(std::move(rhs));
72 optional<short> rhs(short{3});
73 test<int>(std::move(rhs));
76 optional<int> rhs; local
84 optional<int> rhs; local
    [all...]

Completed in 4245 milliseconds

1 2 3 4 5 6 7 8 91011>>