Home
last modified time | relevance | path

Searched refs:fx2 (Results 1 – 25 of 851) sorted by relevance

12345678910>>...35

/dports/lang/guile2/guile-2.2.7/module/rnrs/arithmetic/
H A Dfixnums.scm169 (if fx2
181 (div fx1 fx2))
185 (mod fx1 fx2))
193 (div0 fx1 fx2))
197 (mod0 fx1 fx2))
241 (define (fxbit-set? fx1 fx2) (assert-fixnum fx1 fx2) (logbit? fx2 fx1))
245 (unless (and (<= 0 fx2) (< fx2 (fixnum-width)))
265 (ash fx1 fx2))
269 (unless (and (<= 0 fx2) (< fx2 (fixnum-width)))
271 (ash fx1 fx2))
[all …]
/dports/lang/guile/guile-3.0.7/module/rnrs/arithmetic/
H A Dfixnums.scm169 (if fx2
181 (div fx1 fx2))
185 (mod fx1 fx2))
193 (div0 fx1 fx2))
197 (mod0 fx1 fx2))
241 (define (fxbit-set? fx1 fx2) (assert-fixnum fx1 fx2) (logbit? fx2 fx1))
245 (unless (and (<= 0 fx2) (< fx2 (fixnum-width)))
265 (ash fx1 fx2))
269 (unless (and (<= 0 fx2) (< fx2 (fixnum-width)))
271 (ash fx1 fx2))
[all …]
/dports/lang/mosh/mosh-0.2.7/boot/baselib/
H A Dfixnum.scm30 (define (fxdiv-and-mod fx1 fx2)
31 (values (fxdiv fx1 fx2) (fxmod fx1 fx2)))
34 (values (fxdiv0 fx1 fx2) (fxmod0 fx1 fx2)))
36 (define (fx+/carry fx1 fx2 fx3)
38 …(or (fixnum? fx2) (assertion-violation 'fx+/carry (format "fixnum required, but got ~a" fx2) fx1 f…
40 (let* ((s (+ fx1 fx2 fx3))
47 (define (fx-/carry fx1 fx2 fx3)
49 …(or (fixnum? fx2) (assertion-violation 'fx-/carry (format "fixnum required, but got ~a" fx2) fx1 f…
51 (let* ((d (- fx1 fx2 fx3))
58 (define (fx*/carry fx1 fx2 fx3)
[all …]
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/
H A Dlib_fixnums.stub189 (when (== fx2 0)
195 (when (== fx2 0)
324 (when (< fx2 0)
424 (values (fxdiv fx1 fx2) (fxmod fx1 fx2)))
427 (values (fxdiv0 fx1 fx2) (fxmod0 fx1 fx2)))
433 (or (fixnum? fx2) (assertion-violation 'fx*/carry (msg fx2) fx2))
443 (or (fixnum? fx2) (assertion-violation 'fx*/carry (msg fx2) fx2))
453 (or (fixnum? fx2) (assertion-violation 'fx*/carry (msg fx2) fx2))
468 (assertion-violation 'fxrotate-bit-field (msg fx2) fx2))
473 (or (and (<= 0 fx2) (<= fx2 (fixnum-width)))
[all …]
H A Dlib_fixnums.c978 long fx2; in sagittarius_fixnums_fx_3dP() local
1014 long fx2; in sagittarius_fixnums_fx_LTP() local
1050 long fx2; in sagittarius_fixnums_fx_GTP() local
1086 long fx2; in sagittarius_fixnums_fx_LT_3dP() local
1122 long fx2; in sagittarius_fixnums_fx_GT_3dP() local
1351 long fx2; in sagittarius_fixnums_fx_2b() local
1384 long fx2; in sagittarius_fixnums_fx_2a() local
1472 long fx2; in sagittarius_fixnums_fxdiv() local
1509 long fx2; in sagittarius_fixnums_fxmod() local
1557 long fx2; in sagittarius_fixnums_fxdiv0() local
[all …]
/dports/lang/mosh/mosh-0.2.7/src/
H A DFixnumProcedures.cpp263 if (0 == fx2) { in fxdivEx()
284 if (0 == fx2) { in fxmodEx()
305 if (0 == fx2) { in fxdiv0Ex()
431 if (fx2 < 0 || fx2 >= Fixnum::BITS) { in fxbitSetPEx()
447 if (fx2 < 0 || fx2 >= Fixnum::BITS) { in fxcopyBitEx()
467 const bool isFx2OutOfRange = fx2 < 0 || fx2 >= Fixnum::BITS; in fxbitFieldEx()
486 const bool isFx2OutOfRange = fx2 < 0 || fx2 >= Fixnum::BITS; in fxcopyBitFieldEx()
529 if (fx2 < 0 || fx2 >= Fixnum::BITS) { in fxarithmeticShiftLeftEx()
550 if (fx2 < 0 || fx2 >= Fixnum::BITS) { in fxarithmeticShiftRightEx()
573 const bool isFx2OutOfRange = fx2 < 0 || fx2 >= Fixnum::BITS; in fxrotateBitFieldEx()
[all …]
H A DFixnum.h127 static int fxand(int fx1, int fx2) in fxand() argument
129 return fx1 & fx2; in fxand()
132 static int fxior(int fx1, int fx2) in fxior() argument
134 return fx1 | fx2; in fxior()
137 static int fxxor(int fx1, int fx2) in fxxor() argument
139 return fx1 ^ fx2; in fxxor()
142 static int fxif(int fx1, int fx2, int fx3) in fxif() argument
180 return fx1 << fx2; in fxarithmeticShiftLeft()
185 return fx1 >> fx2; in fxarithmeticShiftRight()
210 const int width = fx3 - fx2; in fxrotateBitField()
[all …]
/dports/games/trackballs/trackballs-1.3.3/share/shaders/
H A Dreflection.frag43 float fx2 = -h * vx;
47 fx2 = -fx2;
49 if (fx2 > 0.5) {
50 fx2 = 0.5;
51 fy2 = (fy2 / fx2) * 0.5;
52 } else if (fx2 < -0.5) {
53 fx2 = -0.5;
54 fy2 = (fy2 / -fx2) * 0.5;
58 fx2 = (fx2 / fy2) * 0.5;
61 fx2 = (fx2 / -fy2) * 0.5;
[all …]
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/doc/rnrs/arithmetic/
H A Dfixnums.scrbl48 @define[Function]{@name{fx+} @args{fx1 fx2}}
49 @define[Function]{@name{fx*} @args{fx1 fx2}}
72 @define[Function]{@name{fxdiv} @args{fx1 fx2}}
73 @define[Function]{@name{fxmod} @args{fx1 fx2}}
75 @define[Function]{@name{fxdiv0} @args{fx1 fx2}}
85 (let* ((s (+ @var{fx1} @var{fx2} @var{fx3}))
95 (let* ((d (- @var{fx1} @var{fx2} @var{fx3}))
134 (fxior (fxand @var{fx1} @var{fx2})
203 @var{fx2}))
216 (start @var{fx2})
[all …]
/dports/net-im/centerim/centerim-4.22.10/kkconsui/src/
H A Dscreenarea.cc30 screenarea::screenarea(int fx1, int fy1, int fx2, int fy2) { in screenarea() argument
31 save(fx1, fy1, fx2, fy2); in screenarea()
42 void screenarea::save(int fx1, int fy1, int fx2, int fy2) { in save() argument
52 line = new chtype[fx2-fx1+2]; in save()
54 line2 = new wchar_t[fx2-fx1+2]; in save()
56 mvinchnstr(fy1+i, fx1, line, fx2-fx1+1); in save()
58 mvinnwstr(fy1+i, fx1, line2, fx2-fx1+1); in save()
68 x2 = fx2; in save()
76 void screenarea::restore(int fx1, int fy1, int fx2, int fy2) { argument
98 for(l = 0; l < fx2-fx1+1; l++, line_ptr++, line2_ptr++ )
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/NOMAD/src/
H A DPriority_Eval_Point.cpp215 const NOMAD::Double & fx2 ) const in compare_hf_values()
228 if ( fx1 < fx2 ) in compare_hf_values()
230 if ( fx2 < fx1 ) in compare_hf_values()
247 if ( ( hx1 < hx2 && fx1 < fx2 ) || in compare_hf_values()
248 ( hx1 == hx2 && fx1 < fx2 ) || in compare_hf_values()
249 ( hx1 < hx2 && fx1 == fx2 ) ) in compare_hf_values()
252 if ( ( hx2 < hx1 && fx2 < fx1 ) || in compare_hf_values()
253 ( hx2 == hx1 && fx2 < fx1 ) || in compare_hf_values()
254 ( hx2 < hx1 && fx2 == fx1 ) ) in compare_hf_values()
262 if ( fx1 < fx2 ) in compare_hf_values()
[all …]
/dports/games/angband/Angband-4.2.2/src/win/
H A Dwin-layout.c46 int fx,fy,tx,ty, fx2,fy2; in default_layout_win() local
269 fx2 = 4; in default_layout_win()
281 fx2 = 6; in default_layout_win()
293 fx2 = 6; in default_layout_win()
305 fx2 = 6; in default_layout_win()
317 fx2 = 8; in default_layout_win()
329 fx2 = 12; in default_layout_win()
379 data[i].font_wid = fx2; in default_layout_win()
381 data[i].tile_wid = fx2; in default_layout_win()
408 data[4].cols = ((data[0].cols * tx) - (data[1].cols * fx2))/fx2; in default_layout_win()
[all …]
/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/src/grid/
H A Dgrid_fast.F77 REAL(dp) :: fx1, fx2, fyz1, fyz2, g1, g2, & local
87 fx2 = 0.0_dp
97 fx2 = fx2 + g2*x2
102 force(1) = force(1) + fx2*zdat(1, iz)*ydat(1, iy2)
110 fx2 = 0.0_dp
117 fx2 = fx2 + g2*x2
119 force(1) = force(1) + fx2*zdat(1, iz)*ydat(1, iy2)
/dports/science/cp2k-data/cp2k-7.1.0/src/grid/
H A Dgrid_fast.F77 REAL(dp) :: fx1, fx2, fyz1, fyz2, g1, g2, & local
87 fx2 = 0.0_dp
97 fx2 = fx2 + g2*x2
102 force(1) = force(1) + fx2*zdat(1, iz)*ydat(1, iy2)
110 fx2 = 0.0_dp
117 fx2 = fx2 + g2*x2
119 force(1) = force(1) + fx2*zdat(1, iz)*ydat(1, iy2)
/dports/lang/ypsilon/ypsilon-0.9.6-update3/src/
H A Dsubr_fixnum.cpp625 …if (fx2 >= 0 && fx2 < FIXNUM_BITS) return ((fx1 & ((intptr_t)1 << fx2)) != 0) ? scm_true : scm_fal… in subr_fx_bit_set_pred()
649 if (fx2 >= 0 && fx2 < FIXNUM_BITS) { in subr_fx_copy_bit()
681 if (fx2 > -FIXNUM_BITS && fx2 < FIXNUM_BITS) { in subr_fx_arithmetic_shift()
683 if (fx2 > 0) n = fx1 << fx2; in subr_fx_arithmetic_shift()
684 else n = fx1 >> (-fx2); in subr_fx_arithmetic_shift()
716 if (fx2 >= 0 && fx2 < FIXNUM_BITS) { in subr_fx_arithmetic_shift_left()
749 if (fx2 >= 0 && fx2 < FIXNUM_BITS) { in subr_fx_arithmetic_shift_right()
783 if (fx2 >= 0 && fx2 < FIXNUM_BITS) { in subr_fx_bit_field()
785 if (fx2 <= fx3) { in subr_fx_bit_field()
821 if (fx2 >= 0 && fx2 < FIXNUM_BITS) { in subr_fx_copy_bit_field()
[all …]
/dports/devel/agar/agar-1.5.0/tests/
H A Dfocusing.c67 AG_Fixed *fx1, *fx2; in TestUnfocusedMotion() local
88 fx2 = AG_FixedNew(fx1, AG_FIXED_BOX); in TestUnfocusedMotion()
89 AGWIDGET(fx2)->flags |= AG_WIDGET_FOCUSABLE|AG_WIDGET_UNFOCUSED_MOTION; in TestUnfocusedMotion()
90 AG_FixedMove(fx1, fx2, 64, 16); in TestUnfocusedMotion()
91 AG_FixedSize(fx1, fx2, 200, 140); in TestUnfocusedMotion()
92 AG_SetEvent(fx2, "mouse-motion", mousemotion, NULL); in TestUnfocusedMotion()
93 AG_SetEvent(fx2, "key-down", keydown, NULL); in TestUnfocusedMotion()
94 AG_SetEvent(fx2, "mouse-button-down", buttondown, NULL); in TestUnfocusedMotion()
/dports/games/jigzo/jigzo-0.6.1/src/
H A DTexture.cxx35 float fx2 = float (src.x + src.w) / float (rect.w); in Draw() local
43 glTexCoord2f(fx2, fy1); in Draw()
45 glTexCoord2f(fx2, fy2); in Draw()
56 float fx2 = float (src.x + src.w) / float (rect.w); in Draw() local
67 glTexCoord2f(fx2, fy1); in Draw()
69 glTexCoord2f(fx2, fy2); in Draw()
/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
59 allocate( fx2( nz1 ) )
118 call simpson(nmeshs-iz+1,x2(iz),rab(iz),fx2(kz))
127 fx2(kz)=fx2(kz)+(x2(iz-1)+x2(iz))*0.5d0*zr
130 fx2(kz)=fx2(kz)+x2(iz)*0.5d0*zr
147 fx2(kz)=0.d0
169 w0(kz,ig,1)=fx2(kz)
173 w0(kz,ig,2)=cs*fx2(kz)
175 w0(kz,ig,3)=sn*fx2(kz)
215 deallocate(fx2)
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/nwxc/nwad/unit_tests/
H A Dtest_dxy.F19 type(nwad_dble) :: x, y, fx2, fy2, fxy
32 call subad_dxy(x,y,fx2)
39 adx = inter_d2_dx(fx2)
41 adx2 = inter_d2_dx2(fx2)
43 adxy = inter_d2_dxy(fx2,fxy,fy2)
/dports/science/nwchem-data/nwchem-7.0.2-release/src/nwxc/nwad/unit_tests/
H A Dtest_dxy.F19 type(nwad_dble) :: x, y, fx2, fy2, fxy
32 call subad_dxy(x,y,fx2)
39 adx = inter_d2_dx(fx2)
41 adx2 = inter_d2_dx2(fx2)
43 adxy = inter_d2_dxy(fx2,fxy,fy2)
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/windows/native/libawt/java2d/d3d/
H A DD3DVertexCacher.cpp228 float fx1, fy1, fx2, fy2; in DrawLine() local
251 fx2 = fx1; in DrawLine()
266 fx2 = (float)x1; in DrawLine()
273 fx2 = (float)x1; in DrawLine()
280 fx2 = (float)x2; in DrawLine()
289 fx2 += DD_FX2; in DrawLine()
296 fx2 += DU_FX2; in DrawLine()
442 float fx2 = (float)x2; in DrawRect() local
450 ADD_LINE_XYC(fx2+HV_FF1, fy1+HV_FF3, fx2+HV_FF1, fy2-1.0f+HV_FF2,color); in DrawRect()
463 float fx2 = (float)x2; in FillRect() local
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/windows/native/libawt/java2d/d3d/
H A DD3DVertexCacher.cpp228 float fx1, fy1, fx2, fy2; in DrawLine() local
251 fx2 = fx1; in DrawLine()
266 fx2 = (float)x1; in DrawLine()
273 fx2 = (float)x1; in DrawLine()
280 fx2 = (float)x2; in DrawLine()
289 fx2 += DD_FX2; in DrawLine()
296 fx2 += DU_FX2; in DrawLine()
442 float fx2 = (float)x2; in DrawRect() local
450 ADD_LINE_XYC(fx2+HV_FF1, fy1+HV_FF3, fx2+HV_FF1, fy2-1.0f+HV_FF2,color); in DrawRect()
463 float fx2 = (float)x2; in FillRect() local
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/windows/native/libawt/java2d/d3d/
H A DD3DVertexCacher.cpp228 float fx1, fy1, fx2, fy2; in DrawLine() local
251 fx2 = fx1; in DrawLine()
266 fx2 = (float)x1; in DrawLine()
273 fx2 = (float)x1; in DrawLine()
280 fx2 = (float)x2; in DrawLine()
289 fx2 += DD_FX2; in DrawLine()
296 fx2 += DU_FX2; in DrawLine()
442 float fx2 = (float)x2; in DrawRect() local
450 ADD_LINE_XYC(fx2+HV_FF1, fy1+HV_FF3, fx2+HV_FF1, fy2-1.0f+HV_FF2,color); in DrawRect()
463 float fx2 = (float)x2; in FillRect() local
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/windows/native/libawt/java2d/d3d/
H A DD3DVertexCacher.cpp228 float fx1, fy1, fx2, fy2; in DrawLine() local
251 fx2 = fx1; in DrawLine()
266 fx2 = (float)x1; in DrawLine()
273 fx2 = (float)x1; in DrawLine()
280 fx2 = (float)x2; in DrawLine()
289 fx2 += DD_FX2; in DrawLine()
296 fx2 += DU_FX2; in DrawLine()
442 float fx2 = (float)x2; in DrawRect() local
450 ADD_LINE_XYC(fx2+HV_FF1, fy1+HV_FF3, fx2+HV_FF1, fy2-1.0f+HV_FF2,color); in DrawRect()
463 float fx2 = (float)x2; in FillRect() local
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/windows/native/libawt/java2d/d3d/
H A DD3DVertexCacher.cpp228 float fx1, fy1, fx2, fy2; in DrawLine() local
251 fx2 = fx1; in DrawLine()
266 fx2 = (float)x1; in DrawLine()
273 fx2 = (float)x1; in DrawLine()
280 fx2 = (float)x2; in DrawLine()
289 fx2 += DD_FX2; in DrawLine()
296 fx2 += DU_FX2; in DrawLine()
442 float fx2 = (float)x2; in DrawRect() local
450 ADD_LINE_XYC(fx2+HV_FF1, fy1+HV_FF3, fx2+HV_FF1, fy2-1.0f+HV_FF2,color); in DrawRect()
463 float fx2 = (float)x2; in FillRect() local
[all …]

12345678910>>...35