Searched defs:PURE (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/include/ui/
H A DTMatHelpers.h33 #define PURE __attribute__((pure)) macro
51 inline int PURE transpose(int v) { return v; }
52 inline float PURE transpose(float v) { return v; }
53 inline double PURE transpose(double v) { return v; }
55 inline int PURE trace(int v) { return v; }
56 inline float PURE trace(float v) { return v; }
57 inline double PURE trace(double v) { return v; }
60 MATRIX PURE inverse(const MATRIX& src) {
111 MATRIX_R PURE multiply(const MATRIX_A& lhs, const MATRIX_B& rhs) {
130 MATRIX PURE transpos
255 #undef PURE macro
[all...]
H A DTVecHelpers.h30 #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 operato
375 #undef PURE macro
[all...]
H A Dmat4.h29 #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) {
393 #undef PURE macro
/frameworks/native/services/sensorservice/
H A Dvec.h29 #define PURE __attribute__((pure)) macro
67 VLHS<TYPE, SIZE> PURE doAdd(
82 VLHS<TYPE, SIZE> PURE doSub(
96 VEC<TYPE, SIZE> PURE doMulScalar(
110 VEC<TYPE, SIZE> PURE 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_produc
[all...]

Completed in 78 milliseconds