OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Ny
(Results
1 - 19
of
19
) sorted by relevancy
/src/external/mit/isl/dist/test_inputs/codegen/cloog/
pouchet.c
1
for (int c0 = 1; c0 <= floord(
Ny
, 2) + 2; c0 += 1)
2
for (int c1 = max(c0 - 1, c0 / 2 + 1); c1 <= min(c0, (
Ny
+ 2 * c0) / 4); c1 += 1) {
3
if (
Ny
+ 2 * c0 >= 4 * c1 + 1) {
10
S2((-
Ny
+ 2 * c0) / 4, (
Ny
+ 2 * c0) / 4, (-
Ny
/ 2) + c0,
Ny
- 1, c2);
/src/external/lgpl3/mpfr/dist/src/
factorial.c
40
mpfr_prec_t
Ny
; /* Precision of output variable */
55
Ny
= MPFR_PREC (y);
58
Nt =
Ny
+ 2 * MPFR_INT_CEIL_LOG2 (x) + 7;
79
round = !inexact || MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode);
asinh.c
34
mpfr_prec_t
Ny
, Nt;
71
Ny
= MPFR_PREC (y); /* Precision of output variable */
80
Nt =
Ny
+ 4 + MPFR_INT_CEIL_LOG2 (
Ny
);
103
|| MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
cosh.c
75
mpfr_prec_t
Ny
= MPFR_PREC(y); /* Precision of output variable */
83
Nt =
Ny
+ 3 + MPFR_INT_CEIL_LOG2 (
Ny
);
111
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
log10.c
99
mpfr_prec_t
Ny
= MPFR_PREC(r); /* Precision of output variable */
105
Nt =
Ny
+ 4 + MPFR_INT_CEIL_LOG2 (
Ny
);
123
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
log2.c
100
mpfr_prec_t
Ny
= MPFR_PREC(r); /* target precision */
107
Nt =
Ny
+ 3 + MPFR_INT_CEIL_LOG2 (
Ny
);
124
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
atanh.c
107
mpfr_prec_t Nx,
Ny
, Nt;
159
Ny
= MPFR_PREC (y);
160
Nt = MAX (Nx,
Ny
);
175
k = 1 + __gmpfr_int_ceil_log2 (
Ny
); /* the +1 avoids a division by 0
176
when
Ny
=1 */
177
if (MPFR_GET_EXP (x) <= - 1 - (mpfr_exp_t) (
Ny
/ k))
198
|| MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
log1p.c
178
mpfr_prec_t
Ny
= MPFR_PREC(y); /* target precision */
185
Nt =
Ny
+ MPFR_INT_CEIL_LOG2 (
Ny
) + 6;
203
k = 1 + __gmpfr_int_ceil_log2 (
Ny
); /* the +1 avoids a division by 0
204
when
Ny
=1 */
205
if (MPFR_GET_EXP (x) + 1 <= - (mpfr_exp_t) (
Ny
/ k))
227
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
acosh.c
76
mpfr_prec_t
Ny
= MPFR_PREC(y); /* Precision of output variable */
83
Nt =
Ny
+ 4 + MPFR_INT_CEIL_LOG2 (
Ny
);
142
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, Nt - err,
Ny
, rnd_mode)))
exp10m1.c
65
mpfr_prec_t
Ny
= MPFR_PREC(y); /* target precision */
103
Nt =
Ny
+ MPFR_INT_CEIL_LOG2 (
Ny
) + 6;
147
MPFR_LIKELY (MPFR_CAN_ROUND (t, Nt - err,
Ny
, rnd_mode)))
exp2.c
125
mpfr_prec_t
Ny
= MPFR_PREC(y); /* target precision */
132
Nt =
Ny
+ 5 + MPFR_INT_CEIL_LOG2 (
Ny
);
147
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
exp2m1.c
70
mpfr_prec_t
Ny
= MPFR_PREC(y); /* target precision */
108
Nt =
Ny
+ MPFR_INT_CEIL_LOG2 (
Ny
) + 6;
153
MPFR_LIKELY (MPFR_CAN_ROUND (t, Nt - err,
Ny
, rnd_mode)))
expm1.c
110
mpfr_prec_t
Ny
= MPFR_PREC(y); /* target precision */
117
Nt =
Ny
+ MPFR_INT_CEIL_LOG2 (
Ny
) + 6;
155
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
log2p1.c
87
mpfr_prec_t
Ny
= MPFR_PREC(y), prec;
117
prec =
Ny
+ MPFR_INT_CEIL_LOG2 (
Ny
) + 6;
133
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, prec - 2,
Ny
, rnd_mode)))
tanh.c
76
mpfr_prec_t
Ny
= MPFR_PREC(y); /* target precision */
96
Nt =
Ny
+ MPFR_INT_CEIL_LOG2 (
Ny
) + 4;
143
MPFR_CAN_ROUND (t, err,
Ny
, rnd_mode)))
pow_si.c
152
mpfr_prec_t
Ny
; /* target precision */
165
Ny
= MPFR_PREC (y);
166
Nt =
Ny
+ size_n + 3 + MPFR_INT_CEIL_LOG2 (
Ny
);
262
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, Nt - size_n - 2,
Ny
, rnd)))
log10p1.c
127
mpfr_prec_t
Ny
= MPFR_PREC(y), prec;
157
prec =
Ny
+ MPFR_INT_CEIL_LOG2 (
Ny
) + 6;
170
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, prec - 2,
Ny
, rnd_mode)))
root.c
394
mpfr_prec_t
Ny
; /* target precision */
398
Ny
= MPFR_PREC (y);
399
Nt =
Ny
+ 10;
423
if (MPFR_LIKELY (MPFR_CAN_ROUND (t, Nt - 3,
Ny
, rnd_mode) ||
/src/external/bsd/wpa/dist/src/common/
dpp_pkex.c
218
const u8 *Nx, const u8 *
Ny
)
297
wpabuf_put_data(msg,
Ny
, curve->prime_len);
Completed in 35 milliseconds
Indexes created Fri Jun 05 00:26:10 UTC 2026