/bionic/libm/upstream-freebsd/lib/msun/src/ |
k_exp.c | 40 * returned separately in 'expt'. 46 __frexp_exp(double x, int *expt) 59 *expt = (hx >> 20) - (0x3ff + 1023) + k; 65 * __ldexp_exp(x, expt) and __ldexp_cexp(x, expt) compute exp(x) * 2**expt. 70 * exponential functions. We assume expt is small (0 or -1), and the caller 75 __ldexp_exp(double x, int expt) 81 expt += ex_expt; 82 INSERT_WORDS(scale, (0x3ff + expt) << 20, 0) [all...] |
k_expf.c | 45 __frexp_expf(float x, int *expt) 52 *expt = (hx >> 23) - (0x7f + 127) + k; 58 __ldexp_expf(float x, int expt) 64 expt += ex_expt; 65 SET_FLOAT_WORD(scale, (0x7f + expt) << 23); 70 __ldexp_cexpf(float complex z, int expt) 78 expt += ex_expt; 80 half_expt = expt / 2; 82 half_expt = expt - half_expt;
|
e_acosl.c | 48 int16_t expsign, expt; local 51 expt = expsign & 0x7fff; 52 if(expt >= BIAS) { /* |x| >= 1 */ 53 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) { 59 if(expt<BIAS-1) { /* |x| < 0.5 */ 60 if(expt<ACOS_CONST) return pio2_hi+pio2_lo;/*x tiny: acosl=pi/2*/
|
e_asinl.c | 38 int16_t expsign, expt; local 41 expt = expsign & 0x7fff; 42 if(expt >= BIAS) { /* |x|>= 1 */ 43 if(expt==BIAS && ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)==0) 47 } else if (expt<BIAS-1) { /* |x|<0.5 */ 48 if(expt<ASIN_LINEAR) { /* if |x| is small, asinl(x)=x */
|
s_atanl.c | 38 int16_t expsign, expt; local 43 expt = expsign & 0x7fff; 44 if(expt >= ATAN_CONST) { /* if |x| is large, atan(x)~=pi/2 */ 45 if(expt == BIAS + LDBL_MAX_EXP && 53 expman = (expt << 8) | ((u.bits.manh >> (MANH_SIZE - 9)) & 0xff); 55 if (expt < ATAN_LINEAR) { /* if |x| is small, atanl(x)~=x */
|
/external/dropbear/libtomcrypt/src/pk/dsa/ |
dsa_decrypt_key.c | 33 unsigned char *skey, *expt; local 68 expt = XMALLOC(mp_unsigned_bin_size(key->p) + 1); 70 if (expt == NULL || skey == NULL) { 71 if (expt != NULL) { 72 XFREE(expt); 91 if ((err = dsa_shared_secret(key->x, g_pub, key, expt, &x)) != CRYPT_OK) { 96 if ((err = hash_memory(hash, expt, x, expt, &y)) != CRYPT_OK) { 115 out[x] = expt[x] ^ skey[x]; 122 zeromem(expt, mp_unsigned_bin_size(key->p) + 1) [all...] |
dsa_encrypt_key.c | 37 unsigned char *expt, *skey; local 65 expt = XMALLOC(mp_unsigned_bin_size(key->p) + 1); 67 if (expt == NULL || skey == NULL) { 68 if (expt != NULL) { 69 XFREE(expt); 80 if (prng_descriptor[wprng].read(expt, x, prng) != x) { 86 if ((err = mp_read_unsigned_bin(g_priv, expt, x)) != CRYPT_OK) { 97 if ((err = dsa_shared_secret(g_priv, key->y, key, expt, &x)) != CRYPT_OK) { 102 if ((err = hash_memory(hash, expt, x, skey, &y)) != CRYPT_OK) { 120 zeromem(expt, mp_unsigned_bin_size(key->p) + 1) [all...] |
/pdk/apps/CameraITS/tests/ |
test_param_sensitivity.py | 40 expt,_ = its.target.get_target_exposure_combos(cam)["midSensitivity"] 47 req = its.objects.manual_capture_request(s, expt)
|
test_linearity.py | 52 expt,_ = its.target.get_target_exposure_combos(cam)["midSensitivity"] 58 req = its.objects.manual_capture_request(0, expt)
|
/bionic/libc/stdio/ |
vfprintf.c | 189 int expt; /* integer value of exponent */ local 527 &expt, ch, &ndig); 530 if (expt <= -4 || expt > prec) 536 --expt; 537 expsize = exponent(expstr, expt, ch); 542 if (expt > 0) { 543 size = expt; 548 } else if (expt >= ndig) { /* fixed g fmt */ 549 size = expt; [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
ucol_bld.cpp | 845 UColToken *expt = NULL; local 867 if((expt = (UColToken *)uhash_get(src->tailored, &exp)) != NULL && expt->strength != UCOL_TOK_RESET) { /* expansion is tailored */ 868 uint32_t noOfCEsToCopy = expt->noOfCEs; 870 tok->expCEs[tok->noOfExpCEs + j] = expt->CEs[j]; [all...] |
/external/icu4c/i18n/ |
ucol_bld.cpp | 853 UColToken *expt = NULL; local 874 if((expt = (UColToken *)uhash_get(src->tailored, &exp)) != NULL && expt->strength != UCOL_TOK_RESET) { /* expansion is tailored */ 875 uint32_t noOfCEsToCopy = expt->noOfCEs; 877 tok->expCEs[tok->noOfExpCEs + j] = expt->CEs[j]; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 125 attributes = ('read', 'expt', 'write', 'closed', 'error_handled') 129 (select.POLLPRI, 'expt'), 141 self.expt = False 154 self.expt = True
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 125 attributes = ('read', 'expt', 'write', 'closed', 'error_handled') 129 (select.POLLPRI, 'expt'), 141 self.expt = False 154 self.expt = True
|
/external/valgrind/main/VEX/priv/ |
host_ppc_isel.c | 1180 HReg zeros, msk_exp, msk_mnt, expt, mnts, vIsNan; local [all...] |
/prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/ |
icu4j-2.6.1.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
com.ibm.icu_4.2.1.v20100412.jar | |
/external/chromium_org/chrome/third_party/chromevox/ |
chromeVoxChromeBackgroundScript.js | [all...] |
chromeVoxChromeOptionsScript.js | [all...] |
chromeVoxChromePageScript.js | [all...] |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |