Lines Matching defs:operator
105 operator=(const MyClass& that)
112 operator[](size_t idx) const
119 operator[](size_t idx)
142 /// Equality operator, required to compare thread contexts.
145 operator==(const VecPredRegT<VE2, NE2, P2, C2>& that) const
150 /// Inequality operator, required to compare thread contexts.
153 operator!=(const VecPredRegT<VE2, NE2, P2, C2>& that) const
155 return !operator==(that);
159 operator<<(std::ostream& os, const MyClass& p)
202 if (mask[i] && operator[](i)) {
221 return operator[](i);
253 operator=(const MyClass& that)
263 operator=(const std::vector<uint8_t>& that)
284 /// Equality operator, required to compare thread contexts.
287 operator==(const VecPredRegContainer<N2, P2>& that) const
292 /// Inequality operator, required to compare thread contexts.
295 operator!=(const VecPredRegContainer<N2, P2>& that) const
297 return !operator==(that);
301 bool& operator[](size_t idx) { return container[idx]; }
305 const bool& operator[](size_t idx) const { return container[idx]; }
338 operator<<(std::ostream& os, const MyClass& v)