Searched defs:_x (Results 1 – 4 of 4) sorted by relevance
31 inline Point(int _x, int _y) : x(_x), y(_y) { in Point()
69 A(int _x) { in A()
288 #define PERFETTO_LIKELY(_x) __builtin_expect(!!(_x), 1) argument289 #define PERFETTO_UNLIKELY(_x) __builtin_expect(!!(_x), 0) argument291 #define PERFETTO_LIKELY(_x) (_x) argument292 #define PERFETTO_UNLIKELY(_x) (_x) argument
535 float _x[N]; in mat44Solve() local