Searched defs:operator (Results 1 - 25 of 3573) sorted by relevance

1234567891011>>

/external/llvm/lib/Support/
H A DBlockFrequency.cpp20 BlockFrequency &BlockFrequency::operator*=(BranchProbability Prob) {
25 BlockFrequency BlockFrequency::operator*(BranchProbability Prob) const {
31 BlockFrequency &BlockFrequency::operator/=(BranchProbability Prob) {
36 BlockFrequency BlockFrequency::operator/(BranchProbability Prob) const {
42 BlockFrequency &BlockFrequency::operator+=(BlockFrequency Freq) {
53 BlockFrequency BlockFrequency::operator+(BlockFrequency Freq) const {
59 BlockFrequency &BlockFrequency::operator-=(BlockFrequency Freq) {
68 BlockFrequency BlockFrequency::operator-(BlockFrequency Freq) const {
74 BlockFrequency &BlockFrequency::operator>>=(const unsigned count) {
/external/swiftshader/src/Renderer/
H A DVector.cpp22 Vector Vector::operator+() const
27 Vector Vector::operator-() const
32 Vector &Vector::operator+=(const Vector &v)
41 Vector &Vector::operator-=(const Vector &v)
50 Vector &Vector::operator*=(float s)
59 Vector &Vector::operator/=(float s)
66 bool operator==(const Vector &U, const Vector &v)
74 bool operator!=(const Vector &U, const Vector &v)
82 bool operator>(const Vector &u, const Vector &v)
90 bool operator<(cons
[all...]
H A DPoint.cpp21 Point &Point::operator+=(const Vector &v)
30 Point &Point::operator-=(const Vector &v)
39 Point operator+(const Point &P, const Vector &v)
44 Point operator-(const Point &P, const Vector &v)
49 Vector operator-(const Point &P, const Point &Q)
54 Point operator*(const Matrix &M, const Point &P)
61 Point operator*(const Point &P, const Matrix &M)
68 Point &operator*=(Point &P, const Matrix &M)
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DAPSInt.h36 APSInt &operator=(const APSInt &RHS) {
37 APInt::operator=(RHS);
42 APSInt &operator=(const APInt &RHS) {
44 APInt::operator=(RHS);
48 APSInt &operator=(uint64_t RHS) {
50 APInt::operator=(RHS);
89 const APSInt &operator%=(const APSInt &RHS) {
97 const APSInt &operator/=(const APSInt &RHS) {
105 APSInt operator%(const APSInt &RHS) const {
109 APSInt operator/(cons
[all...]
/external/pdfium/third_party/bigint/
H A DBigUnsigned.hh48 // Assignment operator
49 void operator=(const BigUnsigned &x) {
50 NumberlikeArray<Blk>::operator =(x);
124 bool operator ==(const BigUnsigned &x) const {
125 return NumberlikeArray<Blk>::operator ==(x);
127 bool operator !=(const BigUnsigned &x) const {
128 return NumberlikeArray<Blk>::operator !=(x);
130 bool operator < (const BigUnsigned &x) const { return compareTo(x) == less ; }
131 bool operator <=(const BigUnsigned &x) const { return compareTo(x) != greater; }
132 bool operator >
[all...]
/external/skia/src/core/
H A DSkFixed15.h22 explicit operator float() const { return fVal * (1/32768.0f); }
41 SkFixed15 operator +(SkFixed15 o) const { return fVal + o.fVal; }
42 SkFixed15 operator -(SkFixed15 o) const { return fVal - o.fVal; }
43 SkFixed15 operator *(SkFixed15 o) const { return (fVal * o.fVal + (1<<14)) >> 15; }
44 SkFixed15 operator<<(int bits) const { return fVal << bits; }
45 SkFixed15 operator>>(int bits) const { return fVal >> bits; }
47 SkFixed15& operator +=(SkFixed15 o) { return (*this = *this + o); }
48 SkFixed15& operator -=(SkFixed15 o) { return (*this = *this - o); }
49 SkFixed15& operator *=(SkFixed15 o) { return (*this = *this * o); }
50 SkFixed15& operator<<
[all...]
/external/eigen/Eigen/src/Core/
H A DSelfCwiseBinaryOp.h18 EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator*=(const Scalar& other)
26 EIGEN_STRONG_INLINE Derived& ArrayBase<Derived>::operator+=(const Scalar& other)
34 EIGEN_STRONG_INLINE Derived& ArrayBase<Derived>::operator-=(const Scalar& other)
42 EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator/=(const Scalar& other)
/external/llvm/include/llvm/ADT/
H A Diterator.h53 /// reference via a conversion operator.
62 operator ReferenceT() const { return *I; }
66 DerivedT operator+(DifferenceTypeT n) const {
69 "The '+' operator is only defined for random access iterators.");
74 friend DerivedT operator+(DifferenceTypeT n, const DerivedT &i) {
77 "The '+' operator is only defined for random access iterators.");
80 DerivedT operator-(DifferenceTypeT n) const {
83 "The '-' operator is only defined for random access iterators.");
89 DerivedT &operator++() {
90 return static_cast<DerivedT *>(this)->operator
[all...]
H A DAPSInt.h46 APSInt &operator=(APInt RHS) {
48 APInt::operator=(std::move(RHS));
52 APSInt &operator=(uint64_t RHS) {
54 APInt::operator=(RHS);
99 const APSInt &operator%=(const APSInt &RHS) {
107 const APSInt &operator/=(const APSInt &RHS) {
115 APSInt operator%(const APSInt &RHS) const {
119 APSInt operator/(const APSInt &RHS) const {
124 APSInt operator>>(unsigned Amt) const {
127 APSInt& operator>>
[all...]
H A DBitmaskEnum.h45 /// LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE() pulls the operator overloads used
51 /// namespace foo::bar. This allows the relevant operator overloads to be found
57 using ::llvm::BitmaskEnumDetail::operator~; \
58 using ::llvm::BitmaskEnumDetail::operator|; \
59 using ::llvm::BitmaskEnumDetail::operator&; \
60 using ::llvm::BitmaskEnumDetail::operator^; \
61 using ::llvm::BitmaskEnumDetail::operator|=; \
62 using ::llvm::BitmaskEnumDetail::operator&=; \
64 using ::llvm::BitmaskEnumDetail::operator^=
100 E operator~(
[all...]
/external/skia/include/private/
H A DSkBitmaskEnum.h16 template <typename E> SK_WHEN(skstd::is_bitmask_enum<E>::value, E) operator|(E l, E r) {
21 template <typename E> SK_WHEN(skstd::is_bitmask_enum<E>::value, E&) operator|=(E& l, E r) {
25 template <typename E> SK_WHEN(skstd::is_bitmask_enum<E>::value, E) operator&(E l, E r) {
30 template <typename E> SK_WHEN(skstd::is_bitmask_enum<E>::value, E&) operator&=(E& l, E r) {
/external/v8/src/base/
H A Dflags.h35 bool operator==(flag_type flag) const {
38 bool operator!=(flag_type flag) const {
42 Flags& operator&=(const Flags& flags) {
46 Flags& operator|=(const Flags& flags) {
50 Flags& operator^=(const Flags& flags) {
55 Flags operator&(const Flags& flags) const { return Flags(*this) &= flags; }
56 Flags operator|(const Flags& flags) const { return Flags(*this) |= flags; }
57 Flags operator^(const Flags& flags) const { return Flags(*this) ^= flags; }
59 Flags& operator&=(flag_type flag) { return operator
[all...]
/external/clang/test/CXX/special/class.free/
H A Dp1.cpp5 void *operator new(size_t) {
8 void *operator new[](size_t) {
H A Dp6.cpp5 void operator delete(void*) {
8 void operator delete[](void*) {
/external/clang/test/SemaCXX/Inputs/
H A Dwarn-new-overaligned-3.h6 void* operator new(unsigned long) {
9 void* operator new[](unsigned long) {
13 void* operator new(unsigned long, void *) {
17 void* operator new[](unsigned long, void *) {
/external/eigen/Eigen/src/plugins/
H A DCommonCwiseBinaryOps.h15 * \note If you want to substract a given scalar from all coefficients, see Cwise::operator-().
17 * \sa class CwiseBinaryOp, operator-=()
19 EIGEN_MAKE_CWISE_BINARY_OP(operator-,difference)
23 * \note If you want to add a given scalar to all coefficients, see Cwise::operator+().
25 * \sa class CwiseBinaryOp, operator+=()
27 EIGEN_MAKE_CWISE_BINARY_OP(operator+,sum)
29 /** \returns an expression of a custom coefficient-wise operator \a func of *this and \a other
32 * of the custom operator (see class CwiseBinaryOp for an example)
38 * \sa class CwiseBinaryOp, operator+(), operator
[all...]
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dpointer01.fail.cpp28 Deleter& operator=(Deleter&) {}
30 void operator()(void*) const {}
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dpointer01.fail.cpp27 Deleter& operator=(Deleter&) {}
29 void operator()(void*) const {}
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DFunctionId.h30 inline bool operator==(const FunctionId &A, const FunctionId &B) {
34 inline bool operator!=(const FunctionId &A, const FunctionId &B) {
38 inline bool operator<(const FunctionId &A, const FunctionId &B) {
42 inline bool operator<=(const FunctionId &A, const FunctionId &B) {
46 inline bool operator>(const FunctionId &A, const FunctionId &B) {
50 inline bool operator>=(const FunctionId &A, const FunctionId &B) {
/external/protobuf/src/google/protobuf/util/
H A Dtime_util.h162 LIBPROTOBUF_EXPORT Duration& operator+=(Duration& d1, const Duration& d2); // NOLINT
163 LIBPROTOBUF_EXPORT Duration& operator-=(Duration& d1, const Duration& d2); // NOLINT
164 LIBPROTOBUF_EXPORT Duration& operator*=(Duration& d, int64 r); // NOLINT
165 LIBPROTOBUF_EXPORT Duration& operator*=(Duration& d, double r); // NOLINT
166 LIBPROTOBUF_EXPORT Duration& operator/=(Duration& d, int64 r); // NOLINT
167 LIBPROTOBUF_EXPORT Duration& operator/=(Duration& d, double r); // NOLINT
170 Duration& operator*=(Duration& d, T r) { // NOLINT
175 Duration& operator/=(Duration& d, T r) { // NOLINT
179 LIBPROTOBUF_EXPORT Duration& operator%=(Duration& d1, const Duration& d2); // NOLINT
181 inline bool operator<(cons
[all...]
/external/libcxx/test/std/utilities/variant/variant.relops/
H A Drelops.pass.cpp17 // operator==(variant<Types...> const&, variant<Types...> const&) noexcept;
21 // operator!=(variant<Types...> const&, variant<Types...> const&) noexcept;
25 // operator<(variant<Types...> const&, variant<Types...> const&) noexcept;
29 // operator>(variant<Types...> const&, variant<Types...> const&) noexcept;
33 // operator<=(variant<Types...> const&, variant<Types...> const&) noexcept;
37 // operator>=(variant<Types...> const&, variant<Types...> const&) noexcept;
50 MakeEmptyT &operator=(MakeEmptyT &&) { throw 42; }
52 inline bool operator==(const MakeEmptyT &, const MakeEmptyT &) {
56 inline bool operator!=(const MakeEmptyT &, const MakeEmptyT &) {
60 inline bool operator<(cons
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineInstrBundleIterator.h50 Ty &operator*() const { return *MII; }
51 Ty *operator->() const { return &operator*(); }
54 operator Ty *() const { return MII.getNodePtrUnchecked(); }
56 bool operator==(const MachineInstrBundleIterator &X) const {
59 bool operator!=(const MachineInstrBundleIterator &X) const {
60 return !operator==(X);
64 MachineInstrBundleIterator &operator--() {
70 MachineInstrBundleIterator &operator++() {
76 MachineInstrBundleIterator operator
[all...]
/external/llvm/include/llvm/IR/
H A DDebugLoc.h41 DebugLoc &operator=(DebugLoc &&X) {
45 DebugLoc &operator=(const DebugLoc &X) {
66 operator DILocation *() const { return get(); }
67 DILocation *operator->() const { return get(); }
68 DILocation &operator*() const { return *get(); }
77 explicit operator bool() const { return Loc; }
115 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; }
116 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
/external/parameter-framework/asio/include/asio/ip/
H A Daddress_v4.hpp72 address_v4& operator=(const address_v4& other)
79 address_v4& operator=(address_v4&& other)
130 friend bool operator==(const address_v4& a1, const address_v4& a2)
136 friend bool operator!=(const address_v4& a1, const address_v4& a2)
142 friend bool operator<(const address_v4& a1, const address_v4& a2)
148 friend bool operator>(const address_v4& a1, const address_v4& a2)
154 friend bool operator<=(const address_v4& a1, const address_v4& a2)
160 friend bool operator>=(const address_v4& a1, const address_v4& a2)
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Daddress_v4.hpp72 address_v4& operator=(const address_v4& other)
79 address_v4& operator=(address_v4&& other)
130 friend bool operator==(const address_v4& a1, const address_v4& a2)
136 friend bool operator!=(const address_v4& a1, const address_v4& a2)
142 friend bool operator<(const address_v4& a1, const address_v4& a2)
148 friend bool operator>(const address_v4& a1, const address_v4& a2)
154 friend bool operator<=(const address_v4& a1, const address_v4& a2)
160 friend bool operator>=(const address_v4& a1, const address_v4& a2)

Completed in 541 milliseconds

1234567891011>>