Home
last modified time | relevance | path

Searched refs:PREC (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/regress/lib/libm/complex/
H A Dcomplex.c11 #define PREC 1000 macro
13 floor((__real__ (f)) * PREC) == floor((r) * PREC) && \
14 floor((__imag__ (f)) * PREC) == floor((i) * PREC) \
17 floorf((__real__ (f)) * PREC) == floorf((r) * PREC) && \
18 floorf((__imag__ (f)) * PREC) == floorf((i) * PREC) \
21 floorl((__real__ (f)) * PREC) == floorl((r) * PREC) && \
22 floorl((__imag__ (f)) * PREC) == floorl((i) * PREC) \
/openbsd-src/lib/libm/src/
H A Ds_cosl.c43 #define PREC 2 macro
46 #define PREC 3 macro
61 double xd[NX], yd[PREC]; in cosl()
88 e0 = __kernel_rem_pio2(xd, yd, e0, NX, PREC); in cosl()
90 #if PREC == 2 in cosl()
H A Ds_tanl.c44 #define PREC 2 macro
47 #define PREC 3 macro
62 double xd[NX], yd[PREC]; in tanl()
92 e0 = __kernel_rem_pio2(xd, yd, e0, NX, PREC); in tanl()
94 #if PREC == 2 in tanl()
H A Ds_sinl.c41 #define PREC 2 macro
44 #define PREC 3 macro
59 double xd[NX], yd[PREC]; in sinl()
89 e0 = __kernel_rem_pio2(xd, yd, e0, NX, PREC); in sinl()
91 #if PREC == 2 in sinl()
H A Ds_sincosl.c39 #define PREC 2 macro
43 #define PREC 3 macro
58 double xd[NX], yd[PREC]; in sincosl()
94 e0 = __kernel_rem_pio2(xd, yd, e0, NX, PREC); in sincosl()
96 #if PREC == 2 in sincosl()
/openbsd-src/gnu/gcc/gcc/
H A Dpretty-print.c41 #define pp_integer_with_precision(PP, ARG, PREC, T, F) \ argument
43 switch (PREC) \
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A DChangeLog.65973 * fold-const.c (lshift_double): Honor PREC.