/external/llvm/utils/release/ |
findRegressions-nightly.py | 10 (tp, exp) = ('compileTime_', 'executeTime_') 58 test[fname][exp + n] = float(t[2].strip('\r\n')) 60 print test[fname][exp + n] 106 if d_old[t].has_key(exp + x): 107 if not d_new[t].has_key(exp + x): 108 print t + " *** REGRESSION (" + exp + x + ")\n" 111 if d_new[t].has_key(exp + x): 112 print t + " * NEW PASS (" + exp + x + ")\n"
|
/external/valgrind/main/none/tests/amd64/ |
aes.c | 75 V128 exp; local 91 expand(&exp, s_exp); 92 assert (0 == memcmp(&res, &exp, 16)); 107 V128 exp; local 123 expand(&exp, s_exp); 124 assert (0 == memcmp(&res, &exp, 16)); 139 V128 exp; local 155 expand(&exp, s_exp); 156 assert (0 == memcmp(&res, &exp, 16)); 171 V128 exp; local 203 V128 exp; local 234 V128 exp; local [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
log2_norm.cpp | 92 exp = number of shifts required to normalize L_x; it is of type Word16 139 Word16 exp, // (i) : norm_l (L_x) 154 *exponent = sub (30, exp); 198 Word16 exp, /* (i) : norm_l (L_x) */ 214 *exponent = 30 - exp;
|
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/ |
perf_obj.h | 101 #define PERF_check(handle, exp) ((handle) ? (exp),1 : 0)
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_scalbnl.c | 50 k = u.bits.exp; /* extract exponent */ 54 k = u.bits.exp - 128; 61 {u.bits.exp = k; return u.e;} 67 u.bits.exp = k;
|
s_remquol.c | 85 if((uy.bits.exp|uy.bits.manh|uy.bits.manl)==0 || /* y=0 */ 86 (ux.bits.exp == BIAS + LDBL_MAX_EXP) || /* or x not finite */ 87 (uy.bits.exp == BIAS + LDBL_MAX_EXP && 90 if(ux.bits.exp<=uy.bits.exp) { 91 if((ux.bits.exp<uy.bits.exp) || 105 if(ux.bits.exp == 0) { /* subnormal x */ 107 ix = ux.bits.exp - (BIAS + 512); 109 ix = ux.bits.exp - BIAS [all...] |
s_cosl.c | 62 if (z.bits.exp == 0) 66 if (z.bits.exp == 32767)
|
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/ |
AudioUtilities.cpp | 54 return 1 - exp(-1 / (sampleRate * timeConstant));
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tsputil.h | 25 // void remainderTest(double x, double y, double exp); 26 void maxMinTest(double a, double b, double exp, UBool max);
|
/external/eigen/unsupported/doc/examples/ |
MatrixExponential.cpp | 15 std::cout << "The matrix exponential of A is:\n" << A.exp() << "\n\n";
|
MatrixFunction.cpp | 8 return std::exp(x);
|
/external/icu4c/test/intltest/ |
tsputil.h | 25 // void remainderTest(double x, double y, double exp); 26 void maxMinTest(double a, double b, double exp, UBool max);
|
/external/kernel-headers/original/linux/netfilter/ |
nf_conntrack_ftp.h | 40 struct ip_conntrack_expect *exp,
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
d_gain_c.cpp | 199 Word16 gcode0, exp, frac; local 213 * = 2^exp + 2^frac * 217 gc_pred(pred_state, mode, code, &exp, &frac, 229 gcode0 = (Word16)(Pow2(exp, frac, pOverflow)); /* predicted gain */ 237 L_tmp = L_shr(L_tmp, sub(9, exp, pOverflow), pOverflow);
|
ex_ctrl.cpp | 160 Word16 i, exp; local 191 exp = norm_s(excEnergy); 192 excEnergy = shl(excEnergy, exp, pOverflow); 195 t0 = L_shr(t0, sub(20, exp, pOverflow), pOverflow);
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
q_gain2.c | 79 Word16 exp, frac, gcode0, exp_gcode0, e_max, exp_code, qua_ener; local 147 coeff[2] = extract_h(Dot_product12_asm(y2, y2, L_subfr, &exp)); 149 coeff[2] = extract_h(Dot_product12(y2, y2, L_subfr, &exp)); 151 exp_coeff[2] = (exp - 18) + (Q_xn << 1); /* -18 (y2 Q9) */ 155 coeff[3] = extract_h(L_negate(Dot_product12_asm(xn, y2, L_subfr, &exp))); 157 coeff[3] = extract_h(L_negate(Dot_product12(xn, y2, L_subfr, &exp))); 160 exp_coeff[3] = (exp - 8) + Q_xn; /* -9 (y2 Q9), +1 (2 xn y2) */ 164 coeff[4] = extract_h(Dot_product12_asm(y1, y2, L_subfr, &exp)); 166 coeff[4] = extract_h(Dot_product12(y1, y2, L_subfr, &exp)); 168 exp_coeff[4] = (exp - 8) + Q_xn; /* -9 (y2 Q9), +1 (2 y1 y2) * [all...] |
/frameworks/base/core/java/android/util/ |
FloatMath.java | 80 public static native float exp(float value); method in class:FloatMath
|
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_fbupdate.h | 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
|
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc_fbupdate.h | 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
|
/hardware/qcom/display/msm8x26/libhwcomposer/ |
hwc_fbupdate.h | 25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) 26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XNumber.java | 156 // int exp = 0; 160 // exp = Integer.parseInt(s.substring(e + 1)); 242 // if (exp == 0) 261 // if (exp >= decimalLen) 262 // return sign + wholePart + decimalPart + zeros(exp - decimalLen); 264 // if (exp > 0) 265 // return sign + wholePart + decimalPart.substring(0, exp) + "." 266 // + decimalPart.substring(exp); 268 // return sign + "0." + zeros(-1 - exp) + wholePart + decimalPart; 316 int exp = Integer.parseInt(s.substring(e + 1)) local [all...] |
/external/oprofile/module/x86/ |
op_rtc.c | 61 unsigned int exp, freq; local 77 exp = 0; 78 while (target > (1 << exp) + ((1 << exp) >> 1)) 79 exp++; 80 freq = 16 - exp; 87 sysctl_parms.ctr[0].count = sysctl.ctr[0].count = 1 << exp;
|
/external/hyphenation/ |
substrings.pl | 111 my @exp = (); 115 push @exp, 0; 117 push @exp, $c; 121 push @exp, 0; 123 return @exp; 129 my @exp = expand shift; 134 $pat1 = join ('', map { $_ =~ /\d/ ? () : $_ } @exp); 142 if ($subexp[$j] > $exp[2 * $i + $j]) { 143 $exp[2 * $i + $j] = $subexp[$j]; 155 return join ('', map { $_ eq '0' ? () : $_ } @exp); [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
Operation.java | 160 public void setExpression(Expression exp) 162 exp.exprSetParent(Operation.this); 163 m_left = exp; 190 public void setExpression(Expression exp) 192 exp.exprSetParent(this); 193 m_right = exp;
|
/external/chromium_org/third_party/sqlite/src/src/ |
printf.c | 257 int exp, e2; /* exponent of real numbers */ local 490 exp = 0; 497 while( realvalue>=1e32 && exp<=350 ){ realvalue *= 1e-32; exp+=32; } 498 while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; } 499 while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; } 500 while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; } 501 while( realvalue<1.0 ){ realvalue *= 10.0; exp--; [all...] |