HomeSort by relevance Sort by last modified time
    Searched refs:getZero (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/apache-commons-math/src/main/java/org/apache/commons/math/
Field.java 39 T getZero();
  /external/clang/test/Analysis/inlining/
path-notes.c 56 int *getZero() {
65 *getZero() = 1; // expected-warning{{Dereference of null pointer}}
66 // expected-note@-1 {{Calling 'getZero'}}
67 // expected-note@-2 {{Returning from 'getZero'}}
72 return *getZero(); // expected-warning{{Dereference of null pointer}}
73 // expected-note@-1 {{Calling 'getZero'}}
74 // expected-note@-2 {{Returning from 'getZero'}}
79 int *a = getZero();
80 // expected-note@-1 {{Calling 'getZero'}}
81 // expected-note@-2 {{Returning from 'getZero'}}
    [all...]
path-notes.cpp 159 int getZero() {
173 int problem = 1 / getZero(); // expected-warning {{Division by zero}}
174 // expected-note@-1 {{Calling 'getZero'}}
175 // expected-note@-2 {{Returning from 'getZero'}}
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
ComplexField.java 56 public Complex getZero() {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
BigFractionField.java 56 public BigFraction getZero() {
FractionField.java 56 public Fraction getZero() {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
BigRealField.java 56 public BigReal getZero() {
OpenIntToFieldHashMap.java 102 this(field, DEFAULT_EXPECTED_SIZE, field.getZero());
120 this(field,expectedSize, field.getZero());
617 return (T[]) Array.newInstance(field.getZero().getClass(), length);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpDec.java 133 final Dfp result = newInstance(getZero());
300 final Dfp result = newInstance(getZero());
318 if (lessThan(getZero())) {
326 if (this.equals(getZero())) {
330 if (inc.equals(getZero())) {
331 result = copysign(newInstance(getZero()), this);
345 if (this.equals(getZero())) {
349 if (inc.equals(getZero())) {
350 result = copysign(newInstance(getZero()), this);
361 if (result.equals(getZero()) && this.equals(getZero()) == false)
    [all...]
Dfp.java 596 final Dfp result = newInstance(getZero());
645 public Dfp getZero() {
646 return field.getZero();
755 final Dfp result = newInstance(getZero());
764 dotrap(DfpField.FLAG_INVALID, LESS_THAN_TRAP, x, newInstance(getZero()));
780 final Dfp result = newInstance(getZero());
789 dotrap(DfpField.FLAG_INVALID, GREATER_THAN_TRAP, x, newInstance(getZero()));
977 Dfp result = newInstance(getZero());
    [all...]
DfpMath.java 113 result[1] = a[0].getZero();
160 result[1] = base[0].getZero();
324 if (a.equals(a.getZero()) || a.lessThan(a.getZero()) || a.isNaN()) {
363 spx[1] = a.getZero();
370 spx[1] = a.getZero();
510 final Dfp result = x.newInstance(x.getZero());
515 final Dfp zero = x.getZero();
736 final Dfp zero = a.getField().getZero();
787 final Dfp zero = a.getField().getZero();
    [all...]
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417ECModulusGF.h 17 CBC_PDF417ECModulusPoly* getZero();