HomeSort by relevance Sort by last modified time
    Searched full:inexact (Results 1 - 25 of 203) sorted by null

1 2 3 4 5 6 7 8 9

  /external/llvm/test/CodeGen/X86/
fdiv.ll 11 define double @inexact(double %x) {
12 ; Inexact division by a constant converted to multiplication.
13 ; CHECK: @inexact
  /bionic/libm/src/
s_truncf.c 22 * Inexact flag raised if x not equal to truncf(x).
38 if(j0<0) { /* raise inexact if x != 0 */
44 if(huge+x>0.0F) /* raise inexact flag */
s_ceil.c 23 * Inexact flag raised if x not equal to ceil(x).
39 if(j0<0) { /* raise inexact if x != 0 */
47 if(huge+x>0.0) { /* raise inexact flag */
58 if(huge+x>0.0) { /* raise inexact flag */
s_floor.c 23 * Inexact flag raised if x not equal to floor(x).
39 if(j0<0) { /* raise inexact if x != 0 */
48 if(huge+x>0.0) { /* raise inexact flag */
59 if(huge+x>0.0) { /* raise inexact flag */
s_trunc.c 22 * Inexact flag raised if x not equal to trunc(x).
38 if(j0<0) { /* raise inexact if x != 0 */
46 if(huge+x>0.0) { /* raise inexact flag */
56 if(huge+x>0.0) /* raise inexact flag */
s_truncl.c 24 * Inexact flag raised if x not equal to truncl(x).
48 if (e < 0) { /* raise inexact if x != 0 */
55 if (huge + x > 0.0) { /* raise inexact flag */
64 if (huge + x > 0.0) /* raise inexact flag */
s_floorf.c 26 * Inexact flag raised if x not equal to floorf(x).
42 if(j0<0) { /* raise inexact if x != 0 */
51 if(huge+x>(float)0.0) { /* raise inexact flag */
s_ceill.c 24 * Inexact flag raised if x not equal to ceill(x).
62 if (e < 0) { /* raise inexact if x != 0 */
79 if (huge + x > 0.0) { /* raise inexact flag */
98 if (huge + x > 0.0) /* raise inexact flag */
s_floorl.c 24 * Inexact flag raised if x not equal to floorl(x).
62 if (e < 0) { /* raise inexact if x != 0 */
79 if (huge + x > 0.0) { /* raise inexact flag */
98 if (huge + x > 0.0) /* raise inexact flag */
s_ceilf.c 34 if(j0<0) { /* raise inexact if x != 0 */
42 if(huge+x>(float)0.0) { /* raise inexact flag */
s_tanhf.c 42 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
53 z = one - tiny; /* raise inexact flag */
e_asinf.c 49 /* asin(1)=+-pi/2 with inexact */
55 if(huge+x>one) return x;/* return x with inexact if x!=0*/
s_nearbyint.c 35 * an inexact exception. We can get away with using fesetenv()
  /external/fdlibm/
s_ceil.c 20 * Inexact flag raised if x not equal to ieee_ceil(x).
44 if(j0<0) { /* raise inexact if x != 0 */
52 if(huge+x>0.0) { /* raise inexact flag */
63 if(huge+x>0.0) { /* raise inexact flag */
s_floor.c 20 * Inexact flag raised if x not equal to ieee_floor(x).
44 if(j0<0) { /* raise inexact if x != 0 */
53 if(huge+x>0.0) { /* raise inexact flag */
64 if(huge+x>0.0) { /* raise inexact flag */
k_sin.c 22 * 2. if x < 2^-27 (hx<0x3e400000 0), return x with inexact if x!=0.
68 {if((int)x==0) return x;} /* generate inexact */
  /external/compiler-rt/lib/ppc/
floatditf.c 25 /* This implementation sets the inexact flag spuriously.
floatunditf.c 31 /* This implementation sets the inexact flag spuriously. */
  /frameworks/compile/libbcc/runtime/lib/ppc/
floatditf.c 26 /* This implementation sets the inexact flag spuriously.
floatunditf.c 32 /* This implementation sets the inexact flag spuriously. */
  /bionic/libm/man/
fenv.3 97 An inexact exception is raised whenever there is a loss of precision
215 It also defers inexact exceptions while it computes intermediate
216 values, and then it allows an inexact exception to be raised only if
217 the final answer is inexact.
287 .Fl mieee-with-inexact mfp-rounding-mode=d
rint.3 64 These functions raise an inexact exception when the original argument
72 an inexact exception.
  /external/skia/src/core/
SkEdgeClipper.cpp 90 // if chopMonoQuadAtY failed, then we may have hit inexact numerics
109 // if chopMonoQuadAtY failed, then we may have hit inexact numerics
164 // if chopMonoQuadAtY failed, then we may have hit inexact numerics
180 // if chopMonoQuadAtY failed, then we may have hit inexact numerics
288 // if chopMonoCubicAtY failed, then we may have hit inexact numerics
309 // if chopMonoCubicAtY failed, then we may have hit inexact numerics
367 // if chopMonocubicAtY failed, then we may have hit inexact numerics
386 // if chopMonoCubicAtX failed, then we may have hit inexact numerics
SkQuadClipper.cpp 95 // if chopMonoQuadAtY failed, then we may have hit inexact numerics
112 // if chopMonoQuadAtY failed, then we may have hit inexact numerics
  /external/elfutils/tests/
run-unstrip-test.sh 42 testrun ../src/elfcmp --hash-inexact $original testfile.unstrip

Completed in 630 milliseconds

1 2 3 4 5 6 7 8 9