Searched refs:huge (Results 1 - 25 of 36) sorted by relevance

12

/external/fdlibm/
H A 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 */
H A 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 */
H A 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*/
H A 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 */
H A De_cosh.c28 * ln2ovft < x : ieee_cosh(x) := huge*huge (overflow)
38 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;
H A Ds_asinh.c34 huge= 1.00000000000000000000e+300; variable
49 if(huge+x>one) return x; /* return x inexact except 0 */
H A 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 */
H A De_pow.c75 huge = 1.0e300, variable
190 /* |y| is huge */
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
[all...]
H A Ds_expm1.c116 huge = 1.0e+300, variable
145 /* filter out huge and non-finite argument */
153 if(x > o_threshold) return huge*huge; /* overflow */
178 // t = huge+x; /* return x with inexact flags when x!=0 */
179 // return x - (t-(huge+x));
H A Ds_atan.c83 huge = 1.0e300; variable
105 if(huge+x>one) return x; /* raise inexact */
H A De_asin.c53 huge = 1.000e+300, variable
87 if(huge+x>one) return x;/* return x with inexact if x!=0*/
H A De_j0.c72 huge = 1e300, variable
124 if(huge+x>one) { /* raise inexact if x != 0 */
/external/chromium_org/media/filters/
H A Daudio_clock_unittest.cc359 const base::TimeDelta huge = local
361 EXPECT_EQ(2485, huge.InDays()); // Just to give some context on how big...
369 EXPECT_EQ(huge.InDays(), FrontTimestampInDays());
370 EXPECT_EQ(huge.InDays(), ContiguousAudioDataBufferedInDays());
373 EXPECT_EQ((huge * 2).InDays(), FrontTimestampInDays());
374 EXPECT_EQ(huge.InDays(), ContiguousAudioDataBufferedInDays());
377 EXPECT_EQ((huge * 3).InDays(), FrontTimestampInDays());
378 EXPECT_EQ(huge.InDays(), ContiguousAudioDataBufferedInDays());
380 // Use huge delay to test calculation of buffered data.
383 EXPECT_EQ((huge *
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A De_pow.h180 /* |y| is huge */
183 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*hug
[all...]
H A De_sqrt.h74 * huge + tiny is equal to huge, and whether huge - tiny is
75 * equal to huge for some floating point number "huge" and "tiny".
123 if (k > 0x7fe) return huge*SDL_NAME(copysign)(huge,x); /* overflow */
128 return huge*SDL_NAME(copysign)(huge,x); /*overflow*/
H A Dmath_private.h23 #define huge really_big /* huge is a reserved keyword in VC++ 6.0 */ macro
170 huge = 1.0e+300, variable
/external/chromium_org/chrome/browser/resources/options/
H A Dfont_settings.css56 .font-settings-huge {
60 html[dir=rtl] .font-settings-huge {
/external/compiler-rt/test/tsan/
H A Dmutexset7.cc7 __thread int huge[1024*1024]; variable
/external/e2fsprogs/misc/
H A Dmke2fs-hurd.conf27 huge = {
/external/jemalloc/src/
H A Dhuge.c12 /* Tree of chunks that are stand-alone huge allocations. */
13 static extent_tree_t huge; variable
55 /* Insert node into huge. */
61 extent_tree_ad_insert(&huge, node);
166 /* Extract from tree of huge allocations. */
168 node = extent_tree_ad_search(&huge, &key);
171 extent_tree_ad_remove(&huge, node);
188 /* Extract from tree of huge allocations. */
190 node = extent_tree_ad_search(&huge, &key);
208 /* Extract from tree of huge allocation
[all...]
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dalloc-object-huge.js32 // Test that huge constructors (more than 256 this assignments) are
35 // Test huge constructor when being inlined into hydrogen.
37 return new huge();
46 // Test huge constructor with specialized constructor stub.
47 var o = new huge();
51 // The huge constructor, nothing interesting beyond this point.
52 function huge() { class
/external/chromium_org/third_party/skia/samplecode/
H A DSampleFuzz.cpp48 static float huge() { function
82 case 5: v = huge(); break;
/external/skia/samplecode/
H A DSampleFuzz.cpp48 static float huge() { function
82 case 5: v = huge(); break;
/external/chromium_org/third_party/libpng/
H A Dpngmem.c179 png_byte huge * hptr;
239 hptr = (png_byte huge *)table;
242 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
/external/qemu/distrib/libpng-1.2.46/
H A Dpngmem.c179 png_byte huge * hptr;
239 hptr = (png_byte huge *)table;
242 hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);

Completed in 6239 milliseconds

12