/libcore/luni/src/main/java/java/math/ |
BigInteger.java | 62 /** The sign of this. */ 63 transient int sign; field in class:BigInteger 85 /** sign field, used for serialization. */ 101 BigInteger(int sign, long value) { 103 bigInt.putULongInt(value, (sign < 0)); 111 * @param sign the sign of the number. 115 BigInteger(int sign, int numberLength, int[] digits) { 116 setJavaRepresentation(sign, numberLength, digits); 134 int sign = 1 local 357 int sign = bigInt.sign(); local 404 int sign = bigInt.sign(); local 486 int sign = signum(); local 540 int sign = signum(); local 1162 int sign; local [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
X509CRLImpl.java | 415 public void sign(PrivateKey key, String algorithm) method in class:X509CRLImpl 418 sign(key, algorithm, null); method 435 public void sign(PrivateKey key, String algorithm, String provider) method in class:X509CRLImpl 464 signature = sigEngine.sign(); [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
OverScroller.java | 743 mVelocity = -delta; // only sign is used 856 final float sign = Math.signum(mVelocity); local 943 final float sign = Math.signum(mVelocity); local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
sqltypes.h | 193 SQLCHAR sign; member in struct:tagSQL_NUMERIC_STRUCT
|
/system/security/keystore/ |
IKeystoreService.cpp | 761 virtual int32_t sign(const String16& name, const uint8_t* in, size_t inLength, uint8_t** out, function in class:android::BpKeystoreService 770 status_t status = remote()->transact(BnKeystoreService::SIGN, data, &reply); 785 ALOGE("out of memory allocating output array in sign"); [all...] |
key_store_service.cpp | 379 int32_t KeyStoreService::sign(const String16& name, const uint8_t* data, size_t length, function in class:android::KeyStoreService [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
libhppa.h | 214 int sign; local 216 sign = (x >> (len-1)) & 1; 220 return (temp << 1) | sign; 293 This function returns sign extended values in all cases. 340 this is just a sign extension from bit 21. */
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
vfprintf.c | 280 char sign; /* sign prefix (' ', '+', '-', or \0) */ local 291 * A: 'sign' holds this value if present; '\0' otherwise 515 sign = '\0'; 526 if (!sign) 527 sign = ' '; 553 sign = '+'; 664 sign = '\0'; 674 sign = '-'; 763 sign = '-' [all...] |
/cts/tests/tests/renderscript/libcoremathtestcpp/ |
CoreMathTestJni.cpp | 240 int sign = 0; local 241 result.SetFloat("lgamma", lgammaf_r(x, &sign)); 242 result.SetInt("gammaSign", sign);
|
/external/aac/libPCMutils/src/ |
pcmutils_lib.cpp | 1088 INT sign = (pMetaData->dmxGainIdx5 & 0x40) ? -1 : 1; local 1226 INT sign = (pMetaData->dmxGainIdx2 & 0x40) ? -1 : 1; local [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
FastMath.java | 637 * @return -1.0, -0.0, +0.0, +1.0 or NaN depending on sign of a 646 * @return -1.0, -0.0, +0.0, +1.0 or NaN depending on sign of a 3433 final long sign = bits & 0x8000000000000000L; local 3517 final int sign = bits & 0x80000000; local 3622 final long sign = bits & 0x8000000000000000L; local 3678 final int sign = bits & 0x80000000; local [all...] |
/external/bison/lib/ |
vasnprintf.c | 3072 int sign = 0; local 3226 int sign = 0; local 3621 int sign = 0; local 4089 int sign = 0; local [all...] |
/external/boringssl/src/crypto/ec/ |
p256-64.c | 1514 u8 sign, digit; local [all...] |
/external/crcalc/src/com/hp/creals/ |
CR.java | 96 // the wrong sign. This affected the sign of divisions. 625 * or exactly <TT>n</tt> digits long. The <TT>sign</tt> 657 int sign = scaled_int.signum(); local 664 sign = scaled_int.signum(); 672 return new StringFloatRep(sign, scaled_string, radix, exponent); [all...] |
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
vktShaderCommonFunctionTests.cpp | 124 return getUlpDiff(tcu::Float32::construct(tcu::Float32(b).sign(), 0, 0).asFloat(), b); 126 return getUlpDiff(a, tcu::Float32::construct(tcu::Float32(a).sign(), 0, 0).asFloat()); 225 return (float32Representation.sign() == +1) ? (largestRepresentableValue) : (-largestRepresentableValue); 230 const tcu::Float32 targetRepresentation(tcu::Float32::constructBits(float32Representation.sign(), 381 *significand = tcu::Float32::construct(fpValue.sign(), -1, fpValue.mantissa()).asFloat(); 386 *significand = fpValue.sign() < 0 ? -0.0f : 0.0f; 397 return mant.sign() < 0 ? -0.0f : 0.0f; 401 return tcu::Float32::construct(mant.sign(), exponent+mant.exponent(), mant.mantissa()).asFloat(); 779 : CommonFunctionCase (testCtx, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType) 783 m_spec.source = "out0 = sign(in0);" 1034 const deUint32 sign = rnd.getUint32() & 0x1u; local 1132 const deUint32 sign = rnd.getUint32() & 0x1u; local 2192 const int sign = rnd.getBool() ? -1 : +1; local [all...] |
/external/deqp/modules/gles3/functional/ |
es3fTextureUnitTests.cpp | 504 float sign = rnd.getBool() ? 1.0f : -1.0f; local 505 transData[i] = rnd.getFloat(0.7f, 1.4f) * sign; [all...] |
/external/freetype/src/autofit/ |
aflatin.c | 2090 FT_Int sign = 0; local [all...] |
aflatin2.c | 1634 FT_Int sign = 0; local [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/math/ |
BigDecimal.java | 76 /* 1998.07.11 allow 1E6 (no sign) <sigh>; new double/float conversion */ 176 * always expressed as the single digit <code>'0'</code> (that is, with no sign, decimal point, or exponent part). 352 // Note: some code below assumes IND = Sign [-1, 0, 1], at present. 428 * The <code>BigDecimal</code> will contain only decimal digits, prefixed with a leading minus sign (hyphen) if the 450 * scale</code> decimal digits if the scale is positive), prefixed with a leading minus sign (hyphen) if the <code> 527 /* Handle and step past sign */ 532 bad(inchars); // nothing after sign 538 bad(inchars); // nothing after sign 576 // 1998.07.11: sign no longer required 3572 int sign; local [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
VTimeZone.java | 1982 int sign = 0, hour = 0, min = 0, sec = 0; local [all...] |
/external/icu/icu4c/source/i18n/ |
timezone.cpp | 467 // Invert sign because UNIX semantics are backwards 1299 int32_t sign, hour, min, sec; local 1315 int32_t sign, hour, min, sec; local [all...] |
/external/icu/icu4c/source/test/intltest/ |
tztest.cpp | 1029 UChar sign = 0x002B; local 1074 UChar sign = 0x002B; local [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/ |
BigDecimal.java | 73 /* 1998.07.11 allow 1E6 (no sign) <sigh>; new double/float conversion */ 173 * always expressed as the single digit <code>'0'</code> (that is, with no sign, decimal point, or exponent part). 361 // Note: some code below assumes IND = Sign [-1, 0, 1], at present. 438 * The <code>BigDecimal</code> will contain only decimal digits, prefixed with a leading minus sign (hyphen) if the 461 * scale</code> decimal digits if the scale is positive), prefixed with a leading minus sign (hyphen) if the <code> 541 /* Handle and step past sign */ 546 bad(inchars); // nothing after sign 552 bad(inchars); // nothing after sign 590 // 1998.07.11: sign no longer required 3645 int sign; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/ |
BigDecimal.java | 75 /* 1998.07.11 allow 1E6 (no sign) <sigh>; new double/float conversion */ 175 * always expressed as the single digit <code>'0'</code> (that is, with no sign, decimal point, or exponent part). 363 // Note: some code below assumes IND = Sign [-1, 0, 1], at present. 440 * The <code>BigDecimal</code> will contain only decimal digits, prefixed with a leading minus sign (hyphen) if the 463 * scale</code> decimal digits if the scale is positive), prefixed with a leading minus sign (hyphen) if the <code> 543 /* Handle and step past sign */ 548 bad(inchars); // nothing after sign 554 bad(inchars); // nothing after sign 592 // 1998.07.11: sign no longer required 3647 int sign; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
VTimeZone.java | 2013 int sign = 0, hour = 0, min = 0, sec = 0; local [all...] |