Searched defs:rhs (Results 126 - 150 of 738) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_renderoptions.cpp15 CPDF_RenderOptions::CPDF_RenderOptions(const CPDF_RenderOptions& rhs) argument
16 : m_ColorMode(rhs.m_ColorMode),
17 m_Flags(rhs.m_Flags),
18 m_dwLimitCacheSize(rhs.m_dwLimitCacheSize),
19 m_bDrawAnnots(rhs.m_bDrawAnnots),
20 m_pOCContext(rhs.m_pOCContext) {}
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_glyph_info.cc46 bool BitmapGlyphInfo::operator==(const BitmapGlyphInfo& rhs) const {
47 return (format_ == rhs.format_ &&
48 glyph_id_ == rhs.glyph_id_ &&
49 length_ == rhs.length_ &&
50 offset() == rhs.offset());
53 bool BitmapGlyphInfo::operator==(BitmapGlyphInfo* rhs) { argument
54 if (rhs == NULL) {
57 return (format_ == rhs->format() &&
58 glyph_id_ == rhs->glyph_id() &&
59 length_ == rhs
63 operator ()(BitmapGlyphInfo* lhs, BitmapGlyphInfo* rhs) argument
[all...]
/external/sfntly/cpp/src/sfntly/table/
H A Dheader.cc57 const HeaderPtr rhs) {
58 return lhs->offset_ > rhs->offset_;
62 const HeaderPtr rhs) {
63 return lhs->tag_ > rhs->tag_;
56 operator ()(const HeaderPtr lhs, const HeaderPtr rhs) argument
61 operator ()(const HeaderPtr lhs, const HeaderPtr rhs) argument
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DSourceLocation.h35 inline bool operator==(const SourceLocation &lhs, const SourceLocation &rhs) argument
37 return lhs.equals(rhs);
40 inline bool operator!=(const SourceLocation &lhs, const SourceLocation &rhs) argument
42 return !lhs.equals(rhs);
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
72 FilePath& operator=(const FilePath& rhs) { argument
73 Set(rhs);
77 void Set(const FilePath& rhs) { argument
78 pathname_ = rhs.pathname_;
/external/tensorflow/tensorflow/compiler/xla/client/lib/
H A Darithmetic.cc46 auto rhs = b->Parameter(1, scalar, "rhs"); local
47 generator(b.get(), lhs, rhs);
57 const ComputationDataHandle& rhs) { return b->Add(lhs, rhs); });
65 const ComputationDataHandle& rhs) { return b->Mul(lhs, rhs); });
73 const ComputationDataHandle& rhs) { return b->Ge(lhs, rhs); });
81 const ComputationDataHandle& rhs) { retur
[all...]
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dpred_test.cc32 void TestCompare(bool lhs, bool rhs, bool expected, argument
39 ComputationDataHandle rhs_op = builder.ConstantR0<bool>(rhs);
/external/tensorflow/tensorflow/core/common_runtime/gpu/
H A Dgpu_device_test.cc51 static bool StartsWith(const string& lhs, const string& rhs) { argument
52 if (rhs.length() > lhs.length()) return false;
53 return lhs.substr(0, rhs.length()) == rhs;
/external/tensorflow/tensorflow/core/kernels/
H A Dassign_op.h42 const Tensor& rhs = context->input(1); variable
61 const bool same_shape = old_lhs.shape().IsSameSize(rhs.shape());
68 " rhs shape= ", rhs.shape().DebugString()));
73 // 1. If we can reuse the rhs buffer we avoid both a memory allocation
76 // rhs we can avoid a memory allocation.
78 // 1. Try to reuse the rhs.
90 old_lhs.shape().num_elements() == rhs.shape().num_elements()) {
97 CHECK(reshaped_old_lhs.CopyFrom(old_lhs, rhs.shape()));
101 Copy(context, &reshaped_old_lhs, rhs);
[all...]
H A Dmatrix_solve_ls_op_impl.h76 const ConstMatrixMap& rhs = inputs[1]; variable
119 outputs->at(0).noalias() = matrix.adjoint() * rhs;
140 outputs->at(0).noalias() = matrix.adjoint() * llt.solve(rhs);
153 outputs->at(0) = matrix.completeOrthogonalDecomposition().solve(rhs);
H A Dtensor_array.cc84 Status TensorArray::CopyShapesFrom(TensorArray* rhs) { argument
86 mutex_lock l_rhs(rhs->mu_);
88 TF_RETURN_IF_ERROR(rhs->LockedReturnIfClosed());
89 if (tensors_.size() != rhs->tensors_.size()) {
92 handle_.vec<string>()(1), " has size ", tensors_.size(), " but rhs ",
93 rhs->handle_.vec<string>()(1), " has size ", rhs->tensors_.size());
97 if (!rhs->tensors_[i].written) continue;
100 tensors_[i].shape = rhs->tensors_[i].shape;
/external/v8/src/compiler/
H A Dframe-states.cc33 bool operator==(FrameStateInfo const& lhs, FrameStateInfo const& rhs) { argument
34 return lhs.type() == rhs.type() && lhs.bailout_id() == rhs.bailout_id() &&
35 lhs.state_combine() == rhs.state_combine() &&
36 lhs.function_info() == rhs.function_info();
40 bool operator!=(FrameStateInfo const& lhs, FrameStateInfo const& rhs) { argument
41 return !(lhs == rhs);
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dfunction-templates-expected.cc23 Checked(const Checked<U, V>& rhs) { argument
24 if (rhs.HasOverflowed())
26 if (!IsInBounds<T>(rhs.value_))
28 value_ = static_cast<T>(rhs.value_);
H A Dfunction-templates-original.cc23 Checked(const Checked<U, V>& rhs){ argument
24 if (rhs.hasOverflowed())
26 if (!isInBounds<T>(rhs.m_value))
28 m_value = static_cast<T>(rhs.m_value);
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
H A Dgtest-filepath.h62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } argument
68 FilePath& operator=(const FilePath& rhs) { argument
69 Set(rhs);
73 void Set(const FilePath& rhs) { argument
74 pathname_ = rhs.pathname_;
/external/webrtc/webrtc/modules/video_coding/
H A Dencoded_frame.cc30 VCMEncodedFrame::VCMEncodedFrame(const webrtc::EncodedImage& rhs) argument
31 : webrtc::EncodedImage(rhs),
43 if (rhs._buffer != NULL) {
44 VerifyAndAllocate(rhs._length);
45 memcpy(_buffer, rhs._buffer, rhs._length);
49 VCMEncodedFrame::VCMEncodedFrame(const VCMEncodedFrame& rhs) argument
50 : webrtc::EncodedImage(rhs),
51 _renderTimeMs(rhs._renderTimeMs),
52 _payloadType(rhs
[all...]
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
H A DMockRectF.java39 public void $init(RectF rhs) { argument
40 it.left = rhs.left;
41 it.top = rhs.top;
42 it.right = rhs.right;
43 it.bottom = rhs.bottom;
/external/clang/test/Sema/
H A Daarch64-neon-ranges.c22 void test_mul_lane_f64(float64x1_t small, float64x2_t big, float64x2_t rhs) { argument
/external/conscrypt/platform/src/main/java/org/conscrypt/
H A DCertificatePriorityComparator.java79 public int compare(X509Certificate lhs, X509Certificate rhs) { argument
82 boolean rhsSelfSigned = rhs.getSubjectDN().equals(rhs.getIssuerDN());
88 result = compareStrength(rhs, lhs);
94 Date rhsNotAfter = rhs.getNotAfter();
101 Date rhsNotBefore = rhs.getNotBefore();
105 private int compareStrength(X509Certificate lhs, X509Certificate rhs) { argument
108 PublicKey rhsPublicKey = rhs.getPublicKey();
117 return compareSignatureAlgorithm(lhs, rhs);
120 private int compareKeyAlgorithm(PublicKey lhs, PublicKey rhs) { argument
136 compareKeySize(PublicKey lhs, PublicKey rhs) argument
158 compareSignatureAlgorithm(X509Certificate lhs, X509Certificate rhs) argument
[all...]
/external/drm_hwcomposer/
H A Dautofd.h29 UniqueFd(UniqueFd &&rhs) { argument
30 fd_ = rhs.fd_;
31 rhs.fd_ = -1;
34 UniqueFd &operator=(UniqueFd &&rhs) { argument
35 Set(rhs.Release());
75 OutputFd(OutputFd &&rhs) { argument
76 fd_ = rhs.fd_;
77 rhs.fd_ = NULL;
80 OutputFd &operator=(OutputFd &&rhs) { argument
81 fd_ = rhs
[all...]

Completed in 594 milliseconds

1234567891011>>