Home
last modified time | relevance | path

Searched refs:newrhs (Results 1 – 5 of 5) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/math/
DBigDecimal.java1238 android.icu.math.BigDecimal newrhs; in compareTo() local
1276 newrhs = clone(rhs); // safe copy in compareTo()
1277 newrhs.ind = (byte) -newrhs.ind; // prepare to subtract in compareTo()
1278 return this.add(newrhs, set).ind; // add, and return sign of result in compareTo()
1851 android.icu.math.BigDecimal newrhs; in subtract() local
1857 newrhs = clone(rhs); // safe copy in subtract()
1858 newrhs.ind = (byte) -newrhs.ind; // prepare to subtract in subtract()
1859 return this.add(newrhs, set); // arithmetic in subtract()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
DBigDecimal.java1264 com.ibm.icu.math.BigDecimal newrhs; in compareTo() local
1302 newrhs = clone(rhs); // safe copy in compareTo()
1303 newrhs.ind = (byte) -newrhs.ind; // prepare to subtract in compareTo()
1304 return this.add(newrhs, set).ind; // add, and return sign of result in compareTo()
1899 com.ibm.icu.math.BigDecimal newrhs; in subtract() local
1905 newrhs = clone(rhs); // safe copy in subtract()
1906 newrhs.ind = (byte) -newrhs.ind; // prepare to subtract in subtract()
1907 return this.add(newrhs, set); // arithmetic in subtract()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
DBigDecimal.java1261 com.ibm.icu.math.BigDecimal newrhs; in compareTo() local
1299 newrhs = clone(rhs); // safe copy in compareTo()
1300 newrhs.ind = (byte) -newrhs.ind; // prepare to subtract in compareTo()
1301 return this.add(newrhs, set).ind; // add, and return sign of result in compareTo()
1896 com.ibm.icu.math.BigDecimal newrhs; in subtract() local
1902 newrhs = clone(rhs); // safe copy in subtract()
1903 newrhs.ind = (byte) -newrhs.ind; // prepare to subtract in subtract()
1904 return this.add(newrhs, set); // arithmetic in subtract()
/external/python/cpython2/Parser/
Dspark.py277 newrhs = list(rhs)
278 newrhs[i] = self._NULLABLE+sym
279 newrule = (lhs, tuple(newrhs))
/external/icu/icu4c/source/i18n/
DdecNumber.cpp5399 decNumber *newrhs=bufr; /* assume will fit on stack */ in decExpOp() local
5406 newrhs=allocrhs; /* use the allocated space */ in decExpOp()
5408 uprv_decNumberCopy(newrhs, rhs); /* copy to safe space */ in decExpOp()
5409 newrhs->exponent=use; /* normalize; now <1 */ in decExpOp()
5410 x=newrhs; /* ready for use */ in decExpOp()