HomeSort by relevance Sort by last modified time
    Searched refs:exp (Results 226 - 250 of 2516) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
error.exp 21 load_lib gas-dg.exp
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sparc/
mismatch.exp 28 load_lib gas-dg.exp
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/visium/
error.exp 25 load_lib gas-dg.exp
  /art/compiler/optimizing/
code_generator_utils.cc 39 * nc = exp + exp % d - 1, where d >= 2 and exp = 2^31 for int or 2^63 for long
40 * nc = -exp + (exp + 1) % d, where d >= 2 and exp = 2^31 for int or 2^63 for long
55 const uint64_t exp = is_long ? (UINT64_C(1) << 63) : (UINT32_C(1) << 31); local
61 uint64_t tmp = exp + sign_bit;
63 uint64_t quotient1 = exp / abs_nc;
64 uint64_t remainder1 = exp % abs_nc
    [all...]
  /external/libnetfilter_conntrack/examples/
nfexp-mnl-event.c 11 struct nf_expect *exp; local
27 exp = nfexp_new();
28 if (exp == NULL)
31 nfexp_nlmsg_parse(nlh, exp);
33 nfexp_snprintf(buf, sizeof(buf), exp,
37 nfexp_destroy(exp);
  /external/libgsm/src/
rpe.c 7 /* $Header: /tmp_amd/presto/export/kbs/jutta/src/gsm/RCS/rpe.c,v 1.3 1994/05/10 20:18:46 jutta Exp $ */
228 word exp, mant; local
233 exp = 0;
234 if (xmaxc > 15) exp = SASR(xmaxc, 3) - 1;
235 mant = xmaxc - (exp << 3);
238 exp = -4;
244 exp--;
249 assert( exp >= -4 && exp <= 6 );
252 *exp_out = exp;
268 word exp, mant; local
460 word mant, exp; local
481 word exp, mant; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_fmodl.c 78 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */
79 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */
80 (uy.bits.exp == BIAS + LDBL_MAX_EXP &&
83 if(ux.bits.exp<=uy.bits.exp) {
84 if((ux.bits.exp<uy.bits.exp) ||
96 if(ux.bits.exp == 0) { /* subnormal x */
98 ix = ux.bits.exp - (BIAS + 512);
100 ix = ux.bits.exp - BIAS
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
ldgram.y 91 %type <etree> exp opt_exp_with_type mustbe_exp opt_at phdr_type phdr_val
179 NAME '=' exp
206 CHIP exp
207 | CHIP exp ',' exp
216 | PUBLIC NAME '=' exp
218 | PUBLIC NAME ',' exp
220 | PUBLIC NAME exp
224 | SECT NAME ',' exp
226 | SECT NAME exp
918 exp : label
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
eval.pass.cpp 64 double x_mean = std::exp(d.m() + sqr(d.s())/2);
65 double x_var = (std::exp(sqr(d.s())) - 1) * std::exp(2*d.m() + sqr(d.s()));
66 double x_skew = (std::exp(sqr(d.s())) + 2) *
67 std::sqrt((std::exp(sqr(d.s())) - 1));
68 double x_kurtosis = std::exp(4*sqr(d.s())) + 2*std::exp(3*sqr(d.s())) +
69 3*std::exp(2*sqr(d.s())) - 6;
108 double x_mean = std::exp(d.m() + sqr(d.s())/2);
109 double x_var = (std::exp(sqr(d.s())) - 1) * std::exp(2*d.m() + sqr(d.s()))
    [all...]
eval_param.pass.cpp 66 double x_mean = std::exp(p.m() + sqr(p.s())/2);
67 double x_var = (std::exp(sqr(p.s())) - 1) * std::exp(2*p.m() + sqr(p.s()));
68 double x_skew = (std::exp(sqr(p.s())) + 2) *
69 std::sqrt((std::exp(sqr(p.s())) - 1));
70 double x_kurtosis = std::exp(4*sqr(p.s())) + 2*std::exp(3*sqr(p.s())) +
71 3*std::exp(2*sqr(p.s())) - 6;
112 double x_mean = std::exp(p.m() + sqr(p.s())/2);
113 double x_var = (std::exp(sqr(p.s())) - 1) * std::exp(2*p.m() + sqr(p.s()))
    [all...]
  /prebuilts/go/darwin-x86/src/math/
log10.go 20 frac, exp := Frexp(x)
22 // Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
24 return float64(exp - 1)
26 return Log(frac)*(1/Ln2) + float64(exp)
  /prebuilts/go/linux-x86/src/math/
log10.go 20 frac, exp := Frexp(x)
22 // Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
24 return float64(exp - 1)
26 return Log(frac)*(1/Ln2) + float64(exp)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
eval.pass.cpp 64 double x_mean = std::exp(d.m() + sqr(d.s())/2);
65 double x_var = (std::exp(sqr(d.s())) - 1) * std::exp(2*d.m() + sqr(d.s()));
66 double x_skew = (std::exp(sqr(d.s())) + 2) *
67 std::sqrt((std::exp(sqr(d.s())) - 1));
68 double x_kurtosis = std::exp(4*sqr(d.s())) + 2*std::exp(3*sqr(d.s())) +
69 3*std::exp(2*sqr(d.s())) - 6;
108 double x_mean = std::exp(d.m() + sqr(d.s())/2);
109 double x_var = (std::exp(sqr(d.s())) - 1) * std::exp(2*d.m() + sqr(d.s()))
    [all...]
eval_param.pass.cpp 66 double x_mean = std::exp(p.m() + sqr(p.s())/2);
67 double x_var = (std::exp(sqr(p.s())) - 1) * std::exp(2*p.m() + sqr(p.s()));
68 double x_skew = (std::exp(sqr(p.s())) + 2) *
69 std::sqrt((std::exp(sqr(p.s())) - 1));
70 double x_kurtosis = std::exp(4*sqr(p.s())) + 2*std::exp(3*sqr(p.s())) +
71 3*std::exp(2*sqr(p.s())) - 6;
112 double x_mean = std::exp(p.m() + sqr(p.s())/2);
113 double x_var = (std::exp(sqr(p.s())) - 1) * std::exp(2*p.m() + sqr(p.s()))
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtorQ.c 54 ULtoQ(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
56 ULtoQ(ULong *L, ULong *bits, Long exp, int k)
70 L[_0] = (bits[3] & ~0x10000) | ((exp + 0x3fff + 112) << 16);
108 Long exp; local
117 k = strtodg(s, sp, fpi, &exp, bits);
118 ULtoQ((ULong*)L, bits, exp, k);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
scale_sig_opt.s 20 @ Word16 exp /* (i) : exponent: x = round(x << exp) */
25 @r2 --- exp
34 CMP r2, #0 @Compare exp and 0
35 RSB r7, r2, #0 @exp = -exp
36 ADD r10, r2, #16 @16 + exp
59 MOV r5, r6, ASR r7 @L_tmp >>= exp
  /toolchain/binutils/binutils-2.27/gas/
ehopt.c 253 change *EXP and *PNBYTES. */
256 check_eh_frame (expressionS *exp, unsigned int *pnbytes)
317 if ((exp->X_op == O_symbol || exp->X_op == O_subtract)
318 && ! S_IS_DEFINED (exp->X_add_symbol))
321 d->size_end_sym = exp->X_add_symbol;
349 if ((int)*pnbytes == -1 && exp->X_op == O_constant)
351 d->aug_size = exp->X_add_number;
354 else if (*pnbytes == 1 && exp->X_op == O_constant)
356 unsigned char byte = exp->X_add_number
    [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
obj-coff-seh.c 759 expressionS exp;
762 exp.X_op = O_subtract;
763 exp.X_add_symbol = e->pc_addr;
764 exp.X_op_symbol = c->start_addr;
765 exp.X_add_number = 0;
766 emit_expr (&exp, 1);
845 expressionS exp;
860 exp.X_op = O_subtract;
861 exp.X_add_symbol = c->endprologue_addr;
862 exp.X_op_symbol = c->start_addr
756 expressionS exp; local
842 expressionS exp; local
918 expressionS exp; local
969 expressionS exp; local
    [all...]
tc-tic4x.c 126 expressionS exp; /* Expression required for relocation. */ member in struct:tic4x_insn
210 /* Chars that can be used to separate mant from exp in floating point nums. */
260 For example 2e-3 is stored with exp = -4 and
649 tic4x_expression (char *str, expressionS *exp)
656 expression (exp);
679 expressionS exp; local
681 exp.X_op = O_constant;
682 exp.X_add_number = c;
683 emit_expr (&exp, b);
842 expressionS exp; local
898 expressionS exp; local
1504 expressionS *exp = &operand->expr; local
1668 expressionS *exp = &operand->expr; local
    [all...]
  /frameworks/compile/mclinker/lib/Script/
ScriptParser.yy 194 %type <integer> exp
354 /* create exp for vma */
385 opt_vma_and_type : exp opt_type
596 | symbol ADD_ASSIGN exp ';'
597 | symbol SUB_ASSIGN exp ';'
598 | symbol MUL_ASSIGN exp ';'
599 | symbol DIV_ASSIGN exp ';'
600 | symbol AND_ASSIGN exp ';'
601 | symbol OR_ASSIGN exp ';'
602 | symbol LS_ASSIGN exp ';'
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
ParametricGaussianFunction.java 31 * <tt>f(x) = a + b*exp(-((x - c)^2 / (2*d^2)))</tt>
43 * <li><tt>exp(x)</tt>: <i>e</i><tt>^x</tt>
90 return a + b * Math.exp(-xMc * xMc / (2.0 * (d * d)));
100 * function <tt>f(a, b, c, d) = a + b*exp(-((x - c)^2 / (2*d^2)))</tt>
133 final double exp = Math.exp(-xMc * xMc / (2 * d2)); local
134 final double f = b * exp * xMc / d2;
136 return new double[] { 1.0, exp, f, f * xMc / d };
  /external/libnetfilter_conntrack/utils/
expect_delete.c 14 struct nf_expect *exp; local
30 exp = nfexp_new();
31 if (!exp) {
37 nfexp_set_attr(exp, ATTR_EXP_EXPECTED, expected);
46 ret = nfexp_query(h, NFCT_Q_DESTROY, exp);
  /external/toybox/toys/pending/
dumpleases.c 41 int64_t written_time , current_time, exp; local
59 exp = ntohl(lease_struct.expires) + written_time;
60 if (exp <= current_time) {
66 unsigned expires = exp - current_time;
73 fputs(ctime((const time_t*)&exp), stdout);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
agc2_amr_wb.cpp 124 int16 i, exp; local
145 exp = normalize_amr_wb(s) - 1;
146 gain_out = amr_wb_round(s << exp);
167 exp -= i;
175 s = shr_int32(s, exp); /* add exponent */
  /system/update_engine/scripts/update_payload/
format_utils.py 84 exp, magnitude = 0, 1
85 while exp < len(suffixes):
89 exp += 1
92 if exp != 0:
97 return '%d%s %s' % (whole, '.%d' % frac if frac else '', suffixes[exp - 1])

Completed in 2297 milliseconds

1 2 3 4 5 6 7 8 91011>>