Searched defs:rhs (Results 151 - 175 of 738) sorted by relevance

1234567891011>>

/external/drm_hwcomposer/
H A Dautogl.h61 AutoEGLDisplayImage(const AutoEGLDisplayImage& rhs) = delete; member in struct:android::AutoEGLDisplayImage
62 AutoEGLDisplayImage(AutoEGLDisplayImage&& rhs) { argument
63 display_ = rhs.display_;
64 image_ = rhs.image_;
65 rhs.display_ = EGL_NO_DISPLAY;
66 rhs.image_ = EGL_NO_IMAGE_KHR;
73 AutoEGLDisplayImage& operator=(const AutoEGLDisplayImage& rhs) = delete; member in struct:android::AutoEGLDisplayImage
74 AutoEGLDisplayImage& operator=(AutoEGLDisplayImage&& rhs) { argument
76 std::swap(display_, rhs.display_);
77 std::swap(image_, rhs
[all...]
/external/gemmlowp/public/
H A Dgemmlowp.h36 const MatrixMap<const InputScalar, RhsOrder>& rhs,
42 context, lhs, rhs, result, lhs_offset, rhs_offset, output_pipeline);
55 const MatrixMap<const InputScalar, RhsOrder>& rhs,
62 const OffsetRowDup rhs_offset_vector(rhs_offset, rhs.cols());
64 context, lhs, rhs, result, lhs_offset_vector, rhs_offset_vector,
76 const MatrixMap<const Scalar, RhsOrder>& rhs,
81 context, lhs, rhs, result, lhs_offset, rhs_offset,
34 GemmWithOutputPipelinePC(GemmContextType* context, const MatrixMap<const InputScalar, LhsOrder>& lhs, const MatrixMap<const InputScalar, RhsOrder>& rhs, MatrixMap<OutputScalar, ResultOrder>* result, const LhsOffset& lhs_offset, const RhsOffset& rhs_offset, const OutputPipelineType& output_pipeline) argument
53 GemmWithOutputPipeline(GemmContextType* context, const MatrixMap<const InputScalar, LhsOrder>& lhs, const MatrixMap<const InputScalar, RhsOrder>& rhs, MatrixMap<OutputScalar, ResultOrder>* result, int lhs_offset, int rhs_offset, const OutputPipelineType& output_pipeline) argument
74 Gemm(GemmContextType* context, const MatrixMap<const Scalar, LhsOrder>& lhs, const MatrixMap<const Scalar, RhsOrder>& rhs, MatrixMap<Scalar, ResultOrder>* result, int lhs_offset, int rhs_offset, int result_offset, int result_mult_int, int result_shift) argument
/external/libchrome/base/memory/
H A Dshared_memory_tracker.cc16 SharedMemoryTracker::Usage::Usage(const Usage& rhs) = default; member in class:base::SharedMemoryTracker::Usage
/external/libchrome/base/trace_event/
H A Dheap_profiler_allocation_context.cc15 bool operator < (const StackFrame& lhs, const StackFrame& rhs) { argument
16 return lhs.value < rhs.value;
19 bool operator == (const StackFrame& lhs, const StackFrame& rhs) { argument
20 return lhs.value == rhs.value;
23 bool operator != (const StackFrame& lhs, const StackFrame& rhs) { argument
24 return !(lhs.value == rhs.value);
29 bool operator==(const Backtrace& lhs, const Backtrace& rhs) { argument
30 if (lhs.frame_count != rhs.frame_count) return false;
31 return std::equal(lhs.frames, lhs.frames + lhs.frame_count, rhs.frames);
34 bool operator!=(const Backtrace& lhs, const Backtrace& rhs) { argument
44 operator ==(const AllocationContext& lhs, const AllocationContext& rhs) argument
48 operator !=(const AllocationContext& lhs, const AllocationContext& rhs) argument
[all...]
/external/libcxx/test/std/algorithms/alg.sorting/alg.clamp/
H A Dclamp.pass.cpp29 bool eq(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val && rhs.tag == lhs.tag; } argument
30 // bool operator==(const Tag& rhs, const Tag& lhs) { return rhs.val == lhs.val; }
31 bool operator< (const Tag& rhs, const Tag& lhs) { return rhs.val < lhs.val; } argument
/external/libcxx/test/std/algorithms/alg.sorting/alg.merge/
H A Dinplace_merge.pass.cpp29 S(const S& rhs) : i_(rhs.i_) {} argument
30 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; } argument
32 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; } argument
33 S& operator =( S&& rhs) { i_ = rhs.i_; rhs argument
[all...]
/external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
H A Dpush_back_exception_safety.pass.cpp27 bool equal(const CMyClass &rhs) const
28 { return fTag == rhs.fTag && fMagicValue == rhs.fMagicValue; }
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); } argument
H A Dpush_front_exception_safety.pass.cpp28 bool equal(const CMyClass &rhs) const
29 { return fTag == rhs.fTag && fMagicValue == rhs.fMagicValue; }
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); } argument
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
H A Dremove.pass.cpp22 S(const S &rhs) : i_(new int(*rhs.i_)) {} argument
23 S& operator = (const S &rhs) { *i_ = *rhs.i_; return *this; } argument
25 bool operator == (const S &rhs) const { return *i_ == *rhs.i_; }
/external/libcxx/test/std/containers/sequences/list/list.ops/
H A Dremove.pass.cpp22 S(const S &rhs) : i_(new int(*rhs.i_)) {} argument
23 S &operator=(const S &rhs) { argument
24 *i_ = *rhs.i_;
31 bool operator==(const S &rhs) const { return *i_ == *rhs.i_; }
/external/libcxx/test/std/containers/sequences/vector/vector.modifiers/
H A Dpush_back_exception_safety.pass.cpp28 bool equal(const CMyClass &rhs) const
29 { return fTag == rhs.fTag && fMagicValue == rhs.fMagicValue; }
66 bool operator==(const CMyClass &lhs, const CMyClass &rhs) { return lhs.equal(rhs); } argument
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dconst_optional_U.pass.cpp14 // optional(const optional<U>& rhs);
26 test(const optional<U>& rhs, bool is_going_to_throw = false) argument
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(
99 optional<U> rhs; local
111 optional<U> rhs; local
123 optional<U> rhs; local
[all...]
H A Dcopy.pass.cpp13 // 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(
132 const optional<T> rhs; local
[all...]
H A Dexplicit_const_optional_U.pass.cpp14 // explicit optional(const optional<U>& rhs);
26 test(const optional<U>& rhs, bool is_going_to_throw = false) argument
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(
100 optional<U> rhs; local
112 optional<U> rhs; local
[all...]
H A Dmove.pass.cpp21 // constexpr optional(optional<T>&& rhs);
36 optional<T> rhs(orig);
37 bool rhs_engaged = static_cast<bool>(rhs);
38 optional<T> lhs = std::move(rhs);
49 optional<T> rhs(orig);
50 optional<T> lhs = std::move(rhs);
64 optional<Z> rhs(std::move(z));
67 optional<Z> lhs(std::move(rhs));
81 optional<T> rhs(std::forward<InitArgs>(args)...);
82 bool rhs_engaged = static_cast<bool>(rhs);
169 optional<T> rhs; local
[all...]
H A Doptional_U.pass.cpp14 // optional(optional<U>&& rhs);
27 test(optional<U>&& rhs, bool is_going_to_throw = false) argument
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...]
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
H A Dmove_convert.single.pass.cpp33 void checkReferenceDeleter(LHS& lhs, RHS& rhs) { argument
36 rhs.get_deleter().set_state(42);
37 assert(rhs.get_deleter().state() == 42);
41 assert(rhs.get_deleter().state() == 99);
45 void checkDeleter(LHS& lhs, RHS& rhs, int LHSVal, int RHSVal) { argument
47 assert(rhs.get_deleter().state() == RHSVal);
51 void checkCtor(LHS& lhs, RHS& rhs, A* RHSVal) { argument
53 assert(rhs.get() == nullptr);
/external/libcxx/test/support/
H A DCounter.h25 Counter(const Counter& rhs) : data_(rhs.data_) { ++gConstructed; } argument
26 Counter& operator=(const Counter& rhs) { ++gConstructed; data_ = rhs.data_; return *this; } argument
28 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; } argument
29 Counter& operator=(Counter&& rhs) { ++gConstructed; data_ = std::move(rhs.data_); return *this; } argument
/external/libmojo/ui/gfx/geometry/
H A Dvector2d_f.cc44 double CrossProduct(const Vector2dF& lhs, const Vector2dF& rhs) { argument
45 return static_cast<double>(lhs.x()) * rhs.y() -
46 static_cast<double>(lhs.y()) * rhs.x();
49 double DotProduct(const Vector2dF& lhs, const Vector2dF& rhs) { argument
50 return static_cast<double>(lhs.x()) * rhs.x() +
51 static_cast<double>(lhs.y()) * rhs.y();
/external/llvm/lib/Target/Sparc/
H A DSparcMachineFunctionInfo.h51 void setLeafProc(bool rhs) { IsLeafProc = rhs; } argument
/external/mesa3d/src/compiler/glsl/
H A Dlower_discard_flow.cpp92 ir_rvalue *rhs; local
95 rhs = ir->condition;
98 rhs = new(mem_ctx) ir_constant(true);
100 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs, rhs);
121 ir_rvalue *rhs = new(mem_ctx) ir_constant(false); local
122 ir_assignment *assign = new(mem_ctx) ir_assignment(lhs, rhs);
/external/skia/src/core/
H A DSkRemoteGlyphCache.h29 SkScalerContextRecDescriptor& operator=(const SkScalerContextRecDescriptor& rhs) { argument
30 std::memcpy(&fDescriptor, &rhs.fDescriptor, rhs.desc().getLength());
45 const SkScalerContextRecDescriptor& rhs ) {
46 return lhs.desc() == rhs.desc();
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTHash.h31 @param[in] rhs CPVRTHash to copy.
33 CPVRTHash(const CPVRTHash& rhs) : m_uiHash(rhs.m_uiHash) {} argument
79 @param[in] rhs
82 CPVRTHash& operator=(const CPVRTHash& rhs) argument
84 if(this != &rhs)
86 m_uiHash = rhs.m_uiHash;
/external/tensorflow/tensorflow/compiler/tf2xla/lib/
H A Dbatch_dot.cc75 // Check for zero lhs/rhs dim size.
103 auto rhs = transpose_y ? builder->Transpose(y, {1, 0}) : y; local
104 return builder->Dot(lhs, rhs);
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Druntime_single_threaded_matmul.cc28 void MatMul(const void* run_options_ptr, T* out, T* lhs, T* rhs, int64 m, argument
45 rhs, rhs_rows, rhs_cols);
56 // 0 of the rhs.
63 const void* run_options_ptr, float* out, float* lhs, float* rhs, int64 m,
66 xla::EigenMatVecF32(out, lhs, rhs, m, n, k, transpose_lhs, transpose_rhs);
68 MatMul<float>(run_options_ptr, out, lhs, rhs, m, n, k, transpose_lhs,
74 const void* run_options_ptr, double* out, double* lhs, double* rhs, int64 m,
77 xla::EigenMatVecF64(out, lhs, rhs, m, n, k, transpose_lhs, transpose_rhs);
79 MatMul<double>(run_options_ptr, out, lhs, rhs, m, n, k, transpose_lhs,
62 __xla_cpu_runtime_EigenSingleThreadedMatMulF32( const void* run_options_ptr, float* out, float* lhs, float* rhs, int64 m, int64 n, int64 k, int32 transpose_lhs, int32 transpose_rhs) argument
73 __xla_cpu_runtime_EigenSingleThreadedMatMulF64( const void* run_options_ptr, double* out, double* lhs, double* rhs, int64 m, int64 n, int64 k, int32 transpose_lhs, int32 transpose_rhs) argument

Completed in 1323 milliseconds

1234567891011>>