HomeSort by relevance Sort by last modified time
    Searched refs:INFINITY (Results 1 - 22 of 22) sorted by null

  /bionic/libc/regex/
utils.h 40 #define INFINITY (DUPMAX + 1)
regcomp.c 413 count2 = INFINITY;
584 count2 = INFINITY;
942 int to) /* to this number of times (maybe INFINITY) */
948 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N)
    [all...]
  /bionic/libm/src/
s_fma.c 104 r = nextafter(r, -INFINITY);
113 r = nextafter(r, INFINITY);
134 return (nextafter(z, -INFINITY));
137 return (nextafter(z, INFINITY));
s_fmal.c 99 r = nextafterl(r, -INFINITY);
108 r = nextafterl(r, INFINITY);
129 return (nextafterl(z, -INFINITY));
132 return (nextafterl(z, INFINITY));
  /external/icu4c/i18n/
choicfmt.cpp 57 #ifdef INFINITY
58 #undef INFINITY
60 #define INFINITY ((UChar)0x221E)
62 static const UChar gPositiveInfinity[] = {INFINITY, 0};
63 static const UChar gNegativeInfinity[] = {MINUS, INFINITY, 0};
471 result += INFINITY;
474 result += INFINITY;
  /external/webkit/JavaScriptCore/runtime/
JSCell.cpp 33 #if defined NAN && defined INFINITY
36 extern const double Inf = INFINITY;
38 #else // !(defined NAN && defined INFINITY)
77 #endif // !(defined NAN && defined INFINITY)
  /packages/apps/Calculator/src/com/android/calculator2/
Logic.java 42 // the two strings below are the result of Double.toString() for Infinity & NaN
44 private static final String INFINITY = "Infinity";
187 return result.replace('-', MINUS).replace(INFINITY, INFINITY_UNICODE);
  /packages/apps/Gallery3D/src/com/cooliris/media/
Shared.java 25 public static final int INFINITY = Integer.MAX_VALUE;
  /external/webkit/WebKitTools/simplejson/
encoder.py 26 # assume this produces an infinity on all machines (probably not guaranteed)
27 INFINITY = float('1e66666')
35 elif o == INFINITY:
36 text = 'Infinity'
37 elif o == -INFINITY:
38 text = '-Infinity'
131 If allow_nan is True, then NaN, Infinity, and -Infinity will be
  /bionic/libm/include/
math.h 68 #define INFINITY __builtin_inf()
73 #define INFINITY HUGE_VALF
  /ndk/build/platforms/android-3/arch-arm/usr/include/
math.h 68 #define INFINITY __builtin_inf()
73 #define INFINITY HUGE_VALF
  /ndk/build/platforms/android-4/arch-arm/usr/include/
math.h 68 #define INFINITY __builtin_inf()
73 #define INFINITY HUGE_VALF
  /ndk/build/platforms/android-5/arch-arm/usr/include/
math.h 68 #define INFINITY __builtin_inf()
73 #define INFINITY HUGE_VALF
  /ndk/build/platforms/android-5/arch-x86/usr/include/
math.h 68 #define INFINITY __builtin_inf()
73 #define INFINITY HUGE_VALF
  /ndk/build/platforms/android-8/arch-arm/usr/include/
math.h 68 #define INFINITY __builtin_inf()
73 #define INFINITY HUGE_VALF
  /ndk/build/platforms/android-8/arch-x86/usr/include/
math.h 68 #define INFINITY __builtin_inf()
73 #define INFINITY HUGE_VALF
  /frameworks/base/opengl/libagl/
fp.h 88 u.r = INFINITY;
  /external/v8/src/
platform.h 48 // On Solaris, to get isinf, INFINITY, fpclassify and other macros one needs
53 #define V8_INFINITY INFINITY
100 // Unfortunately, the INFINITY macro cannot be used with the '-pedantic'
109 #define V8_INFINITY std::numeric_limits<double>::infinity()
  /external/webkit/WebKitTools/android/flex-2.5.4a/
nfa.c 543 * if "ub" is INFINITY then "new" matches "lb" or more occurrences of "mach"
553 if ( ub == INFINITY )
flexdef.h 195 #define INFINITY -1 /* for x{5,} constructions */
    [all...]
parse.y 592 $$ = mkrep( $1, $3, INFINITY );
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/
parse.c 1168 yyval = mkrep( yyvsp[-4], yyvsp[-2], INFINITY );
    [all...]

Completed in 493 milliseconds