Lines Matching defs:Compute

3814   template <typename T> static bool Compute(T x, T y) { return x == y; }  in Compute()  function
3860 template <typename T> static bool Compute(T x, T y) { return x != y; } in Compute() function
3900 template <typename T> static bool Compute(T x, T y) { return x < y; } in Compute() function
3940 template <typename T> static bool Compute(T x, T y) { return x <= y; } in Compute() function
3979 template <typename T> static bool Compute(T x, T y) { return x > y; } in Compute() function
4018 template <typename T> static bool Compute(T x, T y) { return x >= y; } in Compute() function
4058 template <typename T> static bool Compute(T x, T y) { in Compute() function
4100 template <typename T> static bool Compute(T x, T y) { in Compute() function
4142 template <typename T> static bool Compute(T x, T y) { in Compute() function
4184 template <typename T> static bool Compute(T x, T y) { in Compute() function
4211 int32_t Compute(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } in Compute() function
4966 template <typename T> static T Compute(T x) { return -x; } in Compute() function
5045 template <typename T> static T Compute(T x, T y) { return x + y; } in Compute() function
5079 template <typename T> static T Compute(T x, T y) { return x - y; } in Compute() function
5115 template <typename T> static T Compute(T x, T y) { return x * y; } in Compute() function
5385 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute() function
5431 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute() function
5477 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute() function
5524 template <typename T> static T Compute(T x, T y) { return x & y; } in Compute() function
5562 template <typename T> static T Compute(T x, T y) { return x | y; } in Compute() function
5600 template <typename T> static T Compute(T x, T y) { return x ^ y; } in Compute() function
5634 static T Compute(T value, int32_t distance, int32_t max_shift_value) { in Compute() function
5732 template <typename T> static T Compute(T x) { return ~x; } in Compute() function
5766 template <typename T> static bool Compute(T x) { in Compute() function