/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
sigcontext.h | 22 unsigned short exponent; member in struct:_fpreg 27 unsigned short exponent; member in struct:_fpxreg
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
sigcontext.h | 22 unsigned short exponent; member in struct:_fpreg 27 unsigned short exponent; member in struct:_fpxreg
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
sigcontext.h | 22 unsigned short exponent; member in struct:_fpreg 27 unsigned short exponent; member in struct:_fpxreg
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
sigcontext.h | 22 unsigned short exponent; member in struct:_fpreg 27 unsigned short exponent; member in struct:_fpxreg
|
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
fast-dtoa.cc | 40 // The minimal and maximal target exponent define the range of w's binary 41 // exponent, where 'w' is the result of multiplying the input by a cached power 245 int* exponent) { 254 *exponent = 9; 262 *exponent = 8; 270 *exponent = 7; 279 *exponent = 6; 287 *exponent = 5; 295 *exponent = 4; 304 *exponent = 3 [all...] |
bignum.h | 41 // exponent. 52 void AssignPowerUInt16(uint16_t base, int exponent); 64 void MultiplyByPowerOfTen(int exponent); 125 // BigitLength includes the "hidden" digits encoded in the exponent.
|
/external/chromium_org/v8/src/ |
fast-dtoa.cc | 41 // The minimal and maximal target exponent define the range of w's binary 42 // exponent, where 'w' is the result of multiplying the input by a cached power 246 int* exponent) { 253 *exponent = 9; 261 *exponent = 8; 269 *exponent = 7; 278 *exponent = 6; 286 *exponent = 5; 294 *exponent = 4; 303 *exponent = 3 [all...] |
bignum.h | 38 // exponent. 49 void AssignPowerUInt16(uint16_t base, int exponent); 61 void MultiplyByPowerOfTen(int exponent); 123 // BigitLength includes the "hidden" digits encoded in the exponent.
|
/external/v8/src/ |
fast-dtoa.cc | 41 // The minimal and maximal target exponent define the range of w's binary 42 // exponent, where 'w' is the result of multiplying the input by a cached power 246 int* exponent) { 253 *exponent = 9; 261 *exponent = 8; 269 *exponent = 7; 278 *exponent = 6; 286 *exponent = 5; 294 *exponent = 4; 303 *exponent = 3 [all...] |
bignum.h | 38 // exponent. 49 void AssignPowerUInt16(uint16_t base, int exponent); 61 void MultiplyByPowerOfTen(int exponent); 123 // BigitLength includes the "hidden" digits encoded in the exponent.
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothGattCharacteristic.java | 580 * @param exponent exponent value for this characteristic 585 public boolean setValue(int mantissa, int exponent, int formatType, int offset) { 593 exponent = intToSignedBits(exponent, 4); 596 mValue[offset] += (byte)((exponent & 0x0F) << 4); 601 exponent = intToSignedBits(exponent, 8); 605 mValue[offset] += (byte)(exponent & 0xFF); 662 int exponent = unsignedToSigned(unsignedByteToInt(b1) >> 4, 4) local [all...] |
/hardware/samsung_slsi/exynos5/libkeymaster/ |
tlcTeeKeymaster_if.c | 150 * @param exponent [in] Exponent number 158 uint32_t exponent, 189 pTci->rsagenkey.exponent = exponent; 839 * |--key metadata--|--public modulus--|--public exponent--|--private exponent--| 842 * |--key metadata--|--public modulus--|--public exponent--|--P--|--Q--|--DP--|--DQ--|--Qinv--| 950 * Retrieves public key daya (modulus and exponent) from wrapped key data 956 * @param exponent [out] Pointer to public key exponent dat [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
digitlst.cpp | 291 fDecNumber->exponent = d - adjustedDigits; 299 return fDecNumber->exponent; // Exponent should be zero for these cases. 301 return fDecNumber->exponent + fDecNumber->digits; 319 if (decNumberIsZero(fDecNumber) && fDecNumber->exponent==0) { 320 // The extra test for exponent==0 is needed because parsing sometimes appends 373 fDecNumber->exponent--; // To match the old digit list implementation. 385 // least signficant digit, we need to adjust the exponent. 386 fDecNumber->exponent--; 470 if (fDecNumber->digits + fDecNumber->exponent > 10) [all...] |
/external/icu4c/i18n/ |
digitlst.cpp | 302 fDecNumber->exponent = d - adjustedDigits; 310 return fDecNumber->exponent; // Exponent should be zero for these cases. 312 return fDecNumber->exponent + fDecNumber->digits; 330 if (decNumberIsZero(fDecNumber) && fDecNumber->exponent==0) { 331 // The extra test for exponent==0 is needed because parsing sometimes appends 384 fDecNumber->exponent--; // To match the old digit list implementation. 396 // least signficant digit, we need to adjust the exponent. 397 fDecNumber->exponent--; 499 if (fDecNumber->digits + fDecNumber->exponent > 10) [all...] |
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
user.h | 23 unsigned int exponent:14; member in struct:user_fp::fp_reg
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/ |
RSAPrivateCrtKeySpecTest.java | 117 * Assertion: returns prime exponent P 134 * Assertion: returns prime exponent Q 185 * Assertion: returns public exponent 223 * Assertion: returns private exponent
|
/external/bison/lib/ |
float+.h | 40 /* Bit mask that can be used to mask the exponent, as an unsigned number. */ 45 /* Number of bits used for the exponent of a floating-point number, including 46 the exponent's sign. */ 128 exponent, and the sign. */
|
/external/chromium_org/sandbox/linux/services/ |
android_i386_ucontext.h | 19 unsigned short exponent; member in struct:_libc_fpreg
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_rgb9e5.h | 91 are going to do a max of this value with the minimum rgb9e5 exponent 152 int exponent; local 156 exponent = v.field.biasedexponent - RGB9E5_EXP_BIAS - RGB9E5_MANTISSA_BITS; 157 scale = (float) pow(2, exponent);
|
/external/chromium_org/third_party/skia/include/effects/ |
SkEmbossMaskFilter.h | 23 uint8_t fSpecular; // exponent, 4.4 right now
|
/external/chromium_org/third_party/skia/src/utils/ |
SkFloatUtils.h | 66 /** # of exponent bits in a number. */ 76 /** The mask for the exponent bits. */ 92 /** Returns the exponent bits of this number. */ 101 // * the exponent bits are all ones
|
/external/compiler-rt/lib/ |
muldf3.c | 63 // include the necessary exponent adjustment. 78 // and bumping the exponent accordingly. 85 // Normalize the significand, adjust exponent if needed. 108 // Result is normal before rounding; insert the exponent.
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_rgb9e5.h | 91 are going to do a max of this value with the minimum rgb9e5 exponent 152 int exponent; local 156 exponent = v.field.biasedexponent - RGB9E5_EXP_BIAS - RGB9E5_MANTISSA_BITS; 157 scale = (float) pow(2, exponent);
|
/external/skia/include/effects/ |
SkEmbossMaskFilter.h | 23 uint8_t fSpecular; // exponent, 4.4 right now
|
/external/skia/src/utils/ |
SkFloatUtils.h | 66 /** # of exponent bits in a number. */ 76 /** The mask for the exponent bits. */ 92 /** Returns the exponent bits of this number. */ 101 // * the exponent bits are all ones
|