• Home
  • Raw
  • Download

Lines Matching defs:Compute

3742   template <typename T> static bool Compute(T x, T y) { return x == y; }  in Compute()  function
3788 template <typename T> static bool Compute(T x, T y) { return x != y; } in Compute() function
3828 template <typename T> static bool Compute(T x, T y) { return x < y; } in Compute() function
3868 template <typename T> static bool Compute(T x, T y) { return x <= y; } in Compute() function
3907 template <typename T> static bool Compute(T x, T y) { return x > y; } in Compute() function
3946 template <typename T> static bool Compute(T x, T y) { return x >= y; } in Compute() function
3986 template <typename T> static bool Compute(T x, T y) { in Compute() function
4028 template <typename T> static bool Compute(T x, T y) { in Compute() function
4070 template <typename T> static bool Compute(T x, T y) { in Compute() function
4112 template <typename T> static bool Compute(T x, T y) { in Compute() function
4141 int32_t Compute(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } in Compute() function
4855 template <typename T> static T Compute(T x) { return -x; } in Compute() function
4934 template <typename T> static T Compute(T x, T y) { return x + y; } in Compute() function
4968 template <typename T> static T Compute(T x, T y) { return x - y; } in Compute() function
5004 template <typename T> static T Compute(T x, T y) { return x * y; } in Compute() function
5274 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute() function
5320 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute() function
5366 static T Compute(T value, int32_t distance, int32_t max_shift_distance) { in Compute() function
5413 template <typename T> static T Compute(T x, T y) { return x & y; } in Compute() function
5451 template <typename T> static T Compute(T x, T y) { return x | y; } in Compute() function
5489 template <typename T> static T Compute(T x, T y) { return x ^ y; } in Compute() function
5525 static T Compute(T value, int32_t distance, int32_t max_shift_value) { in Compute() function
5623 template <typename T> static T Compute(T x) { return ~x; } in Compute() function
5657 template <typename T> static bool Compute(T x) { in Compute() function