Lines Matching refs:LEFT
61 #define VERIFY3B(LEFT, OP, RIGHT) \ argument
63 const boolean_t __left = (boolean_t)(LEFT); \
67 "%s %s %s (0x%llx %s 0x%llx)", #LEFT, #OP, #RIGHT, \
71 #define VERIFY3S(LEFT, OP, RIGHT) \ argument
73 const int64_t __left = (int64_t)(LEFT); \
77 "%s %s %s (0x%llx %s 0x%llx)", #LEFT, #OP, #RIGHT, \
81 #define VERIFY3U(LEFT, OP, RIGHT) \ argument
83 const uint64_t __left = (uint64_t)(LEFT); \
87 "%s %s %s (0x%llx %s 0x%llx)", #LEFT, #OP, #RIGHT, \
91 #define VERIFY3P(LEFT, OP, RIGHT) \ argument
93 const uintptr_t __left = (uintptr_t)(LEFT); \
97 "%s %s %s (0x%llx %s 0x%llx)", #LEFT, #OP, #RIGHT, \
101 #define VERIFY0(LEFT) \ argument
103 const uint64_t __left = (uint64_t)(LEFT); \
106 "%s == 0 (0x%llx == 0)", #LEFT, \