Home
last modified time | relevance | path

Searched refs:huge (Results 1 – 25 of 133) sorted by relevance

123456

/external/fdlibm/
De_pow.c75 huge = 1.0e300, variable
193 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
194 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
197 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
198 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny;
268 return s*huge*huge; /* overflow */
270 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */
Ds_scalbn.c30 huge = 1.0e+300, variable
53 if (k > 0x7fe) return huge*ieee_copysign(huge,x); /* overflow */
58 return huge*ieee_copysign(huge,x); /*overflow*/
Ds_floor.c26 static const double huge = 1.0e300; variable
28 static double huge = 1.0e300; variable
45 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
53 if(huge+x>0.0) { /* raise inexact flag */
64 if(huge+x>0.0) { /* raise inexact flag */
Ds_ceil.c26 static const double huge = 1.0e300; variable
28 static double huge = 1.0e300; variable
45 if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
52 if(huge+x>0.0) { /* raise inexact flag */
63 if(huge+x>0.0) { /* raise inexact flag */
De_cosh.c38 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
40 static double one = 1.0, half=0.5, huge = 1.0e300; variable
88 return huge*huge;
De_exp.c85 huge = 1.0e+300, variable
123 if(x > o_threshold) return huge*huge; /* overflow */
140 if(huge+x>one) return one+x;/* trigger inexact */
De_atanh.c36 static const double one = 1.0, huge = 1e300; variable
38 static double one = 1.0, huge = 1e300; variable
60 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
Ds_expm1.c116 huge = 1.0e+300, variable
153 if(x > o_threshold) return huge*huge; /* overflow */
Ds_asinh.c34 huge= 1.00000000000000000000e+300; variable
49 if(huge+x>one) return x; /* return x inexact except 0 */
Ds_atan.c83 huge = 1.0e300; variable
105 if(huge+x>one) return x; /* raise inexact */
De_asin.c53 huge = 1.000e+300, variable
87 if(huge+x>one) return x;/* return x with inexact if x!=0*/
De_j0.c72 huge = 1e300, variable
124 if(huge+x>one) { /* raise inexact if x != 0 */
De_j1.c72 huge = 1e300, variable
126 if(huge+x>one) return 0.5*x;/* inexact if x!=0 necessary */
Dreadme97 +-huge*huge, +-tiny*tiny, +-1.0/0.0, +-0.0/0.0
107 Similarly, ieee_exp(-huge) will be mapped to tiny*tiny to generate
/external/qemu/distrib/sdl-1.2.12/src/video/
De_pow.h183 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
184 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
187 if(ix<0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
188 if(ix>0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
261 return s*huge*huge; /* overflow */
263 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */
De_sqrt.h123 if (k > 0x7fe) return huge*SDL_NAME(copysign)(huge,x); /* overflow */
128 return huge*SDL_NAME(copysign)(huge,x); /*overflow*/
Dmath_private.h23 #define huge really_big /* huge is a reserved keyword in VC++ 6.0 */ macro
170 huge = 1.0e+300, variable
/external/v8/test/mjsunit/compiler/
Dalloc-object-huge.js35 return new huge();
45 var o = new huge();
50 function huge() { function
/external/markdown/tests/misc/
Dadjacent-headers.txt1 # this is a huge header #
/external/webkit/PerformanceTests/
DChangeLog109 the fragment parsing algorithm. Document() it turns out, it a huge bloated
110 mess, and the constructor and destructor do a huge amount of work.
138 the fragment parsing algorithm. Document() it turns out, it a huge bloated
139 mess, and the constructor and destructor do a huge amount of work.
/external/chromium/chrome/browser/resources/options/
Dfont_settings.css34 .font-settings-huge {
/external/bzip2/
DREADME.COMPILATION.PROBLEMS23 but many newer ones can. Large files are pretty huge -- most files
51 You can use the spewG.c program to generate huge files to test bzip2's
/external/skia/samplecode/
DSampleFuzz.cpp41 static float huge() { in huge() function
62 case 5: v = huge(); break; in make_number()
/external/qemu/distrib/libpng-1.2.19/
Dpngmem.c166 png_byte huge * hptr; in png_malloc_default()
226 hptr = (png_byte huge *)table; in png_malloc_default()
229 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L); in png_malloc_default()
/external/libpng/
Dpngmem.c179 png_byte huge * hptr; in png_malloc_default()
239 hptr = (png_byte huge *)table; in png_malloc_default()
242 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L); in png_malloc_default()

123456