HomeSort by relevance Sort by last modified time
    Searched refs:rhs (Results 151 - 175 of 3392) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/drm_hwcomposer/
separate_rects.h 49 Rect(const Rect<T> &rhs) {
51 bounds[i] = rhs.bounds[i];
55 Rect<TFloat> &operator=(const Rect<T> &rhs) {
57 bounds[i] = rhs.bounds[i];
61 bool operator==(const Rect &rhs) const {
63 if (bounds[i] != rhs.bounds[i])
116 bool operator==(const IdSet<TId> &rhs) const {
117 return bitset == rhs.bitset;
120 bool operator<(const IdSet<TId> &rhs) const {
121 return bitset < rhs.bitset
    [all...]
  /external/libcxx/test/std/algorithms/alg.sorting/alg.merge/
inplace_merge.pass.cpp 29 S(const S& rhs) : i_(rhs.i_) {}
30 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; }
32 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; }
33 S& operator =( S&& rhs) { i_ = rhs.i_; rhs.i_ = -2; assert(this != &rhs); return *this;
    [all...]
  /external/libmojo/ui/gfx/geometry/
point_f.h 65 bool operator<(const PointF& rhs) const {
66 return std::tie(y_, x_) < std::tie(rhs.y_, rhs.x_);
85 inline bool operator==(const PointF& lhs, const PointF& rhs) {
86 return lhs.x() == rhs.x() && lhs.y() == rhs.y();
89 inline bool operator!=(const PointF& lhs, const PointF& rhs) {
90 return !(lhs == rhs);
93 inline PointF operator+(const PointF& lhs, const Vector2dF& rhs) {
95 result += rhs;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.merge/
inplace_merge.pass.cpp 29 S(const S& rhs) : i_(rhs.i_) {}
30 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; }
32 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; }
33 S& operator =( S&& rhs) { i_ = rhs.i_; rhs.i_ = -2; assert(this != &rhs); return *this;
    [all...]
  /external/gemmlowp/meta/
quantized_mul_kernels_arm_32.h 29 8>::Multiply(const uint8_t* lhs, const uint8_t* rhs,
44 "pld [%[rhs]]\n"
56 "vld1.32 {d3}, [%[rhs]:64]!\n"
58 "pld [%[rhs], #64]\n"
67 "vld1.32 {d10, d11}, [%[rhs]:64]!\n"
90 : [rhs] "+r"(rhs), [lhs] "+r"(lhs), [result] "+r"(result)
103 8>::Multiply(const uint8_t* lhs, const uint8_t* rhs,
118 "pld [%[rhs]]\n"
131 "vld1.32 {d5, d6}, [%[rhs]:64]!\n
    [all...]
quantized_mul_kernels_arm_64.h 29 8>::Multiply(const uint8_t* lhs, const uint8_t* rhs,
44 "prfm pldl1keep, [%x[rhs]]\n"
56 "ld1 {v2.2s}, [%x[rhs]], #8\n"
58 "prfm pldl1keep, [%x[rhs], #64]\n"
67 "ld1 {v5.4s}, [%x[rhs]], #16\n"
90 : [rhs] "+r"(rhs), [lhs] "+r"(lhs), [result] "+r"(result)
102 8>::Multiply(const uint8_t* lhs, const uint8_t* rhs,
117 "prfm pldl1keep, [%x[rhs]]\n"
130 "ld1 {v3.2s, v4.2s}, [%x[rhs]], #16\n
    [all...]
  /external/capstone/bindings/
const_generator.py 105 rhs = ''.join(f[2:])
107 rhs = str(count)
111 count = int(rhs) + 1
117 rhs = rhs.replace('<<', ' lsl ')
118 rhs = rhs.replace('|', ' lor ')
120 if rhs[0].isalpha():
121 rhs = '_' + rhs
    [all...]
  /external/icu/icu4c/source/i18n/
fpositer.cpp 33 FieldPositionIterator::FieldPositionIterator(const FieldPositionIterator &rhs)
34 : UObject(rhs), data(NULL), pos(rhs.pos) {
36 if (rhs.data) {
39 data->assign(*rhs.data, status);
48 UBool FieldPositionIterator::operator==(const FieldPositionIterator &rhs) const {
49 if (&rhs == this) {
52 if (pos != rhs.pos) {
56 return rhs.data == NULL;
58 return rhs.data ? data->operator==(*rhs.data) : FALSE
    [all...]
digitaffixesandpadding.h 101 * Returns TRUE if this object is equal to rhs.
103 UBool equals(const DigitAffixesAndPadding &rhs) const {
104 return (fPositivePrefix.equals(rhs.fPositivePrefix) &&
105 fPositiveSuffix.equals(rhs.fPositiveSuffix) &&
106 fNegativePrefix.equals(rhs.fNegativePrefix) &&
107 fNegativeSuffix.equals(rhs.fNegativeSuffix) &&
108 fPadPosition == rhs.fPadPosition &&
109 fWidth == rhs.fWidth &&
110 fPadChar == rhs.fPadChar);
  /frameworks/base/tools/aapt/
Symbol.h 33 inline bool operator<(const Symbol& rhs) const;
48 inline bool operator<(const SymbolDefinition& rhs) const;
77 bool Symbol::operator<(const Symbol& rhs) const {
78 return (package < rhs.package) || (type < rhs.type) || (name < rhs.name) || (id < rhs.id);
90 bool SymbolDefinition::operator<(const SymbolDefinition& rhs) const {
91 return (symbol < rhs.symbol) || (config < rhs.config) || (source < rhs.source)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/include/vulkan/
vulkan.hpp 84 Flags(Flags<BitType> const& rhs)
85 : m_mask(rhs.m_mask)
89 Flags<BitType> & operator=(Flags<BitType> const& rhs)
91 m_mask = rhs.m_mask;
95 Flags<BitType> & operator|=(Flags<BitType> const& rhs)
97 m_mask |= rhs.m_mask;
101 Flags<BitType> & operator&=(Flags<BitType> const& rhs)
103 m_mask &= rhs.m_mask;
107 Flags<BitType> & operator^=(Flags<BitType> const& rhs)
109 m_mask ^= rhs.m_mask
    [all...]
  /art/runtime/base/
dumpable-inl.h 27 inline std::ostream& operator<<(std::ostream& os, const MutatorLockedDumpable<T>& rhs) {
29 rhs.Dump(os);
  /external/clang/test/Sema/
arm64-neon-args.c 12 float32x4_t test_vmlsq_lane(float32x4_t accum, float32x4_t lhs, float32x2_t rhs) {
13 return vmlsq_lane_f32(accum, lhs, rhs, 1);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RawCollationKey.java 91 * @param rhs the RawCollationKey to compare to.
93 * greater than rhs.
96 public int compareTo(RawCollationKey rhs) {
97 int result = super.compareTo(rhs);
  /external/icu/icu4c/source/test/intltest/
icusvtst.h 40 UnicodeString& lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const;
43 void confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
45 void confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs);
46 void confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs);
47 void confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs);
49 void confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs);
50 void confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
51 void confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs);
  /external/libcxx/test/std/atomics/atomics.types.generic/
trivially_copyable.fail.cpp 58 NotTriviallyCopyable ( const NotTriviallyCopyable &rhs) : i_(rhs.i_) {}
  /external/libcxx/test/support/
Counter.h 25 Counter(const Counter& rhs) : data_(rhs.data_) { ++gConstructed; }
26 Counter& operator=(const Counter& rhs) { ++gConstructed; data_ = rhs.data_; return *this; }
28 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; }
29 Counter& operator=(Counter&& rhs) { ++gConstructed; data_ = std::move(rhs.data_); return *this; }
  /external/v8/src/base/
bits.h 215 // SignedAddOverflow32(lhs,rhs,val) performs a signed summation of |lhs| and
216 // |rhs| and stores the result into the variable pointed to by |val| and
218 inline bool SignedAddOverflow32(int32_t lhs, int32_t rhs, int32_t* val) {
220 return __builtin_sadd_overflow(lhs, rhs, val);
222 uint32_t res = static_cast<uint32_t>(lhs) + static_cast<uint32_t>(rhs);
224 return ((res ^ lhs) & (res ^ rhs) & (1U << 31)) != 0;
229 // SignedSubOverflow32(lhs,rhs,val) performs a signed subtraction of |lhs| and
230 // |rhs| and stores the result into the variable pointed to by |val| and
232 inline bool SignedSubOverflow32(int32_t lhs, int32_t rhs, int32_t* val) {
234 return __builtin_ssub_overflow(lhs, rhs, val)
    [all...]
  /frameworks/base/tools/aapt2/
Source.h 63 inline bool operator==(const Source& lhs, const Source& rhs) {
64 return lhs.path == rhs.path && lhs.line == rhs.line;
67 inline bool operator<(const Source& lhs, const Source& rhs) {
68 int cmp = lhs.path.compare(rhs.path);
72 if (rhs.line) {
73 return lhs.line.value() < rhs.line.value();
77 return bool(rhs.line);
  /hardware/qcom/display/msm8909/libcopybit/
software_converter.h 51 struct copybit_image_t const *rhs);
63 struct copybit_image_t const *rhs);
  /hardware/qcom/display/msm8909w_3100/libcopybit/
software_converter.h 51 struct copybit_image_t const *rhs);
63 struct copybit_image_t const *rhs);
  /hardware/qcom/display/msm8996/libcopybit/
software_converter.h 51 struct copybit_image_t const *rhs);
63 struct copybit_image_t const *rhs);
  /hardware/qcom/display/msm8998/libcopybit/
software_converter.h 51 struct copybit_image_t const *rhs);
63 struct copybit_image_t const *rhs);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.types.generic/
trivially_copyable.fail.cpp 58 NotTriviallyCopyable ( const NotTriviallyCopyable &rhs) : i_(rhs.i_) {}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
Counter.h 25 Counter(const Counter& rhs) : data_(rhs.data_) { ++gConstructed; }
26 Counter& operator=(const Counter& rhs) { ++gConstructed; data_ = rhs.data_; return *this; }
28 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; }
29 Counter& operator=(Counter&& rhs) { ++gConstructed; data_ = std::move(rhs.data_); return *this; }

Completed in 1151 milliseconds

1 2 3 4 5 67 8 91011>>