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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/security/spec/
ECFieldFp.java 23 * The parameters specifying a <i>prime finite field</i> of an
31 * Creates a new prime finite field of an elliptic curve with the specified
51 * Returns the size of the finite field (in bits).
53 * @return the size of the finite field (in bits).
60 * Returns the prime value {@code p} for this finite field.
62 * @return the prime value {@code p} for this finite field.
69 * Returns whether the specified object is equal to this finite field.
72 * the object to compare to this finite field.
73 * @return {@code true} if the specified object is equal to this finite field,
88 * Returns the hashcode value for this finite field
    [all...]
ECFieldF2m.java 24 * The parameters specifying a <i>characteristic 2 finite field</i> of an
170 * Returns whether the specified object equals to this finite field.
173 * the object to compare to this finite field.
174 * @return {@code true} if the specified object is equal to this finite field,
204 * Returns the size of this finite field (in bits).
206 * @return the size of this finite field (in bits).
213 * Returns the exponent {@code m} for this finite field, with {@code 2^m} as
216 * @return the exponent {@code m} for this finite field
257 * Returns the hashcode value for this finite field.
259 * @return the hashcode value for this finite field
    [all...]
EllipticCurve.java 28 // Underlying finite field
49 * the finite field of this elliptic curve.
106 * the finite field of this elliptic curve.
137 * Returns the finite field of this elliptic curve.
139 * @return the finite field of this elliptic curve.
  /external/llvm/test/CodeGen/X86/
sse-minmax.ll 3 ; RUN: llc < %s -march=x86-64 -mtriple=x86_64-apple-darwin -mcpu=nehalem -asm-verbose=false -enable-no-nans-fp-math | FileCheck -check-prefix=FINITE %s
21 ; FINITE-LABEL: ogt:
22 ; FINITE-NEXT: maxsd %xmm1, %xmm0
23 ; FINITE-NEXT: ret
36 ; FINITE-LABEL: olt:
37 ; FINITE-NEXT: minsd %xmm1, %xmm0
38 ; FINITE-NEXT: ret
52 ; FINITE-LABEL: ogt_inverse:
53 ; FINITE-NEXT: minsd %xmm0, %xmm1
54 ; FINITE-NEXT: movap{{[sd]}} %xmm1, %xmm
    [all...]
  /external/clang/test/CodeGenOpenCL/
relaxed-fpmath.cl 3 // RUN: %clang_cc1 %s -emit-llvm -cl-finite-math-only -o - | FileCheck %s -check-prefix=FINITE
13 // FINITE: fdiv nnan ninf float
27 // FINITE: "no-infs-fp-math"="true"
28 // FINITE: "no-nans-fp-math"="true"
29 // FINITE: "unsafe-fp-math"="false"
  /external/clang/test/CodeGen/
finite-math.c 1 // RUN: %clang_cc1 -ffinite-math-only -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=FINITE
10 // FINITE: fadd nnan ninf
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_finite.c 17 * finite(x) returns 1 is x is finite, else 0;
24 int finite(double x) function
  /frameworks/base/core/java/android/hardware/camera2/params/
RggbChannelVector.java 49 * <p>All arguments must be finite; NaN and infinity is not allowed.</p>
56 * @throws IllegalArgumentException if any of the arguments were not finite
69 * @return a floating point value (guaranteed to be finite)
78 * @return a floating point value (guaranteed to be finite)
87 * @return a floating point value (guaranteed to be finite)
96 * @return a floating point value (guaranteed to be finite)
109 * @return a floating point value (guaranteed to be finite)
  /external/llvm/test/Transforms/LoopDeletion/
multiple-exit-conditions.ll 3 ; ScalarEvolution can prove the loop iteration is finite, even though
  /external/skia/src/core/
SkCubicClipper.h 20 also in X, to ensure that all segments fit in a finite coordinate system.
  /external/openfst/src/extensions/far/
farextract.cc 20 // Extracts component FSTs from an finite-state archive.
39 string usage = "Extracts FSTs from a finite-state archive.\n\n Usage:";
farcreate.cc 20 // Creates a finite-state archive from input FSTs.
40 string usage = "Creates a finite-state archive from input FSTs.\n\n Usage:";
  /external/openfst/src/include/fst/
fstlib.h 18 // \page FstLib FST - Weighted Finite State Transducers
20 // searching "weighted finite-state transducers" (FSTs). Weighted
21 // finite-state transducers are automata where each transition has an
23 // finite-state acceptor is represented as a transducer with each
24 // transition's input and output the same. Finite-state acceptors
26 // "rational sets"); finite-state transducers are used to represent
  /external/skia/tests/
ScalarTest.cpp 92 // return true if the float is finite
103 // return true if both floats are finite
173 bool finite = gProc1[k](rec.fValue); local
174 REPORTER_ASSERT(reporter, rec.fIsFinite == finite);
186 bool finite = gProc2[m](rec0.fValue, rec1.fValue, proc1); local
188 REPORTER_ASSERT(reporter, finite2 == finite);
  /frameworks/base/core/java/android/util/
Rational.java 170 * {@code false} if this is a finite number value (or {@code NaN})
177 * Indicates whether this rational represents a finite value.
179 * <p>A finite value occurs when the denominator is not {@code 0}; in other words
183 * {@code false} if this is a finite number value (or {@code NaN})
192 * <p>A zero value is a {@link #isFinite finite} rational with a numerator of {@code 0}.</p>
194 * @return {@code true} if this rational is finite zero value;
364 * <p>{@link #isInfinite Finite} rationals are converted to an {@code int} value
365 * by dividing the numerator by the denominator; conversion for non-finite values happens
390 } else { // finite
398 * <p>{@link #isInfinite Finite} rationals are converted to an {@code long} valu
    [all...]
  /external/clang/test/Preprocessor/
predefined-macros.c 91 // RUN: | FileCheck %s --check-prefix=CHECK-FINITE-MATH-ONLY
92 // CHECK-FINITE-MATH-ONLY: #define __FINITE_MATH_ONLY__ 1
94 // RUN: %clang %s -E -dM -fno-finite-math-only -o - \
95 // RUN: | FileCheck %s --check-prefix=CHECK-NO-FINITE-MATH-ONLY
96 // CHECK-NO-FINITE-MATH-ONLY: #define __FINITE_MATH_ONLY__ 0
99 // RUN: | FileCheck %s --check-prefix=CHECK-FINITE-MATH-FLAG-UNDEFINED
100 // CHECK-FINITE-MATH-FLAG-UNDEFINED: #define __FINITE_MATH_ONLY__ 0
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_exp.c 48 * finite(x)
67 * for finite argument, only exp(0)=1 is exact.
120 if(finite(x)) return(scalb(1.0,-5000));
129 return( finite(x) ? scalb(1.0,5000) : x);
165 if(finite(x)) return(scalb(1.0,-5000));
174 return( finite(x) ? scalb(1.0,5000) : x);
  /external/bison/lib/
float.in.h 46 /* Maximum e such that FLT_RADIX^(e-1) is a representable finite number. */
52 /* Maximum representable finite number. */
58 /* Maximum e such that 10^e is in the range of representable finite numbers. */
79 /* Maximum e such that FLT_RADIX^(e-1) is a representable finite number. */
85 /* Maximum representable finite number. */
106 /* Maximum e such that 10^e is in the range of representable finite numbers. */
  /external/v8/src/base/
win32-math.cc 12 #include <float.h> // Required for DBL_MAX and on Win32 for finite()
34 // Test for finite value - usually defined in math.h
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/lib/
libm.so 

Completed in 1315 milliseconds

1 2 3 4 5 6 7 8 91011>>