Lines Matching refs:CHECK
102 #define CHECK(tp, mask) do { \ macro
112 CHECK(u8, 0x0f); in test_variables()
113 CHECK(u8, 0xf0); in test_variables()
114 CHECK(u8, 0x38); in test_variables()
116 CHECK(u16, 0x0038); in test_variables()
117 CHECK(u16, 0x0380); in test_variables()
118 CHECK(u16, 0x3800); in test_variables()
119 CHECK(u16, 0x8000); in test_variables()
121 CHECK(u32, 0x80000000); in test_variables()
122 CHECK(u32, 0x7f000000); in test_variables()
123 CHECK(u32, 0x07e00000); in test_variables()
124 CHECK(u32, 0x00018000); in test_variables()
126 CHECK(u64, 0x8000000000000000ull); in test_variables()
127 CHECK(u64, 0x7f00000000000000ull); in test_variables()
128 CHECK(u64, 0x0001800000000000ull); in test_variables()
129 CHECK(u64, 0x0000000080000000ull); in test_variables()
130 CHECK(u64, 0x000000007f000000ull); in test_variables()
131 CHECK(u64, 0x0000000018000000ull); in test_variables()
132 CHECK(u64, 0x0000001f8000000ull); in test_variables()