rb_float_new     831 bignum.c           return rb_float_new(rb_big2dbl(x));
rb_float_new     1035 bignum.c       	return rb_float_new(rb_big2dbl(x) + RFLOAT(y)->value);
rb_float_new     1054 bignum.c       	return rb_float_new(rb_big2dbl(x) - RFLOAT(y)->value);
rb_float_new     1080 bignum.c       	return rb_float_new(rb_big2dbl(x) * RFLOAT(y)->value);
rb_float_new     1271 bignum.c       	return rb_float_new(rb_big2dbl(x) / RFLOAT(y)->value);
rb_float_new     1388 bignum.c           return rb_float_new(pow(rb_big2dbl(x), d));
rb_float_new     1699 bignum.c       	return rb_float_new(rand_buf[0]);
rb_float_new      66 ext/dl/dl.c    	val = rb_float_new(v);
rb_float_new      74 ext/dl/dl.c    	val = rb_float_new(v);
rb_float_new     373 ext/dl/ptr.c         rb_ary_push(ary, rb_float_new(((double*)(data->ptr))[i]));
rb_float_new     375 ext/dl/ptr.c         rb_ary_push(ary, rb_float_new(((float*)(data->ptr))[i]));
rb_float_new     667 ext/dl/ptr.c         elem = rb_float_new(*((float*)ptr));
rb_float_new     671 ext/dl/ptr.c         elem = rb_float_new(*((double*)ptr));
rb_float_new     704 ext/dl/ptr.c         elem = rb_float_new(*((float*)ptr));
rb_float_new     708 ext/dl/ptr.c         elem = rb_float_new(*((float*)ptr));
rb_float_new     715 ext/dl/sym.c       val = rb_float_new((double)(ANY2F(ret)));
rb_float_new     719 ext/dl/sym.c       val = rb_float_new((double)(ANY2D(ret)));
rb_float_new     763 ext/dl/sym.c   	rb_ary_push(dvals, rb_float_new(*((float*)(ANY2P(args[i])))));
rb_float_new     766 ext/dl/sym.c   	rb_ary_push(dvals, rb_float_new(*((double*)(ANY2P(args[i])))));
rb_float_new     840 ext/win32ole/win32ole.c             obj = rb_float_new(*V_R4REF(pvar));
rb_float_new     842 ext/win32ole/win32ole.c             obj = rb_float_new(V_R4(pvar));
rb_float_new     847 ext/win32ole/win32ole.c             obj = rb_float_new(*V_R8REF(pvar));
rb_float_new     849 ext/win32ole/win32ole.c             obj = rb_float_new(V_R8(pvar));
rb_float_new     928 marshal.c      	    v = rb_float_new(d);
rb_float_new      30 math.c             return rb_float_new(atan2(RFLOAT(y)->value, RFLOAT(x)->value));
rb_float_new      39 math.c             return rb_float_new(cos(RFLOAT(x)->value));
rb_float_new      48 math.c             return rb_float_new(sin(RFLOAT(x)->value));
rb_float_new      57 math.c             return rb_float_new(tan(RFLOAT(x)->value));
rb_float_new      69 math.c             return rb_float_new(acos(RFLOAT(x)->value));
rb_float_new      81 math.c             return rb_float_new(asin(RFLOAT(x)->value));
rb_float_new      90 math.c             return rb_float_new(atan(RFLOAT(x)->value));
rb_float_new     108 math.c             return rb_float_new(cosh(RFLOAT(x)->value));
rb_float_new     126 math.c             return rb_float_new(sinh(RFLOAT(x)->value));
rb_float_new     144 math.c             return rb_float_new(tanh(RFLOAT(x)->value));
rb_float_new     153 math.c             return rb_float_new(acosh(RFLOAT(x)->value));
rb_float_new     162 math.c             return rb_float_new(asinh(RFLOAT(x)->value));
rb_float_new     171 math.c             return rb_float_new(atanh(RFLOAT(x)->value));
rb_float_new     180 math.c             return rb_float_new(exp(RFLOAT(x)->value));
rb_float_new     194 math.c             return rb_float_new(log(RFLOAT(x)->value));
rb_float_new     203 math.c             return rb_float_new(log10(RFLOAT(x)->value));
rb_float_new     213 math.c             return rb_float_new(sqrt(RFLOAT(x)->value));
rb_float_new     226 math.c             return rb_assoc_new(rb_float_new(d), INT2NUM(exp));
rb_float_new     237 math.c             return rb_float_new(d = ldexp(RFLOAT(x)->value, NUM2INT(n)));
rb_float_new     246 math.c             return rb_float_new(hypot(RFLOAT(x)->value, RFLOAT(y)->value));
rb_float_new     255 math.c             rb_define_const(rb_mMath, "PI", rb_float_new(M_PI));
rb_float_new     257 math.c             rb_define_const(rb_mMath, "PI", rb_float_new(atan(1.0)*4.0));
rb_float_new     261 math.c             rb_define_const(rb_mMath, "E", rb_float_new(M_E));
rb_float_new     263 math.c             rb_define_const(rb_mMath, "E", rb_float_new(exp(1.0)));
rb_float_new     136 numeric.c      	    div = rb_float_new(d);
rb_float_new     271 numeric.c          return rb_float_new(-RFLOAT(flt)->value);
rb_float_new     280 numeric.c      	return rb_float_new(RFLOAT(x)->value + (double)FIX2LONG(y));
rb_float_new     282 numeric.c      	return rb_float_new(RFLOAT(x)->value + rb_big2dbl(y));
rb_float_new     284 numeric.c      	return rb_float_new(RFLOAT(x)->value + RFLOAT(y)->value);
rb_float_new     296 numeric.c      	return rb_float_new(RFLOAT(x)->value - (double)FIX2LONG(y));
rb_float_new     298 numeric.c      	return rb_float_new(RFLOAT(x)->value - rb_big2dbl(y));
rb_float_new     300 numeric.c      	return rb_float_new(RFLOAT(x)->value - RFLOAT(y)->value);
rb_float_new     312 numeric.c      	return rb_float_new(RFLOAT(x)->value * (double)FIX2LONG(y));
rb_float_new     314 numeric.c      	return rb_float_new(RFLOAT(x)->value * rb_big2dbl(y));
rb_float_new     316 numeric.c      	return rb_float_new(RFLOAT(x)->value * RFLOAT(y)->value);
rb_float_new     332 numeric.c      	return rb_float_new(RFLOAT(x)->value / (double)f_y);
rb_float_new     335 numeric.c      	return rb_float_new(RFLOAT(x)->value / d);
rb_float_new     337 numeric.c      	return rb_float_new(RFLOAT(x)->value / RFLOAT(y)->value);
rb_float_new     389 numeric.c          return rb_float_new(mod);
rb_float_new     412 numeric.c          return rb_assoc_new(rb_float_new(div), rb_float_new(mod));
rb_float_new     412 numeric.c          return rb_assoc_new(rb_float_new(div), rb_float_new(mod));
rb_float_new     421 numeric.c              return rb_float_new(pow(RFLOAT(x)->value, (double)FIX2LONG(y)));
rb_float_new     423 numeric.c      	return rb_float_new(pow(RFLOAT(x)->value, rb_big2dbl(y)));
rb_float_new     425 numeric.c              return rb_float_new(pow(RFLOAT(x)->value, RFLOAT(y)->value));
rb_float_new     644 numeric.c          return rb_float_new(val);
rb_float_new     828 numeric.c      	    rb_yield(rb_float_new(i*unit+beg));
rb_float_new     1150 numeric.c      	return rb_float_new((double)FIX2LONG(x) + RFLOAT(y)->value);
rb_float_new     1174 numeric.c      	return rb_float_new((double)FIX2LONG(x) - RFLOAT(y)->value);
rb_float_new     1200 numeric.c      	return rb_float_new((double)FIX2LONG(x) * RFLOAT(y)->value);
rb_float_new     1288 numeric.c      	return rb_float_new(pow((double)a, (double)b));
rb_float_new     1504 numeric.c          return rb_float_new(val);
rb_float_new     376 object.c           return rb_float_new(0.0);
rb_float_new     1107 object.c       	return rb_float_new((double)FIX2LONG(val));
rb_float_new     1113 object.c       	return rb_float_new(rb_big2dbl(val));
rb_float_new     1116 object.c       	return rb_float_new(rb_str_to_dbl(val, Qtrue));
rb_float_new     1411 pack.c         		rb_ary_push(ary, rb_float_new((double)tmp));
rb_float_new     1425 pack.c         		rb_ary_push(ary, rb_float_new((double)tmp));
rb_float_new     1439 pack.c         		rb_ary_push(ary, rb_float_new(tmp));
rb_float_new     1451 pack.c         		rb_ary_push(ary, rb_float_new(tmp));
rb_float_new     1465 pack.c         		rb_ary_push(ary, rb_float_new((double)tmp));
rb_float_new     1479 pack.c         		rb_ary_push(ary, rb_float_new(tmp));
rb_float_new     3745 parse.y        		yylval.node = NEW_LIT(rb_float_new(d));
rb_float_new     1275 process.c      			 rb_float_new((double)buf.tms_utime / HZ),
rb_float_new     1276 process.c      			 rb_float_new((double)buf.tms_stime / HZ),
rb_float_new     1277 process.c      			 rb_float_new((double)buf.tms_cutime / HZ),
rb_float_new     1278 process.c      			 rb_float_new((double)buf.tms_cstime / HZ));
rb_float_new     245 random.c       	return rb_float_new(genrand_real());
rb_float_new     1793 string.c           return rb_float_new(rb_str_to_dbl(str, Qfalse));
rb_float_new     690 time.c             return rb_float_new((double)tobj->tv.tv_sec+(double)tobj->tv.tv_usec/1e6);
rb_float_new     1005 time.c         	return rb_float_new(f);