Home
last modified time | relevance | path

Searched refs:tempq (Results 1 – 25 of 126) sorted by relevance

123456

/dports/multimedia/handbrake/ffmpeg-4.4/libavcodec/x86/
H A Dcfhddsp.asm70 mov tempmp, tempq
95 imul tempq, -4
96 add tempq, xq
99 add tempq, xq
100 add tempq, 4
101 sar tempq, 3
105 sar tempq, 1
118 imul tempq, 4
123 add tempq, 4
124 sar tempq, 3
[all …]
H A Dcfhdencdsp.asm57 add tempq, xq
67 imul tempq, -11
68 add tempq, xq
72 add tempq, xq
76 add tempq, xq
80 add tempq, xq
84 add tempq, xq
86 add tempq, 4
87 sar tempq, 3
176 add tempq, 4
[all …]
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavcodec/x86/
H A Dcfhddsp.asm70 mov tempmp, tempq
95 imul tempq, -4
96 add tempq, xq
99 add tempq, xq
100 add tempq, 4
101 sar tempq, 3
105 sar tempq, 1
118 imul tempq, 4
123 add tempq, 4
124 sar tempq, 3
[all …]
H A Dcfhdencdsp.asm57 add tempq, xq
67 imul tempq, -11
68 add tempq, xq
72 add tempq, xq
76 add tempq, xq
80 add tempq, xq
84 add tempq, xq
86 add tempq, 4
87 sar tempq, 3
176 add tempq, 4
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavcodec/x86/
H A Dcfhddsp.asm70 mov tempmp, tempq
95 imul tempq, -4
96 add tempq, xq
99 add tempq, xq
100 add tempq, 4
101 sar tempq, 3
105 sar tempq, 1
118 imul tempq, 4
123 add tempq, 4
124 sar tempq, 3
[all …]
/dports/math/py-gmpy2/gmpy2-2.1.1/src/
H A Dgmpy2_floordiv.c141 MPQ_Object *tempq = NULL; in GMPy_Rational_FloorDivWithType() local
149 Py_XDECREF((PyObject*)tempq); in GMPy_Rational_FloorDivWithType()
158 Py_DECREF((PyObject*)tempq); in GMPy_Rational_FloorDivWithType()
162 mpq_div(tempq->q, MPQ(x), MPQ(y)); in GMPy_Rational_FloorDivWithType()
163 mpz_fdiv_q(result->z, mpq_numref(tempq->q), mpq_denref(tempq->q)); in GMPy_Rational_FloorDivWithType()
165 Py_DECREF((PyObject*)tempq); in GMPy_Rational_FloorDivWithType()
178 Py_DECREF((PyObject*)tempq); in GMPy_Rational_FloorDivWithType()
188 Py_DECREF((PyObject*)tempq); in GMPy_Rational_FloorDivWithType()
194 mpz_fdiv_q(result->z, mpq_numref(tempq->q), mpq_denref(tempq->q)); in GMPy_Rational_FloorDivWithType()
198 Py_DECREF((PyObject*)tempq); in GMPy_Rational_FloorDivWithType()
[all …]
H A Dgmpy2_mpq_misc.c75 MPQ_Object *tempq; in GMPy_MPQ_Function_Numer() local
81 if (!(tempq = GMPy_MPQ_From_Rational(other, context))) { in GMPy_MPQ_Function_Numer()
86 mpz_set(result->z, mpq_numref(tempq->q)); in GMPy_MPQ_Function_Numer()
87 Py_DECREF((PyObject*)tempq); in GMPy_MPQ_Function_Numer()
99 MPQ_Object *tempq; in GMPy_MPQ_Function_Denom() local
105 if (!(tempq = GMPy_MPQ_From_Rational(other, context))) { in GMPy_MPQ_Function_Denom()
110 mpz_set(result->z, mpq_denref(tempq->q)); in GMPy_MPQ_Function_Denom()
111 Py_DECREF((PyObject*)tempq); in GMPy_MPQ_Function_Denom()
H A Dgmpy2_truediv.c44 mpq_t tempq; in GMPy_Integer_TrueDivWithType() local
74 mpq_init(tempq); in GMPy_Integer_TrueDivWithType()
75 mpq_set_num(tempq, tempx->z); in GMPy_Integer_TrueDivWithType()
76 mpq_set_den(tempq, tempy->z); in GMPy_Integer_TrueDivWithType()
77 mpq_canonicalize(tempq); in GMPy_Integer_TrueDivWithType()
81 result->rc = mpfr_set_q(result->f, tempq, GET_MPFR_ROUND(context)); in GMPy_Integer_TrueDivWithType()
83 mpq_clear(tempq); in GMPy_Integer_TrueDivWithType()
/dports/math/py-gmpy2-devel/gmpy-gmpy2-2.1.0b5/src/
H A Dgmpy2_floordiv.c184 MPQ_Object *tempq; in GMPy_Rational_FloorDiv() local
189 tempq = GMPy_MPQ_New(context); in GMPy_Rational_FloorDiv()
190 if (!result || !tempq) { in GMPy_Rational_FloorDiv()
192 Py_XDECREF((PyObject*)tempq); in GMPy_Rational_FloorDiv()
201 mpq_div(tempq->q, MPQ(x), MPQ(y)); in GMPy_Rational_FloorDiv()
202 mpz_fdiv_q(result->z, mpq_numref(tempq->q), mpq_denref(tempq->q)); in GMPy_Rational_FloorDiv()
203 Py_DECREF((PyObject*)tempq); in GMPy_Rational_FloorDiv()
224 mpq_div(tempq->q, tempx->q, tempy->q); in GMPy_Rational_FloorDiv()
225 mpz_fdiv_q(result->z, mpq_numref(tempq->q), mpq_denref(tempq->q)); in GMPy_Rational_FloorDiv()
228 Py_DECREF((PyObject*)tempq); in GMPy_Rational_FloorDiv()
[all …]
H A Dgmpy2_mpq_misc.c77 MPQ_Object *tempq; in GMPy_MPQ_Function_Numer() local
83 if (!(tempq = GMPy_MPQ_From_Rational(other, context))) { in GMPy_MPQ_Function_Numer()
88 mpz_set(result->z, mpq_numref(tempq->q)); in GMPy_MPQ_Function_Numer()
89 Py_DECREF((PyObject*)tempq); in GMPy_MPQ_Function_Numer()
101 MPQ_Object *tempq; in GMPy_MPQ_Function_Denom() local
107 if (!(tempq = GMPy_MPQ_From_Rational(other, context))) { in GMPy_MPQ_Function_Denom()
112 mpz_set(result->z, mpq_denref(tempq->q)); in GMPy_MPQ_Function_Denom()
113 Py_DECREF((PyObject*)tempq); in GMPy_MPQ_Function_Denom()
H A Dgmpy2_truediv.c66 mpq_t tempq; in GMPy_Integer_TrueDiv() local
95 mpq_init(tempq); in GMPy_Integer_TrueDiv()
96 mpq_set_num(tempq, tempx->z); in GMPy_Integer_TrueDiv()
97 mpq_set_den(tempq, tempy->z); in GMPy_Integer_TrueDiv()
98 mpq_canonicalize(tempq); in GMPy_Integer_TrueDiv()
102 result->rc = mpfr_set_q(result->f, tempq, GET_MPFR_ROUND(context)); in GMPy_Integer_TrueDiv()
104 mpq_clear(tempq); in GMPy_Integer_TrueDiv()
/dports/math/iml/iml-1.0.5/src/
H A DRNSop.c333 double temp, tempq, tempqinv; in ChineseRemainder() local
344 tempq = (double)basis[i]; in ChineseRemainder()
348 U[i] = U[j] + U[i]*fmod((double)basis[j], tempq); in ChineseRemainder()
349 U[i] = fmod(U[i], tempq); in ChineseRemainder()
351 temp = fmod(tempqinv*(double)(basis[i]-1), tempq); in ChineseRemainder()
352 U[i] = fmod(tempqinv*Ac[i]+temp*U[i], tempq); in ChineseRemainder()
417 double temp, tempq, tempqinv; in ChineseRemainderPos() local
428 tempq = (double)basis[i]; in ChineseRemainderPos()
432 U[i] = U[j] + U[i]*fmod((double)basis[j], tempq); in ChineseRemainderPos()
433 U[i] = fmod(U[i], tempq); in ChineseRemainderPos()
[all …]
/dports/science/cgnslib/CGNS-4.1.2/src/ptests/
H A Dftest_zone.F9020 DOUBLE PRECISION tempq(5,5,5,5,5) variable
215 tempq = 0.0
225 tempq(:,:,:,:,:),ierr)
238 tempq(m,l,k,j,n)) THEN
241 tempq(m,l,k,j,n)
/dports/net/udt/udt4/src/
H A Dqueue.cpp87 CQEntry* tempq = NULL; in init() local
93 tempq = new CQEntry; in init()
99 delete tempq; in init()
111 tempq->m_pUnit = tempu; in init()
113 tempq->m_iSize = size; in init()
148 CQEntry* tempq = NULL; in increase() local
157 tempq = new CQEntry; in increase()
163 delete tempq; in increase()
175 tempq->m_pUnit = tempu; in increase()
177 tempq->m_iSize = size; in increase()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libvpx/source/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm285 %define tempq x_offsetq
289 mov tempq, g_pw_8m
290 %define filter_rnd [tempq]
512 %define tempq x_offsetq
516 mov tempq, g_pw_8m
634 %define tempq y_offsetq
638 mov tempq, g_pw_8m
733 %define tempq y_offsetq
737 mov tempq, g_pw_8m
866 %define tempq src_strideq
[all …]
/dports/graphics/dssim/dssim-3.1.2/cargo-crates/libaom-sys-0.9.1/vendor/aom_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm288 %define tempq x_offsetq
292 mov tempq, g_pw_8m
293 %define filter_rnd [tempq]
515 %define tempq x_offsetq
519 mov tempq, g_pw_8m
637 %define tempq y_offsetq
641 mov tempq, g_pw_8m
736 %define tempq y_offsetq
740 mov tempq, g_pw_8m
869 %define tempq src_strideq
[all …]
/dports/www/firefox-esr/firefox-91.8.0/media/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm285 %define tempq x_offsetq
289 mov tempq, g_pw_8m
290 %define filter_rnd [tempq]
512 %define tempq x_offsetq
516 mov tempq, g_pw_8m
634 %define tempq y_offsetq
638 mov tempq, g_pw_8m
733 %define tempq y_offsetq
737 mov tempq, g_pw_8m
866 %define tempq src_strideq
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm285 %define tempq x_offsetq
289 mov tempq, g_pw_8m
290 %define filter_rnd [tempq]
512 %define tempq x_offsetq
516 mov tempq, g_pw_8m
634 %define tempq y_offsetq
638 mov tempq, g_pw_8m
733 %define tempq y_offsetq
737 mov tempq, g_pw_8m
866 %define tempq src_strideq
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/libvpx/source/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm285 %define tempq x_offsetq
289 mov tempq, g_pw_8m
290 %define filter_rnd [tempq]
512 %define tempq x_offsetq
516 mov tempq, g_pw_8m
634 %define tempq y_offsetq
638 mov tempq, g_pw_8m
733 %define tempq y_offsetq
737 mov tempq, g_pw_8m
866 %define tempq src_strideq
[all …]
/dports/multimedia/libvpx/libvpx-1.11.0/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm285 %define tempq x_offsetq
289 mov tempq, g_pw_8m
290 %define filter_rnd [tempq]
512 %define tempq x_offsetq
516 mov tempq, g_pw_8m
634 %define tempq y_offsetq
638 mov tempq, g_pw_8m
733 %define tempq y_offsetq
737 mov tempq, g_pw_8m
866 %define tempq src_strideq
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libaom/source/libaom/aom_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm288 %define tempq x_offsetq
292 mov tempq, g_pw_8m
293 %define filter_rnd [tempq]
515 %define tempq x_offsetq
519 mov tempq, g_pw_8m
637 %define tempq y_offsetq
641 mov tempq, g_pw_8m
736 %define tempq y_offsetq
740 mov tempq, g_pw_8m
869 %define tempq src_strideq
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libvpx/source/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm285 %define tempq x_offsetq
289 mov tempq, g_pw_8m
290 %define filter_rnd [tempq]
512 %define tempq x_offsetq
516 mov tempq, g_pw_8m
634 %define tempq y_offsetq
638 mov tempq, g_pw_8m
733 %define tempq y_offsetq
737 mov tempq, g_pw_8m
866 %define tempq src_strideq
[all …]
/dports/www/firefox/firefox-99.0/media/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm285 %define tempq x_offsetq
289 mov tempq, g_pw_8m
290 %define filter_rnd [tempq]
512 %define tempq x_offsetq
516 mov tempq, g_pw_8m
634 %define tempq y_offsetq
638 mov tempq, g_pw_8m
733 %define tempq y_offsetq
737 mov tempq, g_pw_8m
866 %define tempq src_strideq
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/media/libvpx/libvpx/vpx_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm301 %define tempq x_offsetq
305 mov tempq, g_pw_8m
306 %define filter_rnd [tempq]
528 %define tempq x_offsetq
532 mov tempq, g_pw_8m
650 %define tempq y_offsetq
654 mov tempq, g_pw_8m
749 %define tempq y_offsetq
753 mov tempq, g_pw_8m
882 %define tempq src_strideq
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libaom/source/libaom/aom_dsp/x86/
H A Dhighbd_subpel_variance_impl_sse2.asm288 %define tempq x_offsetq
292 mov tempq, g_pw_8m
293 %define filter_rnd [tempq]
515 %define tempq x_offsetq
519 mov tempq, g_pw_8m
637 %define tempq y_offsetq
641 mov tempq, g_pw_8m
736 %define tempq y_offsetq
740 mov tempq, g_pw_8m
869 %define tempq src_strideq
[all …]

123456