Lines Matching refs:MakeSwitchTestCase
239 SwitchTestCase MakeSwitchTestCase(uint32_t integer_width,
263 MakeSwitchTestCase(32, 0, "42", {42}, "100", {100}),
264 MakeSwitchTestCase(32, 1, "-1", {0xffffffff}, "100", {100}),
268 MakeSwitchTestCase(7, 0, "127", {127}, "100", {100}),
269 MakeSwitchTestCase(14, 0, "99", {99}, "100", {100}),
270 MakeSwitchTestCase(16, 0, "65535", {65535}, "100", {100}),
271 MakeSwitchTestCase(16, 1, "101", {101}, "100", {100}),
273 MakeSwitchTestCase(16, 1, "-2", {0xfffffffe}, "100", {100}),
275 MakeSwitchTestCase(16, 1, "0x7ffe", {0x7ffe}, "0x1234", {0x1234}),
276 MakeSwitchTestCase(16, 1, "0x8000", {0xffff8000}, "0x8100",
278 MakeSwitchTestCase(16, 0, "0x8000", {0x00008000}, "0x8100", {0x8100}),
285 MakeSwitchTestCase(33, 0, "101", {101, 0}, "500", {500, 0}),
286 MakeSwitchTestCase(48, 1, "-1", {0xffffffff, 0xffffffff}, "900",
288 MakeSwitchTestCase(64, 1, "-2", {0xfffffffe, 0xffffffff}, "-5",
291 MakeSwitchTestCase(48, 1, "0x7fffffffffff", {0xffffffff, 0x00007fff},
293 MakeSwitchTestCase(48, 1, "0x800000000000", {0x00000000, 0xffff8000},
295 MakeSwitchTestCase(48, 0, "0x800000000000", {0x00000000, 0x00008000},
297 MakeSwitchTestCase(63, 0, "0x500000000", {0, 5}, "12", {12, 0}),
298 MakeSwitchTestCase(64, 0, "0x600000000", {0, 6}, "12", {12, 0}),
299 MakeSwitchTestCase(64, 1, "0x700000123", {0x123, 7}, "12", {12, 0}),