12+ results for 'while !isfinite(x)' (0 ms)
Not the results you expected?
Numbers.js (git://github.com/mbostock/protovis.git) JavaScript · 313 lines
25 stop -= (stop - start) * 1e-10; // floating point precision!
26 if (step < 0) {
27 while ((j = start + step * i++) > stop) {
28 array.push(j);
29 }
30 } else {
31 while ((j = start + step * i++) < stop) {
32 array.push(j);
33 }
266 */
267 pv.logAdjusted = function(x, b) {
268 if (!isFinite(x)) return x;
269 var negative = x < 0;
270 if (x < b) x += (b - x) / b;
lgammaf.c (git://pkgs.fedoraproject.org/mingw-w64-tools) C · 189 lines
tgammaf.c (git://pkgs.fedoraproject.org/mingw-w64-tools) C · 195 lines
typ.js (http://story-steward.googlecode.com/svn/trunk/) JavaScript · 489 lines
floor.c (https://github.com/rkobes/math-cephes.git) C · 453 lines
grisu.jl (https://github.com/nolta/julia.git) Julia · 181 lines
28 # wrapper for the core grisu function, primarily for debugging
29 function grisu(x::Float64, mode::Integer, ndigits::Integer)
30 if !isfinite(x); error("non-finite value: $x"); end
31 if ndigits < 0; error("negative digits requested"); end
32 @grisu_ccall x mode ndigits
68 pt = int(POINT[1])
69 if mode == PRECISION
70 while len > 1 && DIGITS[len] == '0'
71 len -= 1
72 end
89 # => 0.00########
90 write(io, "0.")
91 while pt < 0
92 write(io, '0')
93 pt += 1
pike_float.h (git://github.com/pikelang/Pike.git) C Header · 91 lines
match.c (https://github.com/nclack/whisk.git) C · 543 lines
33 #ifndef isinf
34 #define isinf(x) (!isfinite(x))
35 #endif
100 distMatrixTemp = distMatrix;
101 while(distMatrixTemp < distMatrixEnd)
102 {
103 value = *distMatrixTemp++;
121 infValue = 10;
122 distMatrixTemp = distMatrix;
123 while(distMatrixTemp < distMatrixEnd)
124 if(isinf(*distMatrixTemp++))
125 *(distMatrixTemp-1) = infValue;
grisu.jl (https://github.com/cloudchamber/julia.git) Lisp · 157 lines
25 global grisu, grisu_fix, grisu_sig
26 function grisu(x::Float64, mode::Integer, ndigits::Integer)
27 if !isfinite(x); error("non-finite value: $x"); end
28 if ndigits < 0; error("negative digits requested"); end
29 @grisu_ccall x mode ndigits
53 pt = _jl_point[1]
54 if mode == GRISU_PRECISION
55 while len > 1 && _jl_digits[len] == '0'
56 len -= 1
57 end
74 # => 0.00########
75 write(io, "0.")
76 while pt < 0
77 write(io, '0')
78 pt += 1
grisu.jl (https://github.com/stevengj/julia.git) Julia · 165 lines
28 # wrapper for the core grisu function, primarily for debugging
29 function grisu(x::Float64, mode::Integer, ndigits::Integer)
30 if !isfinite(x); error("non-finite value: $x"); end
31 if ndigits < 0; error("negative digits requested"); end
32 @grisu_ccall x mode ndigits
60 pt = POINT[1]
61 if mode == PRECISION
62 while len > 1 && DIGITS[len] == '0'
63 len -= 1
64 end
80 # => 0.00########
81 write(io, "0.")
82 while pt < 0
83 write(io, '0')
84 pt += 1