Lines Matching refs:static_if_boot_arg_uint64
15 v = static_if_boot_arg_uint64("key=2", "key", 0);
18 v = static_if_boot_arg_uint64("key=2 key=1", "key", 0);
21 v = static_if_boot_arg_uint64("-key", "key", 0);
24 v = static_if_boot_arg_uint64("key", "key", 0);
27 v = static_if_boot_arg_uint64("key=2 k", "key", 0);
30 v = static_if_boot_arg_uint64("key=0", "key", 1);
33 v = static_if_boot_arg_uint64("key=0b", "key", 1);
36 v = static_if_boot_arg_uint64("key=0x", "key", 1);
39 v = static_if_boot_arg_uint64("key=0b1010", "key", 1);
42 v = static_if_boot_arg_uint64("key=-0b1010", "key", 1);
45 v = static_if_boot_arg_uint64("key=012", "key", 1);
48 v = static_if_boot_arg_uint64("key=-012", "key", 1);
51 v = static_if_boot_arg_uint64("key=0xa", "key", 1);
54 v = static_if_boot_arg_uint64("key=-0xa", "key", 1);
57 v = static_if_boot_arg_uint64("key=0xA", "key", 1);
60 v = static_if_boot_arg_uint64("key=-0xA", "key", 1);
64 v = static_if_boot_arg_uint64("key=09", "key", 1);
67 v = static_if_boot_arg_uint64("key=8a9", "key", 1);
70 v = static_if_boot_arg_uint64("key=a", "key", 1);