Home
last modified time | relevance | path

Searched refs:Quad_a16_t (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/openmp/runtime/src/
Dkmp_atomic.h282 struct KMP_DO_ALIGN(16) Quad_a16_t { struct
285 Quad_a16_t() : q() {} in Quad_a16_t() argument
286 Quad_a16_t(const _Quad &cq) : q(cq) {} in Quad_a16_t() function
288 Quad_a16_t operator+(const Quad_a16_t &b) {
291 return (Quad_a16_t)(lhs + rhs); argument
294 Quad_a16_t operator-(const Quad_a16_t &b) {
297 return (Quad_a16_t)(lhs - rhs); argument
299 Quad_a16_t operator*(const Quad_a16_t &b) {
302 return (Quad_a16_t)(lhs * rhs); argument
305 Quad_a16_t operator/(const Quad_a16_t &b) {
[all …]
Dkmp_atomic.cpp628 static inline Quad_a16_t operator+(Quad_a16_t &lhs, Quad_a16_t &rhs) { in operator +()
631 static inline Quad_a16_t operator-(Quad_a16_t &lhs, Quad_a16_t &rhs) { in operator -()
634 static inline Quad_a16_t operator*(Quad_a16_t &lhs, Quad_a16_t &rhs) { in operator *()
637 static inline Quad_a16_t operator/(Quad_a16_t &lhs, Quad_a16_t &rhs) { in operator /()
640 static inline bool operator<(Quad_a16_t &lhs, Quad_a16_t &rhs) { in operator <()
643 static inline bool operator>(Quad_a16_t &lhs, Quad_a16_t &rhs) { in operator >()
1212 MIN_MAX_CRITICAL(float16, max_a16, Quad_a16_t, <, 16r,
1214 MIN_MAX_CRITICAL(float16, min_a16, Quad_a16_t, >, 16r,
1304 ATOMIC_CRITICAL(float16, add_a16, Quad_a16_t, +, 16r,
1306 ATOMIC_CRITICAL(float16, sub_a16, Quad_a16_t, -, 16r,
[all …]