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 | 3758 template <typename T> static bool Compute(T x, T y) { return x == y; } in Compute() function 3804 template <typename T> static bool Compute(T x, T y) { return x != y; } in Compute() function 3844 template <typename T> static bool Compute(T x, T y) { return x < y; } in Compute() function 3884 template <typename T> static bool Compute(T x, T y) { return x <= y; } in Compute() function 3923 template <typename T> static bool Compute(T x, T y) { return x > y; } in Compute() function 3962 template <typename T> static bool Compute(T x, T y) { return x >= y; } in Compute() function 4002 template <typename T> static bool Compute(T x, T y) { in Compute() function 4044 template <typename T> static bool Compute(T x, T y) { in Compute() function 4086 template <typename T> static bool Compute(T x, T y) { in Compute() function 4128 template <typename T> static bool Compute(T x, T y) { in Compute() function [all …]
|