Searched defs:Compute (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | nodes_x86.h | 142 template <typename T> static T Compute(T x, T y) { return ~x & y; } in Compute() function
|
D | nodes.h | 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 [all …]
|