Home
last modified time | relevance | path

Searched refs:fl (Results 101 – 125 of 14181) sorted by relevance

12345678910>>...568

/dports/lang/racket/racket-8.3/share/pkgs/math-lib/math/private/flonum/
H A Dflonum-exp.rkt33 (fl/ (- y) (fl+ y 1.0))]
34 [else (fl+ (fl* x 0.10281276702880859e1)
35 (fl* x (fl/ (expm1-poly-numer x) (expm1-poly-denom x))))]))
53 (cond [(ax . fl>= . 0.5) (fl- (flexp x) 1.0)]
54 [(ax . fl> . (fl* 0.5 epsilon.0)) (flexpm1/poly x)]
67 (fl* (fl* (flexp (- (fl* 2.0 (fl* p q))))
81 (fl* (fl* (flexp (fl* 2.0 (fl* p q)))
90 (cond [(x . fl< . -0.5) (flexp (fl+ 1.0 x))]
93 (define lg2x+1 (flfloor (fl/ (fllog (fl+ 1.0 x)) (fllog 2.0))))
94 (cond [(fl= lg2x lg2x+1) (flexp (fl+ 1.0 x))]
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/math-lib/math/private/functions/
H A Dbeta.rkt30 [(fl= a 1.0) (fl/ 1.0 b)]
31 [(fl= b 1.0) (fl/ 1.0 a)]
36 [(or (and (b . fl< . 1.0) (a . fl> . (fl* 1e16 b)))
37 (and (a . fl> . 1e17) (b . fl< . (fl/ 700.0 (fllog a)))))
40 [(and (b . fl>= . 1.0) (a . fl<= . 99.0) ((fl+ a b) . fl<= . 171.0))
41 (fl/ (fl* (flgamma a) (flgamma b)) (flgamma (fl+ a b)))]
57 (flsqrt (fl/ (* 2.0 pi (fl+ a b)) (fl* a b)))
63 (flsqrt (fl/ (fl/ (* 2.0 pi (fl+ a b)) a) b))
136 (fllog-beta (fl a) (fl b))]))
149 (flbeta (fl a) (fl b)))]
[all …]
H A Dhurwitz-zeta.rkt36 ((flabs dy) . fl<= . (fl* (fl* 0.5 epsilon.0) new-y))
83 (fl+ (fl+ (fl* fn 0.5)
84 (fl/ (fl* fn q) (fl- s 1.0)))
85 (fl* (fl* fn (fl/ s q)) c0))]
87 (fl* fn (fl+ (fl+ 0.5 (fl/ q (fl- s 1.0)))
88 (fl* (fl/ s q) c0)))]))
94 (define n+q (fl+ (fl n) q))
98 (let: loop : Flonum ([y : Flonum (fl* fn (fl+ (fl/ n+q (fl- s 1.0)) 0.5))]
114 (cond [((flabs dy) . fl<= . (fl* (fl* 0.5 epsilon.0) (flabs new-y)))
118 (define z (fl* (fl+ s (fl+ 2k 1.0)) (fl+ s (fl+ 2k 2.0))))
[all …]
H A Dlog-gamma-zeros.rkt985 [(and (x . fl>= . -2.7) (x . fl<= . -2.575))
1025 [(and (x . fl>= . (fl- -8.000024800270682 7.1e-6))
1028 [(and (x . fl>= . (fl- -8.999997244250979 7.8e-7))
1031 [(and (x . fl>= . (fl- -9.000002755714823 7.8e-7))
1034 [(and (x . fl>= . (fl- -9.99999972442663 8.0e-8))
1035 (x . fl<= . (fl+ -9.99999972442663 8.0e-8)))
1081 [(and (x . fl>= . (fl- -15.000000000000764 2.1e-13))
1084 [(and (x . fl>= . (fl- -15.999999999999954 1e-14))
1085 (x . fl<= . (fl+ -15.999999999999954 1e-14)))
1087 [(and (x . fl>= . (fl- -16.000000000000046 1e-14))
[all …]
H A Dstirling-error.rkt154 (fl/ (fl/ ((inline-chebyshev-flpoly-fun
207 (cond [(x . fl<= . 0.0) (if (fl= x 0.0) +inf.0 +nan.0)]
208 [(x . fl< . 1.0)
210 (fl- (fl* -0.5 (fllog (fl* 2.0 pi)))
218 [(x . fl< . 8.0)
229 (fl/ (fl/ 1.0 x) x))
231 [(x . fl< . 2e7)
232 (fl/ ((make-flpolyfun (#i1/12 #i-1/360)) (fl/ (fl/ 1.0 x) x)) x)]
238 (cond [(x . fl<= . 0.0) (if (fl= x 0.0) +inf.0 +nan.0)]
240 (fl/ (fl/ 1.0 (flsqrt (fl* 2.0 pi)))
[all …]
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/src/
H A Dlib_flonums.stub112 ((_ fl)
154 ((_ fl)
155 `(?: (or (isinf ,fl) (isnan ,fl)) FALSE (== ,fl (floor ,fl)))))
171 (result (not (== (* fl 0.5) (floor (* fl 0.5)))))
177 (result (== (* fl 0.5) (floor (* fl 0.5))))
182 (result (and (not (isinf fl)) (not (isnan fl)))))
185 (result (and (isinf fl) (not (isnan fl)))))
305 (result (* fl fl)))
343 (lambda (fl) (fllog fl x)))
536 (define-c-proc fl-fast-fl+*? () ::<boolean>
[all …]
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/math/
H A Dfloating.h34 #define fl_sqrt(fl) sqrtf(fl) argument
35 #define fl_isqrt(fl) (1.0f/sqrtf(fl)) argument
36 #define fl_abs(fl) fabsf(fl) argument
38 #define fl2i(fl) ((int)(fl)) argument
39 #define fl2ir(fl) ((int)(fl + ((fl < 0.0f) ? -0.5f : 0.5f))) argument
40 #define flceil(fl) (int)ceil(fl) argument
41 #define flfloor(fl) (int)floor(fl) argument
44 #define fl2f(fl) (int)((fl)*65536.0f) argument
45 #define fl_tan(fl) tanf(fl) argument
48 #define fl_radians(fl) ((float)((fl) * (PI / 180.0f))) argument
[all …]
/dports/security/certmgr/certmgr-3.0.3/vendor/github.com/google/certificate-transparency-go/certificate-transparency-go-1.0.21/fixchain/
H A Dfix_and_log.go60 if fl.done.get(h) {
71 fl.fixer.QueueChain(cert, dchain.certs, fl.logger.RootCerts())
87 fl.fixer.QueueChain(chain[0], chain, fl.logger.RootCerts())
95 fl.fixer.Wait()
96 close(fl.chains)
97 fl.wg.Wait()
98 fl.logger.Wait()
107 fl := &FixAndLog{
114 fl.wg.Add(1)
119 fl.wg.Done()
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/math-lib/math/private/distributions/impl/
H A Dbeta-inv-cdf.rkt16 (define 1-eps (fl- 1.0 (fl* 0.5 epsilon.0)))
24 (fl+ (fl* a (fllog x)) (fl* b (fllog1p (- x)))))
28 (fl/ (fl- (fl* x x) x)
29 (fl- (fl* (fl+ a b) x) a)))
60 (cond [(or ((flabs (fl- fx new-fx)) . fl<= . (flabs (fl* (fl* 1000.0 epsilon.0) new-fx)))
61 (fl<= (flabs new-dx) (fl* (fl* 0.5 epsilon.0) new-x))
73 (fl- (fl- (log-const-numer a b (bound-estimate (fl- (fl/ a (fl+ a b)) (fl* 0.85 σ))))
77 (fl- (fl- (log-const-numer b a (bound-estimate (fl- (fl/ b (fl+ a b)) (fl* 0.85 σ))))
87 (define s (fl/ (fl- x1 x0) (fl- (lg1- log-1-p1) log-p0)))
89 (fl+ (fl* s log-p) c)]))
[all …]
H A Dbeta-utils.rkt10 (cond [(and (a . fl< . 1e20) (b . fl< . 1e20))
11 (fl/ (fl+ (fl* 3.0 a) -1.0)
12 (fl+ (fl+ (fl* 3.0 b) (fl* 3.0 a)) -2.0))]
14 (fl/ a (fl+ a b))]))
19 (define n (fl+ a b))
20 (cond [(n . fl> . 1e40)
21 (let ([a (fl* 0.5 a)] [b (fl* 0.5 b)])
22 (define n (fl+ a b))
23 (fl/ (fl* (flsqrt (fl/ a n)) (flsqrt (fl/ b n)))
26 (fl/ (fl* (flsqrt (fl/ a n)) (flsqrt (fl/ b n)))
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/math-lib/math/private/distributions/
H A Dcauchy-dist.rkt26 [else (fl/ 1/x^2 (fl* pi (fl+ 1.0 1/x^2)))])]
29 [else (fl/ 1.0 (fl* pi (fl+ 1.0 (fl* x x))))])]))))
36 (cond [log? (cond [(x . fl< . -1.0) (fl- (fllog (flatan (fl/ -1.0 x))) (fllog pi))]
37 [(x . fl> . +1.0) (fllog1p (fl/ (flatan (fl/ -1.0 x)) pi))]
39 [else (cond [(x . fl< . -1.0) (- (fl/ (flatan (fl/ 1.0 x)) pi))]
40 [(x . fl> . +1.0) (fl- 1.0 (fl/ (flatan (fl/ 1.0 x)) pi))]
47 (cond [(q . fl> . (fllog 0.75)) (fl/ +1.0 (fltan (fl* pi (- (flexpm1 q)))))]
48 [(q . fl< . (fllog 0.25)) (fl/ -1.0 (fltan (fl* pi (flexp q))))]
51 (cond [(q . fl> . 0.75) (fl/ +1.0 (fltan (fl* pi (fl- 1.0 q))))]
52 [(q . fl< . 0.25) (fl/ -1.0 (fltan (fl* pi q)))]
[all …]
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/math/
H A Dfloating.h23 #define fl_is_nan(fl) _isnan((double)(fl)) argument
27 #define fl_sqrt(fl) sqrtf(fl) argument
28 #define fl_isqrt(fl) (1.0f/sqrtf(fl)) argument
29 #define fl_abs(fl) fabsf(fl) argument
31 #define fl2i(fl) ((int)(fl)) argument
32 #define flceil(fl) (int)ceil(fl) argument
33 #define flfloor(fl) (int)floor(fl) argument
35 #define fl2f(fl) (int)((fl)*65536.0f) argument
36 #define fl_tan(fl) tanf(fl) argument
39 #define fl_radians(fl) ((float)((fl * PI)/180.0f)) argument
[all …]
/dports/x11/xlockmore/xlockmore-5.67/modes/
H A Dfiberlamp.c115 if (fl->fiber) { in free_fiber()
128 free(fl->fiber); in free_fiber()
136 if (fl == NULL) { in free_fiberlamp_screen()
143 free_fiber(fl); in free_fiberlamp_screen()
144 fl = NULL; in free_fiberlamp_screen()
191 if((fl->fiber = in init_fiberlamp()
242 fl->bright = fl->medium = fl->dim = MI_BLACK_PIXEL(mi); in init_fiberlamp()
284 fl->fiber[i - 1] = fl->fiber[i]; in sort_fibers()
309 fl->psi += fl->dpsi; /* turn colorwheel */ in draw_fiberlamp()
434 fl->rx = x; in draw_fiberlamp()
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/math-lib/math/private/functions/incomplete-gamma/
H A Dgamma-utils.rkt23 (define logy (fl+ (fl* k (fl- (fllog x) (fllog k)))
26 [(or (k . fl< . 0.0) (x . fl< . 0.0)) +nan.0]
29 [(k . fl>= . 1e35) (if (fl= x k) 1.0 0.0)]
35 (fl/ (flsharkfin k (fl* x c))
99 (fl+ (fl* k (fl- (fllog x) (fllog k)))
105 (cond [(or (k . fl< . 0.0) (x . fl< . 0.0)) +nan.0]
117 (cond [(or (k . fl< . 0.0) (x . fl< . 0.0)) +nan.0]
129 (cond [(or (k . fl< . 0.0) (x . fl< . 0.0)) +nan.0]
130 [(or (fl= k 0.0) (fl= x 0.0)) 0.0]
139 (cond [(or (k . fl< . 0.0) (x . fl< . 0.0)) +nan.0]
[all …]
/dports/devel/rudiments/rudiments-1.2.2/test/
H A Dfile.cpp28 file fl; in main() local
38 !fl.create(testfiletxt,0)); in main()
51 fl.close(); in main()
55 fl.close(); in main()
61 fl.create(testfiletxt, in main()
65 test("close",fl.close()); in main()
88 test("size",fl.getSize()==5); in main()
142 fl.open(testfiletxt,O_RDWR); in main()
143 test("lock 1",fl.lockFile( in main()
168 fl.close(); in main()
[all …]
/dports/net/mpich/mpich-3.4.3/modules/libfabric/prov/gni/src/
H A Dgnix_freelist.c64 assert(fl); in __gnix_fl_refill()
82 elems += fl->elem_size + fl->offset; in __gnix_fl_refill()
87 elems += fl->elem_size; in __gnix_fl_refill()
113 fl->elem_size = elem_size; in _gnix_fl_init()
114 fl->offset = offset; in _gnix_fl_init()
116 dlist_init(&fl->freelist); in _gnix_fl_init()
118 slist_init(&fl->chunks); in _gnix_fl_init()
135 fl); in _gnix_fl_init_ts()
137 fl->ts = 1; in _gnix_fl_init_ts()
147 assert(fl); in _gnix_fl_destroy()
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/sigs.k8s.io/kustomize/api/loader/
H A Dfileloader.go119 return fl.root.String()
181 repoSpec, fl.fSys, fl, fl.cloner)
187 root, err := demandDirectoryRoot(fl.fSys, fl.root.Join(path))
198 fl.loadRestrictor, root, fl.fSys, fl, fl.cloner), nil
258 if fl.repoSpec != nil {
259 return fl.repoSpec
261 if fl.referrer == nil {
306 if fl.http != nil {
307 hc = fl.http
325 path, err := fl.loadRestrictor(fl.fSys, fl.root, path)
[all …]
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/build/fl/
H A Dfl.dsp8 CFG=fl - Win32 Debug
12 !MESSAGE NMAKE /f "fl.mak".
17 !MESSAGE NMAKE /f "fl.mak" CFG="fl - Win32 Debug"
440 # Name "fl - Win32 DLL Release"
441 # Name "fl - Win32 DLL Debug"
448 # Name "fl - Win32 Release"
449 # Name "fl - Win32 Debug"
467 SOURCE=..\..\src\fl\cbcustom.cpp
481 SOURCE=..\..\src\fl\dyntbar.cpp
489 SOURCE=..\..\src\fl\frmview.cpp
[all …]
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/contrib/build/fl/
H A Dfl.dsp8 CFG=fl - Win32 Debug
12 !MESSAGE NMAKE /f "fl.mak".
17 !MESSAGE NMAKE /f "fl.mak" CFG="fl - Win32 Debug"
440 # Name "fl - Win32 DLL Release"
441 # Name "fl - Win32 DLL Debug"
448 # Name "fl - Win32 Release"
449 # Name "fl - Win32 Debug"
467 SOURCE=..\..\src\fl\cbcustom.cpp
481 SOURCE=..\..\src\fl\dyntbar.cpp
489 SOURCE=..\..\src\fl\frmview.cpp
[all …]
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/contrib/build/fl/
H A Dfl.dsp8 CFG=fl - Win32 Debug
12 !MESSAGE NMAKE /f "fl.mak".
17 !MESSAGE NMAKE /f "fl.mak" CFG="fl - Win32 Debug"
440 # Name "fl - Win32 DLL Release"
441 # Name "fl - Win32 DLL Debug"
448 # Name "fl - Win32 Release"
449 # Name "fl - Win32 Debug"
467 SOURCE=..\..\src\fl\cbcustom.cpp
481 SOURCE=..\..\src\fl\dyntbar.cpp
489 SOURCE=..\..\src\fl\frmview.cpp
[all …]
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/build/fl/
H A Dfl.dsp8 CFG=fl - Win32 Debug
12 !MESSAGE NMAKE /f "fl.mak".
17 !MESSAGE NMAKE /f "fl.mak" CFG="fl - Win32 Debug"
440 # Name "fl - Win32 DLL Release"
441 # Name "fl - Win32 DLL Debug"
448 # Name "fl - Win32 Release"
449 # Name "fl - Win32 Debug"
467 SOURCE=..\..\src\fl\cbcustom.cpp
481 SOURCE=..\..\src\fl\dyntbar.cpp
489 SOURCE=..\..\src\fl\frmview.cpp
[all …]
/dports/science/PETSc/petsc-3.14.1/src/sys/objects/
H A Dolist.c41 nlist = *fl; in PetscObjectListRemoveReference()
102 nlist = *fl; in PetscObjectListAdd()
125 if (!*fl) *fl = olist; in PetscObjectListAdd()
153 while (fl) { in PetscObjectListDestroy()
159 fl = tmp; in PetscObjectListDestroy()
193 while (fl) { in PetscObjectListFind()
199 fl = fl->next; in PetscObjectListFind()
229 while (fl) { in PetscObjectListReverseFind()
235 fl = fl->next; in PetscObjectListReverseFind()
259 while (fl) { in PetscObjectListDuplicate()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/drascula/
H A Drooms.cpp186 (void)fl; in room_0()
731 } else if (fl == 150) in room_27()
842 else if (pickedObject == 8 && (fl == 51 || fl == 203)) in room_49()
926 } else if (fl == 206) { in room_55()
1552 if ((pickedObject == 18 && fl == 19) || (pickedObject == 19 && fl == 18)) { in checkAction()
1583 if (room(13, fl)) { in checkAction()
1597 if (room(21, fl)) { in checkAction()
1605 if (room(56, fl)) { in checkAction()
1617 room(102, fl); in checkAction()
1619 if (room(60, fl)) { in checkAction()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/drascula/
H A Drooms.cpp186 (void)fl; in room_0()
731 } else if (fl == 150) in room_27()
842 else if (pickedObject == 8 && (fl == 51 || fl == 203)) in room_49()
926 } else if (fl == 206) { in room_55()
1552 if ((pickedObject == 18 && fl == 19) || (pickedObject == 19 && fl == 18)) { in checkAction()
1583 if (room(13, fl)) { in checkAction()
1597 if (room(21, fl)) { in checkAction()
1605 if (room(56, fl)) { in checkAction()
1617 room(102, fl); in checkAction()
1619 if (room(60, fl)) { in checkAction()
[all …]
/dports/graphics/figurine/figurine-1.0.5/src/
H A Dsave.c303 fprintf(fl,"0 "); in polyline_out()
328 fprintf(fl,"\n"); in polyline_out()
343 fprintf(fl,"3 "); in spline_out()
791 if (fl==NULL) in save_name()
881 fclose(fl); in save_name()
905 FILE *fl; in fig2dev_version() local
911 if (fl==NULL) in fig2dev_version()
929 fclose(fl); in fig2dev_version()
940 fclose(fl); in fig2dev_version()
994 if (fl==NULL) in export_name()
[all …]

12345678910>>...568