HomeSort by relevance Sort by last modified time
    Searched refs:exp (Results 126 - 150 of 1085) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/eigen/unsupported/test/mpreal/
mpreal.cpp 453 mp_exp_t exp;
469 s = mpfr_get_str(NULL,&exp,b,0,mp,mode);
470 ns = mpfr_get_str(NULL,&exp,b,n,mp,mode);
487 if (exp>0 && static_cast<size_t>(exp)<slen)
493 while (*ptr=='0' && ptr>s+exp) ptr--;
495 if(ptr==s+exp) out = string(s,exp+1);
496 else out = string(s,exp+1)+'.'+string(s+exp+1,ptr-(s+exp+1)+1);
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ceill.c 38 u.bits.exp++; \
46 u.bits.exp++; \
58 int e = u.bits.exp - LDBL_MAX_EXP + 1;
63 if (u.bits.exp > 0 ||
73 u.bits.exp++;
s_floorl.c 38 u.bits.exp++; \
46 u.bits.exp++; \
58 int e = u.bits.exp - LDBL_MAX_EXP + 1;
63 if (u.bits.exp > 0 ||
73 u.bits.exp++;
  /external/libppp/src/
timer.c 28 * $FreeBSD: src/usr.sbin/ppp/timer.c,v 1.47.24.1.4.1 2010/12/21 17:10:29 kensmith Exp $
192 struct pppTimer *tp, *exp, *next; local
208 exp = NULL;
212 tp->enext = exp;
213 exp = tp;
224 while (exp) {
225 ExpiredList = exp->enext;
226 exp->enext = NULL;
227 if (exp->func)
228 (*exp->func)(exp->arg)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
pitch_f4.c 171 Word32 corr, exp_corr, norm, exp, scale; local
195 exp = norm_l(L_tmp);
196 exp = (32 - exp);
197 //exp = exp + 2; /* energy of xn[] x 2 + rounded up */
198 scale = -(exp >> 1); /* (1<<scale) < 1/sqrt(energy rounded) */
222 exp = norm_l(L_tmp);
223 L_tmp = (L_tmp << exp);
224 exp_corr = (30 - exp);
    [all...]
  /external/chromium_org/remoting/protocol/
jingle_messages_unittest.cc 28 bool VerifyXml(const XmlElement* exp,
31 if (exp->Name() != val->Name()) {
32 *error = "<" + exp->Name().Merged() + ">" + " is expected, but " +
36 if (exp->BodyText() != val->BodyText()) {
37 *error = "<" + exp->Name().LocalPart() + ">" + exp->BodyText() +
38 "</" + exp->Name().LocalPart() + ">" " is expected, but found " +
39 "<" + exp->Name().LocalPart() + ">" + val->BodyText() +
40 "</" + exp->Name().LocalPart() + ">";
44 for (const XmlAttr* exp_attr = exp->FirstAttr(); exp_attr != NULL
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkFloat.cpp 37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift; local
40 if (exp >= 0)
42 if (exp > 8) // overflow
45 value <<= exp; local
49 exp = -exp;
50 if (exp > 23) // underflow
53 value >>= exp; local
135 int exp; local
142 exp = exp_a
223 int exp = get_unsigned_exp(packed); local
    [all...]
  /external/skia/src/core/
SkFloat.cpp 37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift; local
40 if (exp >= 0)
42 if (exp > 8) // overflow
45 value <<= exp; local
49 exp = -exp;
50 if (exp > 23) // underflow
53 value >>= exp; local
135 int exp; local
142 exp = exp_a
223 int exp = get_unsigned_exp(packed); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
numfmtst.h 184 const UnicodeString& exp, UBool rt=TRUE);
187 const char *exp, UBool rt=TRUE) {
188 expect(fmt, n, UnicodeString(exp, ""), rt);
192 const UnicodeString& exp, UErrorCode);
195 const char *exp, UErrorCode errorCode) {
196 expect(fmt, n, UnicodeString(exp, ""), errorCode);
218 void expectPat(DecimalFormat& fmt, const UnicodeString& exp);
220 void expectPat(DecimalFormat& fmt, const char *exp) {
221 expectPat(fmt, UnicodeString(exp, ""));
235 const UnicodeString& exp, UBool rt=TRUE)
    [all...]
  /external/icu4c/test/intltest/
numfmtst.h 196 const UnicodeString& exp, UBool rt=TRUE);
199 const char *exp, UBool rt=TRUE) {
200 expect(fmt, n, UnicodeString(exp, ""), rt);
204 const UnicodeString& exp, UErrorCode);
207 const char *exp, UErrorCode errorCode) {
208 expect(fmt, n, UnicodeString(exp, ""), errorCode);
230 void expectPat(DecimalFormat& fmt, const UnicodeString& exp);
232 void expectPat(DecimalFormat& fmt, const char *exp) {
233 expectPat(fmt, UnicodeString(exp, ""));
247 const UnicodeString& exp, UBool rt=TRUE)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
agc.cpp 653 Word16 i, exp;
665 exp = sub (norm_l (s), 1);
666 gain_out = pv_round (L_shl (s, exp));
679 exp = sub (exp, i);
687 s = L_shr (s, exp); // add exponent
749 Word16 exp; local
768 exp = norm_l(s) - 1;
770 L_temp = L_shl(s, exp, pOverflow);
789 exp -= i
972 Word16 exp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_gain2_amr_wb.cpp 187 int16 i, tmp, exp, frac, gcode0, exp_gcode0, qua_ener, gcode_inov; local
206 L_tmp = Dot_product12(code, code, L_subfr, &exp);
207 exp -= 24; /* exp: -18 (code in Q9), -6 (/L_subfr) */
209 one_ov_sqrt_norm(&L_tmp, &exp);
211 gcode_inov = extract_h(shl_int32(L_tmp, exp - 3)); /* g_code_inov in Q12 */
377 int32_to_dpf(*gain_cod, &exp, &frac);
378 L_tmp = mul_32by16(exp, frac, gcode_inov);
393 amrwb_log_2(L_tmp, &exp, &frac);
394 exp -= 11
    [all...]
isf_extrapolation.cpp 123 int16 exp, exp2, hi, lo; local
153 exp = norm_s(tmp);
156 IsfDiff[i] = shl_int16(IsfDiff[i], exp);
158 mean = shl_int16(mean, exp);
227 exp = norm_s(tmp);
228 exp--;
229 tmp <<= exp; local
232 exp = exp2 - exp;
237 IsfDiff[i - (M - 1)] = shl_int16(tmp, exp);
    [all...]
  /device/generic/goldfish/libqemu/
test_host_2.c 36 #define TEMP_FAILURE_RETRY(exp) ({ \
37 typeof (exp) _rc; \
39 _rc = (exp); \
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
FilterExprIterator.java 177 public void setExpression(Expression exp)
179 exp.exprSetParent(FilterExprIterator.this);
180 m_expr = exp;
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQuery.cpp 91 MediaQueryExp* exp = m_expressions->at(i).get(); local
93 if (key && *exp == *key)
96 key = exp;
  /external/chromium_org/third_party/libxml/src/
regressions.py 38 exp = expected.readlines()
50 for i in range(len(exp)):
51 j = string.find(exp[i],base2)
52 if (j == 0) or ((j == 2) and (exp[i][0:2] == './')):
53 col = string.find(exp[i],':')
55 start = string.rfind(exp[i][:col], '/')
57 exp[i] = exp[i][start+1:]
64 # diff = difflib.ndiff(res, exp)
75 el = len(exp)
    [all...]
  /external/libvorbis/lib/
scales.h 68 #define fromdB(x) (exp((x)*.11512925f))
82 #define fromMEL(m) (1000.f*exp((m)/1442.695f)-1000.f)
88 #define fromOC(o) (exp(((o)+5.965784f)*.693147f))
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
Dot_p_opt.s 21 @ Word16 * exp /* (o) : exponent of result (0..+30) */
27 @ *exp --- r3
71 RSB r11, r10, #30 @ *exp = 30 - sft
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
scanner.py 50 integer, frac, exp = m.groups()
51 if frac or exp:
52 res = parse_float(integer + (frac or '') + (exp or ''))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
scanner.py 50 integer, frac, exp = m.groups()
51 if frac or exp:
52 res = parse_float(integer + (frac or '') + (exp or ''))
  /system/core/libpixelflinger/
fixed.cpp 96 const int32_t exp = lz - 16; local
97 if (exp <= 0) x >>= -exp>>1;
98 else x <<= (exp>>1) + (exp & 1);
99 if (exp & 1) {
143 // = 2^(y*log2(x*(2^exp)*(2^-exp))))
144 // = 2^(y*(log2(X)-exp))
145 // = 2^(log2(X)*y - y*exp)
148 int32_t exp = gglClz(x) - 16; local
164 p >>= exp; local
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_cdb.py 43 for arg, exp in zip(cmds[0].arguments, expected):
44 assert arg == exp
61 for arg, exp in zip(cmds[i].arguments, expected[i]['line']):
62 assert arg == exp
  /external/stlport/stlport/stl/config/
_como.h 91 inline long double expl(long double arg) { return exp(arg); }
125 # define expf exp
126 inline long double expl(long double arg) { return exp(arg); }
164 inline long double expl(long double arg) { return exp(arg); }
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
qgain795.cpp 499 Word16 exp; local
574 exp = sub(exp_gcode0, 10, pOverflow);
575 exp_coeff[2] = add(exp_en[2], exp, pOverflow);
580 exp = sub(shl(exp_gcode0, 1, pOverflow), 7, pOverflow);
581 exp_coeff[3] = add(exp_en[3], exp, pOverflow);
590 -> result = val >> (exp/2)
593 L_t0 = sqrt_l_exp(L_tmp, &exp, pOverflow); /* normalization included in sqrt_l_exp */
594 exp = add(exp, 47, pOverflow);
595 exp_coeff[0] = sub(exp_en[0], exp, pOverflow)
842 Word16 exp; local
    [all...]

Completed in 1279 milliseconds

1 2 3 4 56 7 8 91011>>