1 #define VALUE 0x123456789abcdefLL
5 test1 (int a
, long long value
, int after
)
14 test2 (int a
, int b
, long long value
, int after
)
24 test3 (int a
, int b
, int c
, long long value
, int after
)
35 test4 (int a
, int b
, int c
, int d
, long long value
, int after
)
47 test5 (int a
, int b
, int c
, int d
, int e
, long long value
, int after
)
60 test6 (int a
, int b
, int c
, int d
, int e
, int f
, long long value
, int after
)
74 test7 (int a
, int b
, int c
, int d
, int e
, int f
, int g
, long long value
, int after
)
89 test8 (int a
, int b
, int c
, int d
, int e
, int f
, int g
, int h
, long long value
, int after
)
107 test1 (1, VALUE
, AFTER
);
108 test2 (1, 2, VALUE
, AFTER
);
109 test3 (1, 2, 3, VALUE
, AFTER
);
110 test4 (1, 2, 3, 4, VALUE
, AFTER
);
111 test5 (1, 2, 3, 4, 5, VALUE
, AFTER
);
112 test6 (1, 2, 3, 4, 5, 6, VALUE
, AFTER
);
113 test7 (1, 2, 3, 4, 5, 6, 7, VALUE
, AFTER
);
114 test8 (1, 2, 3, 4, 5, 6, 7, 8, VALUE
, AFTER
);