Home
last modified time | relevance | path

Searched refs:fx4 (Results 1 – 25 of 163) sorted by relevance

1234567

/dports/science/quantum-espresso/q-e-qe-6.7.0/PWCOND/src/
H A Dfour.f9049 real(DP), allocatable :: fx1(:), fx2(:), fx3(:), fx4(:), zsl(:) local
61 allocate( fx4( nz1 ) )
132 call simpson(nmeshs-iz+1,x4(iz),rab(iz),fx4(kz))
143 fx4(kz)=fx4(kz)+(x4(iz-1)+x4(iz))*0.5d0*zr
149 fx4(kz)=0.d0
177 wadd(kz,ig)=fx4(kz)
217 deallocate(fx4)
/dports/lang/mosh/mosh-0.2.7/src/
H A DFixnum.h200 static int fxcopyBitField(int fx1, unsigned int fx2, unsigned int fx3, int fx4) in fxcopyBitField() argument
205 return fxif(mask, fxarithmeticShiftLeft(fx4, fx2), fx1); in fxcopyBitField()
208 static int fxrotateBitField(int fx1, unsigned int fx2, unsigned int fx3, unsigned int fx4) in fxrotateBitField() argument
212 const int count = fxmod(fx4, width); in fxrotateBitField()
214 const int field1 = fxarithmeticShiftLeft(field0, fx4); in fxrotateBitField()
H A DFixnumProcedures.cpp484 argumentAsFixnum(3, fx4); in fxcopyBitFieldEx()
493 return Object::makeFixnum(Fixnum::fxcopyBitField(fx1, fx2, fx3, fx4)); in fxcopyBitFieldEx()
571 argumentAsFixnum(3, fx4); in fxrotateBitFieldEx()
575 const bool isFx4OutOfRange = fx4 < 0 || fx4 >= Fixnum::BITS; in fxrotateBitFieldEx()
576 if (isFx2OutOfRange || isFx3OutOfRange || isFx4OutOfRange || fx2 > fx3 || fx4 >= (fx3 - fx2) ) { in fxrotateBitFieldEx()
581 return Object::makeFixnum(Fixnum::fxrotateBitField(fx1, fx2, fx3, fx4)); in fxrotateBitFieldEx()
/dports/lang/guile2/guile-2.2.7/module/rnrs/arithmetic/
H A Dfixnums.scm255 (define (fxcopy-bit-field fx1 fx2 fx3 fx4)
256 (assert-fixnum fx1 fx2 fx3 fx4)
259 (bitwise-copy-bit-field fx1 fx2 fx3 fx4))
279 (define (fxrotate-bit-field fx1 fx2 fx3 fx4)
280 (assert-fixnum fx1 fx2 fx3 fx4)
281 (unless (and (<= 0 fx2 fx3) (< fx3 (fixnum-width)) (< fx4 (- fx3 fx2)))
283 (bitwise-rotate-bit-field fx1 fx2 fx3 fx4))
/dports/lang/guile/guile-3.0.7/module/rnrs/arithmetic/
H A Dfixnums.scm255 (define (fxcopy-bit-field fx1 fx2 fx3 fx4)
256 (assert-fixnum fx1 fx2 fx3 fx4)
259 (bitwise-copy-bit-field fx1 fx2 fx3 fx4))
279 (define (fxrotate-bit-field fx1 fx2 fx3 fx4)
280 (assert-fixnum fx1 fx2 fx3 fx4)
281 (unless (and (<= 0 fx2 fx3) (< fx3 (fixnum-width)) (< fx4 (- fx3 fx2)))
283 (bitwise-rotate-bit-field fx1 fx2 fx3 fx4))
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/
H A Dlib_fixnums.stub360 (fx1::<fixnum> fx2::<fixnum> fx3::<fixnum> fx4::<fixnum>)
368 (SG_MAKE_INT fx3) (SG_MAKE_INT fx4))))
372 (result (fxlogif mask (ashl fx4 fx2) fx1))))
463 (define (fxrotate-bit-field fx1 fx2 fx3 fx4)
471 (or (fixnum? fx4)
472 (assertion-violation 'fxrotate-bit-field (msg fx4) fx4))
478 ;; (or (and (<= 0 fx4) (<= fx4 (fixnum-width)))
480 ;; fx1 fx2 fx3 fx4))
483 (and (> fx4 (- fx3 fx2))
485 fx1 fx2 fx3 fx4))
[all …]
/dports/comms/xnec2c/xnec2c-3.4/src/
H A Dcalculations.c376 complex double fx1, fx2, fx3, fx4; in intrp() local
516 fx4=(( a[3][0]* xx+ b[3][0])* xx+ c[3][0])* xx+ d[3][0]; in intrp()
517 p1= fx4- fx1+3.0*( fx2- fx3); in intrp()
519 p3=6.0* fx3-2.0* fx1-3.0* fx2- fx4; in intrp()
524 fx4=(( a[3][1]* xx+ b[3][1])* xx+ c[3][1])* xx+ d[3][1]; in intrp()
525 p1= fx4- fx1+3.0*( fx2- fx3); in intrp()
527 p3=6.0* fx3-2.0* fx1-3.0* fx2- fx4; in intrp()
533 p1= fx4- fx1+3.0*( fx2- fx3); in intrp()
535 p3=6.0* fx3-2.0* fx1-3.0* fx2- fx4; in intrp()
541 p1= fx4- fx1+3.0*( fx2- fx3); in intrp()
[all …]
/dports/math/py-mpmath/mpmath-1.2.1/mpmath/calculus/
H A Doptimization.py501 fx4 = f(x4)
502 if abs(fx4) < self.tol:
505 print('canceled with f(x4) =', fx4)
508 if fx4 * fx2 < 0: # root in [x4, x2]
510 fx1 = fx4
513 fx2 = fx4
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/doc/rnrs/arithmetic/
H A Dfixnums.scrbl207 @define[Function]{@name{fxcopy-bit-field} @args{fx1 fx2 fx3 fx4}}
212 (exclusive) by the corresponding bits in @var{fx4}, which is the fixnum result
218 (from @var{fx4})
247 @define[Function]{@name{fxrotate-bit-field} @args{fx1 fx2 fx3 fx4}}
248 @desc{[R6RS] @var{Fx2}, @var{fx3}, and @var{fx4} must be non-negative and less
253 (exclusive) by @var{fx4} bits towards the more significant bits, which is the
259 (count @var{fx4})
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/arch/aarch64/asimd/filters/
H A Dstatic.h170 biquad_x4_t *fx4 = &f->x4; in biquad_process_x4()
255 : [FD] "r" (&f->d[0]), [FX4] "r" (fx4), in biquad_process_x4()
/dports/devel/py-cursive/cursive-0.2.2/cursive/tests/unit/data/
H A Dself_signed_cert_invalid_ca_constraint.pem20 fx4+atZfpi18nyd2ljgiTapB6Ex6uxVPrzwuKxpGMt9wU1++ZYc3YDke4EOT+OIX
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/dsp/arch/arm/neon-d32/filters/
H A Dstatic.h165 biquad_x4_t *fx4 = &f->x4; in biquad_process_x4()
249 : [FD] "r" (&f->d[0]), [FX4] "r" (fx4), in biquad_process_x4()
/dports/games/nimuh/nimuh-data-1.02/data/interface/
H A DMakefile.am17 fx4.png \
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/glslparsertest/shaders/
H A DCGDataTypes.frag19 fixed4 fx4; // Not a basic type.
/dports/devel/z88dk/z88dk/libsrc/games/
H A Dbit_fx7.asm46 defw fx4
127 .fx4
H A Dbit_fx4.asm43 defw fx4
127 .fx4
H A Dbit_fx5.asm46 defw fx4
189 .fx4
H A Dbit_fx6.asm67 defw fx4
162 .fx4
/dports/www/firefox-esr/firefox-91.8.0/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL/build/
H A DCG_Data_Types_frag.frag24 fixed4 fx4; // Not a basic type.
/dports/lang/spidermonkey78/firefox-78.9.0/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL/build/
H A DCG_Data_Types_frag.frag24 fixed4 fx4; // Not a basic type.
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webgl/src/sdk/tests/conformance/ogles/GL/build/
H A DCG_Data_Types_frag.frag24 fixed4 fx4; // Not a basic type.
/dports/www/firefox/firefox-99.0/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL/build/
H A DCG_Data_Types_frag.frag24 fixed4 fx4; // Not a basic type.
/dports/mail/thunderbird/thunderbird-91.8.0/dom/canvas/test/webgl-conf/checkout/conformance/ogles/GL/build/
H A DCG_Data_Types_frag.frag24 fixed4 fx4; // Not a basic type.
/dports/devel/z88dk/z88dk/libsrc/target/zx81/games/
H A Dbit_fx4.asm44 defw fx4
124 .fx4
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/effects/gradients/
H A DSkRadialGradient.cpp120 const Sk4f fx4(sfx, sfx + sdx, sfx + 2*sdx, sfx + 3*sdx); in shadeSpan_radial_clamp2() local
125 Sk4f tmpxy = fx4 * dx4 + fy4 * dy4; in shadeSpan_radial_clamp2()
127 Sk4f R = Sk4f::Max(sum_squares(fx4, fy4), min); in shadeSpan_radial_clamp2()

1234567