Home
last modified time | relevance | path

Searched defs:tempy (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/dports/math/py-gmpy2-devel/gmpy-gmpy2-2.1.0b5/src/
H A Dgmpy2_cmp.c85 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
104 MPQ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
144 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
165 MPQ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
186 MPFR_Object *tempy = NULL; in GMPy_MPANY_cmp() local
207 MPFR_Object *tempy = NULL; in GMPy_MPANY_cmp() local
228 MPFR_Object *tempy = NULL; in GMPy_MPANY_cmp() local
293 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp_abs() local
315 MPQ_Object *tempy = NULL; in GMPy_MPANY_cmp_abs() local
361 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp_abs() local
[all …]
H A Dgmpy2_mpz_divmod.c48 MPZ_Object *q = NULL, *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_c_divmod() local
94 MPZ_Object *q = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_c_div() local
134 MPZ_Object *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_c_mod() local
182 MPZ_Object *q = NULL, *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_f_divmod() local
228 MPZ_Object *q = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_f_div() local
268 MPZ_Object *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_f_mod() local
316 MPZ_Object *q = NULL, *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_t_divmod() local
362 MPZ_Object *q = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_t_div() local
405 MPZ_Object *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_t_mod() local
H A Dgmpy2_truediv.c65 MPZ_Object *tempx, *tempy; in GMPy_Integer_TrueDiv() local
162 MPQ_Object *result, *tempx = NULL, *tempy = NULL; in GMPy_Rational_TrueDiv() local
273 MPQ_Object *tempy; in GMPy_Real_TrueDiv() local
319 MPFR_Object *tempx, *tempy; in GMPy_Real_TrueDiv() local
397 MPC_Object *tempx, *tempy; in GMPy_Complex_TrueDiv() local
H A Dgmpy2_sub.c118 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_Sub() local
197 MPQ_Object *tempx = NULL, *tempy = NULL; in GMPy_Rational_Sub() local
302 MPQ_Object *tempy = NULL; in GMPy_Real_Sub() local
384 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_Sub() local
473 MPC_Object *tempx = NULL, *tempy = NULL; in GMPy_Complex_Sub() local
H A Dgmpy2_add.c119 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_Add() local
198 MPQ_Object *tempx = NULL, *tempy = NULL; in GMPy_Rational_Add() local
308 MPQ_Object *tempy = NULL; in GMPy_Real_Add() local
385 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_Add() local
475 MPC_Object *tempx = NULL, *tempy = NULL; in GMPy_Complex_Add() local
H A Dgmpy2_mul.c107 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_Mul() local
185 MPQ_Object *tempx = NULL, *tempy = NULL; in GMPy_Rational_Mul() local
282 MPQ_Object *tempy = NULL; in GMPy_Real_Mul() local
359 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_Mul() local
448 MPC_Object *tempx = NULL, *tempy = NULL; in GMPy_Complex_Mul() local
H A Dgmpy2_fused.c48 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Integer_FMA() local
87 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Rational_FMA() local
130 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Real_FMA() local
173 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Complex_FMA() local
224 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Integer_FMS() local
263 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Rational_FMS() local
306 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Real_FMS() local
353 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_Complex_FMS() local
413 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL, *tempt = NULL; in GMPy_Integer_FMMA() local
460 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL, *tempt = NULL; in GMPy_Rational_FMMA() local
[all …]
H A Dgmpy2_floordiv.c115 MPZ_Object *tempx, *tempy; in GMPy_Integer_FloorDiv() local
208 MPQ_Object *tempx, *tempy; in GMPy_Rational_FloorDiv() local
312 MPQ_Object *tempy; in GMPy_Real_FloorDiv() local
364 MPFR_Object *tempx, *tempy; in GMPy_Real_FloorDiv() local
H A Dgmpy2_mod.c115 MPZ_Object *tempx, *tempy; in GMPy_Integer_Mod() local
178 MPQ_Object *tempx, *tempy, *result; in GMPy_Rational_Mod() local
236 MPFR_Object *tempx = NULL, *tempy = NULL, *result; in GMPy_Real_Mod() local
H A Dgmpy2_divmod.c58 MPZ_Object *tempx = NULL, *tempy = NULL, *rem = NULL, *quo = NULL; in GMPy_Integer_DivMod() local
174 MPQ_Object *tempx = NULL, *tempy = NULL, *rem = NULL; in GMPy_Rational_DivMod() local
244 MPFR_Object *tempx = NULL, *tempy = NULL, *quo = NULL, *rem = NULL, *temp; in GMPy_Real_DivMod() local
/dports/math/py-gmpy2/gmpy2-2.1.1/src/
H A Dgmpy2_cmp.c87 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
106 MPQ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
146 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
167 MPQ_Object *tempy = NULL; in GMPy_MPANY_cmp() local
188 MPFR_Object *tempy = NULL; in GMPy_MPANY_cmp() local
209 MPFR_Object *tempy = NULL; in GMPy_MPANY_cmp() local
230 MPFR_Object *tempy = NULL; in GMPy_MPANY_cmp() local
298 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp_abs() local
320 MPQ_Object *tempy = NULL; in GMPy_MPANY_cmp_abs() local
366 MPZ_Object *tempy = NULL; in GMPy_MPANY_cmp_abs() local
[all …]
H A Dgmpy2_mpz_divmod.c46 MPZ_Object *q = NULL, *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_c_divmod() local
92 MPZ_Object *q = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_c_div() local
132 MPZ_Object *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_c_mod() local
180 MPZ_Object *q = NULL, *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_f_divmod() local
226 MPZ_Object *q = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_f_div() local
266 MPZ_Object *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_f_mod() local
314 MPZ_Object *q = NULL, *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_t_divmod() local
360 MPZ_Object *q = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_t_div() local
403 MPZ_Object *r = NULL, *tempx = NULL, *tempy = NULL; in GMPy_MPZ_t_mod() local
H A Dgmpy2_mul.c90 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_MulWithType() local
135 MPQ_Object *tempx = NULL, *tempy = NULL; in GMPy_Rational_MulWithType() local
180 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_MulWithType() local
228 MPC_Object *tempx = NULL, *tempy = NULL; in GMPy_Complex_MulWithType() local
H A Dgmpy2_sub.c100 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_SubWithType() local
149 MPQ_Object *tempx = NULL, *tempy = NULL; in GMPy_Rational_SubWithType() local
204 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_SubWithType() local
258 MPC_Object *tempx = NULL, *tempy = NULL; in GMPy_Complex_SubWithType() local
H A Dgmpy2_add.c101 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_AddWithType() local
146 MPQ_Object *tempx = NULL, *tempy = NULL; in GMPy_Rational_AddWithType() local
206 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_AddWithType() local
256 MPC_Object *tempx = NULL, *tempy = NULL; in GMPy_Complex_AddWithType() local
H A Dgmpy2_truediv.c43 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_TrueDivWithType() local
99 MPQ_Object *result = NULL, *tempx = NULL, *tempy = NULL; in GMPy_Rational_TrueDivWithType() local
179 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_TrueDivWithType() local
236 MPC_Object *tempx = NULL, *tempy = NULL; in GMPy_Complex_TrueDivWithType() local
H A Dgmpy2_fused.c48 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_IntegerWithType_FMA() local
89 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_RationalWithType_FMA() local
130 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_RealWithType_FMA() local
169 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_ComplexWithType_FMA() local
220 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_IntegerWithType_FMS() local
261 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_RationalWithType_FMS() local
302 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_RealWithType_FMS() local
345 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL; in GMPy_ComplexWithType_FMS() local
405 PyObject *result = NULL, *tempx = NULL, *tempy = NULL, *tempz = NULL, *tempt = NULL; in GMPy_IntegerWithType_FMMA() local
500 PyObject *result, *tempx = NULL, *tempy = NULL, *tempz = NULL, *tempt = NULL; in GMPy_RealWithType_FMMA() local
[all …]
H A Dgmpy2_floordiv.c103 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_FloorDivWithType() local
170 MPQ_Object *tempx = NULL, *tempy = NULL; in GMPy_Rational_FloorDivWithType() local
239 MPFR_Object *tempx = NULL, *tempy = NULL; in GMPy_Real_FloorDivWithType() local
H A Dgmpy2_mod.c100 MPZ_Object *tempx = NULL, *tempy = NULL; in GMPy_Integer_ModWithType() local
136 MPQ_Object *tempx = NULL, *tempy = NULL, *result = NULL; in GMPy_Rational_ModWithType() local
194 MPFR_Object *tempx = NULL, *tempy = NULL, *result = NULL; in GMPy_Real_ModWithType() local
H A Dgmpy2_divmod.c35 MPZ_Object *tempx = NULL, *tempy = NULL, *rem = NULL, *quo = NULL; in GMPy_Integer_DivModWithType() local
147 MPQ_Object *tempx = NULL, *tempy = NULL, *rem = NULL; in GMPy_Rational_DivModWithType() local
207 MPFR_Object *tempx = NULL, *tempy = NULL, *quo = NULL, *rem = NULL, *temp; in GMPy_Real_DivModWithType() local
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaom/source/libaom/test/
H A Dhbd_metrics_test.cc57 double tempy, tempu, tempv; in compute_hbd_psnrhvs() local
63 double tempy, tempu, tempv; in compute_psnrhvs() local
70 double tempy, tempu, tempv; in compute_hbd_fastssim() local
76 double tempy, tempu, tempv; in compute_fastssim() local
/dports/www/firefox-esr/firefox-91.8.0/third_party/aom/test/
H A Dhbd_metrics_test.cc56 double tempy, tempu, tempv; in compute_hbd_psnrhvs() local
62 double tempy, tempu, tempv; in compute_psnrhvs() local
69 double tempy, tempu, tempv; in compute_hbd_fastssim() local
75 double tempy, tempu, tempv; in compute_fastssim() local
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/aom/test/
H A Dhbd_metrics_test.cc54 double tempy, tempu, tempv; in compute_hbd_psnrhvs() local
60 double tempy, tempu, tempv; in compute_psnrhvs() local
67 double tempy, tempu, tempv; in compute_hbd_fastssim() local
73 double tempy, tempu, tempv; in compute_fastssim() local
/dports/www/firefox/firefox-99.0/third_party/aom/test/
H A Dhbd_metrics_test.cc56 double tempy, tempu, tempv; in compute_hbd_psnrhvs() local
62 double tempy, tempu, tempv; in compute_psnrhvs() local
69 double tempy, tempu, tempv; in compute_hbd_fastssim() local
75 double tempy, tempu, tempv; in compute_fastssim() local
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/aom/test/
H A Dhbd_metrics_test.cc56 double tempy, tempu, tempv; in compute_hbd_psnrhvs() local
62 double tempy, tempu, tempv; in compute_psnrhvs() local
69 double tempy, tempu, tempv; in compute_hbd_fastssim() local
75 double tempy, tempu, tempv; in compute_fastssim() local

12345678910>>...13