Lines Matching defs:Compute
3156 template <typename T> bool Compute(T x, T y) const { return x == y; } in Compute() function
3199 template <typename T> bool Compute(T x, T y) const { return x != y; } in Compute() function
3236 template <typename T> bool Compute(T x, T y) const { return x < y; } in Compute() function
3273 template <typename T> bool Compute(T x, T y) const { return x <= y; } in Compute() function
3310 template <typename T> bool Compute(T x, T y) const { return x > y; } in Compute() function
3347 template <typename T> bool Compute(T x, T y) const { return x >= y; } in Compute() function
3385 template <typename T> bool Compute(T x, T y) const { in Compute() function
3425 template <typename T> bool Compute(T x, T y) const { in Compute() function
3465 template <typename T> bool Compute(T x, T y) const { in Compute() function
3505 template <typename T> bool Compute(T x, T y) const { in Compute() function
3535 int32_t Compute(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } in Compute() function
4177 template <typename T> T Compute(T x) const { return -x; } in Compute() function
4247 template <typename T> T Compute(T x, T y) const { return x + y; } in Compute() function
4280 template <typename T> T Compute(T x, T y) const { return x - y; } in Compute() function
4315 template <typename T> T Compute(T x, T y) const { return x * y; } in Compute() function
4481 T Compute(T value, int32_t distance, int32_t max_shift_distance) const { in Compute() function
4527 T Compute(T value, int32_t distance, int32_t max_shift_distance) const { in Compute() function
4573 T Compute(T value, int32_t distance, int32_t max_shift_distance) const { in Compute() function
4619 template <typename T> T Compute(T x, T y) const { return x & y; } in Compute() function
4656 template <typename T> T Compute(T x, T y) const { return x | y; } in Compute() function
4693 template <typename T> T Compute(T x, T y) const { return x ^ y; } in Compute() function
4729 T Compute(T value, int32_t distance, int32_t max_shift_value) const { in Compute() function
4825 template <typename T> T Compute(T x) const { return ~x; } in Compute() function
4858 template <typename T> bool Compute(T x) const { in Compute() function