Searched refs:PURE (Results 1 – 5 of 5) sorted by relevance
/frameworks/native/include/ui/ |
D | TMatHelpers.h | 33 #define PURE __attribute__((pure)) macro 51 inline int PURE transpose(int v) { return v; } in transpose() 52 inline float PURE transpose(float v) { return v; } in transpose() 53 inline double PURE transpose(double v) { return v; } in transpose() 55 inline int PURE trace(int v) { return v; } in trace() 56 inline float PURE trace(float v) { return v; } in trace() 57 inline double PURE trace(double v) { return v; } in trace() 60 MATRIX PURE inverse(const MATRIX& src) { in inverse() 111 MATRIX_R PURE multiply(const MATRIX_A& lhs, const MATRIX_B& rhs) { in multiply() 130 MATRIX PURE transpose(const MATRIX& m) { in transpose() [all …]
|
D | TVecHelpers.h | 30 #define PURE __attribute__((pure)) macro 124 BASE<T> PURE operator +(const BASE<T>& lv, const BASE<RT>& rv) { 129 BASE<T> PURE operator -(const BASE<T>& lv, const BASE<RT>& rv) { 140 BASE<T> PURE operator +(const BASE<T>& lv, const BASE<T>& rv) { 144 BASE<T> PURE operator -(const BASE<T>& lv, const BASE<T>& rv) { 205 BASE<T> PURE operator *(const BASE<T>& lv, const BASE<RT>& rv) { 210 BASE<T> PURE operator /(const BASE<T>& lv, const BASE<RT>& rv) { 221 BASE<T> PURE operator *(const BASE<T>& lv, const BASE<T>& rv) { 225 BASE<T> PURE operator /(const BASE<T>& lv, const BASE<T>& rv) { 287 bool PURE operator ==(const BASE<T>& lv, const BASE<RT>& rv) { [all …]
|
D | mat4.h | 29 #define PURE __attribute__((pure)) macro 342 typename tmat44<U>::col_type PURE operator *(const tmat44<T>& lv, const tvec4<U>& rv) { 351 typename tmat44<U>::row_type PURE operator *(const tvec4<U>& rv, const tmat44<T>& lv) { 360 tmat44<T> PURE operator *(const tmat44<T>& lv, U rv) { 369 tmat44<T> PURE operator *(U rv, const tmat44<T>& lv) { 382 typename tmat44<T>::col_type PURE diag(const tmat44<T>& m) { in diag() 393 #undef PURE
|
/frameworks/native/services/sensorservice/ |
D | vec.h | 29 #define PURE __attribute__((pure)) macro 67 VLHS<TYPE, SIZE> PURE doAdd( in doAdd() 82 VLHS<TYPE, SIZE> PURE doSub( in doSub() 96 VEC<TYPE, SIZE> PURE doMulScalar( in doMulScalar() 110 VEC<TYPE, SIZE> PURE doScalarMul( in doScalarMul() 145 inline VLHS<TYPE, SIZE> PURE operator + ( 157 inline VLHS<TYPE, SIZE> PURE operator - ( 168 inline VEC<TYPE, SIZE> PURE operator * ( 179 inline VEC<TYPE, SIZE> PURE operator * ( 192 TYPE PURE dot_product( in dot_product() [all …]
|
D | mat.h | 43 mat<TYPE, C, R> PURE doMul( in doMul() 61 vec<TYPE, R> PURE doMul( in doMul() 77 mat<TYPE, C, R> PURE doMul( in doMul() 91 mat<TYPE, C, R> PURE doMul( in doMul() 105 mat<TYPE, C, R> PURE doMul( in doMul() 172 friend inline mat PURE operator + (const mat& lhs, const mat& rhs) { 177 friend inline mat PURE operator - (const mat& lhs, const mat& rhs) { 185 friend mat PURE operator * ( 192 friend vec<TYPE, R> PURE operator * ( 198 friend mat PURE operator * ( [all …]
|