Searched refs:u (Results 1 – 5 of 5) sorted by relevance
/stdio-common/ |
A D | tst-sprintf3.c | 29 volatile union { long double l; long long x[2]; } u, v; in do_test() local 35 # define COMPARE_LDBL(u, v) \ in do_test() argument 36 ((u).l == (v).l && (u).x[0] == (v).x[0] && (u).x[1] == (v).x[1]) in do_test() 38 # define COMPARE_LDBL(u, v) ((u).l == (v).l) in do_test() argument 44 u.l = (val); \ in do_test() 45 snprintf (buf, sizeof buf, "%." #n "LgL", u.l); \ in do_test() 51 if (sscanf (#val, "%Lg", &v.l) != 1 || !COMPARE_LDBL (u, v)) \ in do_test() 54 __LINE__, u.l, v.l); \ in do_test()
|
A D | tst-sprintf2.c | 10 volatile union { long double l; long long x[2]; } u, v; in do_test() local 16 # define COMPARE_LDBL(u, v) \ in do_test() argument 17 ((u).l == (v).l && (u).x[0] == (v).x[0] && (u).x[1] == (v).x[1]) in do_test() 19 # define COMPARE_LDBL(u, v) ((u).l == (v).l) in do_test() argument 25 u.l = (val); \ in do_test() 26 snprintf (buf, sizeof buf, "%LaL", u.l); \ in do_test() 32 if (sscanf (#val, "%La", &v.l) != 1 || !COMPARE_LDBL (u, v)) \ in do_test() 35 u.l, v.l); \ in do_test()
|
A D | tst-printf-binary-main.c | 48 CHECK_PRINTF ("0", "%b", 0u); in do_test() 49 CHECK_PRINTF ("0", "%B", 0u); in do_test() 50 CHECK_PRINTF ("0", "%#b", 0u); in do_test() 51 CHECK_PRINTF ("0", "%#B", 0u); in do_test()
|
A D | bug17.c | 20 snprintf (buf, sizeof (buf), fmt2, 0u, 0uL, 0uLL); in do_test()
|
A D | printf_fp.c | 137 #define MPN_GE(u,v) \ argument 138 (u##size > v##size || (u##size == v##size && __mpn_cmp (u, v, u##size) >= 0))
|
Completed in 6 milliseconds