/external/llvm/test/Transforms/GVN/ |
2011-07-07-MatchIntrinsicExtract.ll | 10 %add1 = add i64 %a, %b 11 ret i64 %add1 15 ; CHECK-NOT: add1 46 %add1 = add i64 %a, %b 47 ret i64 %add1 51 ; CHECK-NOT: add1
|
/external/llvm/test/ExecutionEngine/ |
2002-12-16-ArgTest.ll | 23 %cann-indvar = phi i32 [ 0, %bb0 ], [ %add1-indvar, %bb2 ] ; <i32> [#uses=2] 24 %add1-indvar = add i32 %cann-indvar, 1 ; <i32> [#uses=2] 31 %cond239 = icmp slt i32 %add1-indvar, %argc ; <i1> [#uses=1]
|
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/ |
qpisf_2s.c | 251 isf_q[i] = add1(isf_q[i], dico21_isf[indice[2] * 3 + i]); 252 isf_q[i + 3] = add1(isf_q[i + 3], dico22_isf[indice[3] * 3 + i]); 253 isf_q[i + 6] = add1(isf_q[i + 6], dico23_isf[indice[4] * 3 + i]); 254 isf_q[i + 9] = add1(isf_q[i + 9], dico24_isf[indice[5] * 3 + i]); 259 isf_q[i + 12] = add1(isf_q[i + 12], dico25_isf[indice[6] * 4 + i]); 265 isf_q[i] = add1(tmp, mean_isf[i]); 266 isf_q[i] = add1(isf_q[i], vo_mult(MU, past_isfq[i])); 296 isf_q[i] = add1(vo_mult(ALPHA, isfold[i]), vo_mult(ONE_ALPHA, ref_isf[i])); 302 tmp = add1(ref_isf[i], vo_mult(past_isfq[i], MU)); /* predicted ISF */ 344 isf_q[i] = add1(isf_q[i], dico21_isf_36b[indice[2] * 5 + i]); [all...] |
voicefac.c | 77 ener1 = add1(add1(ener1, ener2), 1);
|
wb_vad.c | 68 res = add1(res, (ex2 << 6)); 69 res = vo_sub(add1(res, 127), (mant >> 8)); 90 temp1 = add1(data[0], vo_mult(COEFF5_1, temp0)); 94 temp2 = add1(data[1], vo_mult(COEFF5_2, temp0)); 118 temp2 = add1(*data, vo_mult(COEFF3, temp1)); 304 stat_rat = add1(stat_rat, shr(temp, (8 - exp))); 336 st->ave_level[i] = add1(st->ave_level[i], vo_mult_r(alpha, vo_sub(level[i], st->ave_level[i]))); 427 st->bckr_est[i] = add1(-2, add(st->bckr_est[i],vo_mult_r(alpha_down, temp))); 435 st->bckr_est[i] = add1(bckr_add, add1(st->bckr_est[i],vo_mult_r(alpha_up, temp))); [all...] |
isp_isf.c | 54 isf[i] = add1(isf[i], (ind << 7)); 83 isp[i] = add1(table[ind], (Word16)((L_tmp >> 8)));
|
q_pulse.c | 68 index = L_deposit_l(add1((((Word16) (pos1 & mask)) << N), ((Word16) (pos2 & mask)))); 72 index = L_deposit_l(add1((((Word16) (pos2 & mask)) << N), ((Word16) (pos1 & mask)))); 85 index = L_deposit_l(add1((((Word16) (pos2 & mask)) << N), ((Word16) (pos1 & mask)))); 94 index = L_deposit_l(add1((((Word16) (pos1 & mask)) << N), ((Word16) (pos2 & mask)))); 222 tmp = add1((Word16)((vo_L_mult(3, n_1) >> 1)), 1); 282 tmp = add1((N << 1), 1); /* index += quant_3p_3N1(posB[0], posB[1], posB[2], n_1) << ((2*N)+1);*/ 290 tmp = add1((N << 1), 1); /* index += quant_3p_3N1(posB[0], posB[1], posB[2], n_1) <<((2*N)+1); */ 298 tmp = add1((N << 1), 1); /* index += quant_3p_3N1(posB[0], posB[1], posB[2], n_1) << ((2*N)+1); */ 304 tmp = add1((N << 1), 1); /* index = quant_3p_3N1(posA[0], posA[1], posA[2], n_1) << ((2*N)+1); */ 309 tmp = add1((N << 1), 1); /* index = quant_3p_3N1(posA[0], posA[1], posA[2], n_1) << ((2*N)+1); * [all...] |
c2t64fx.c | 82 s = L_shl(s, add1(exp, 5)); 239 ps2 = add1(ps1, dn[i1]); 240 alp2 = add1(alp1, add1(*p1++, *p2++)); 288 *index = add1((i0 << 6), i1); 291 y[i] = vo_shr_r(add1((*p0++), (*p1++)), 3);
|
c4t64fx.c | 606 ps = add1(add1(add1(dn[ix], dn[iy]), dn[i]), dn[j]); 631 vec[i] = add1(add1(add1(*p0++, *p1++), *p2++), *p3++); 685 vec[i] += add1((*p0++), (*p1++)); 686 vec[i+1] += add1((*p0++), (*p1++)); 687 vec[i+2] += add1((*p0++), (*p1++)); 688 vec[i+3] += add1((*p0++), (*p1++)); [all...] |
/external/llvm/examples/HowToUseJIT/ |
HowToUseJIT.cpp | 17 // int add1(int x) { 22 // return add1(10); 61 // Create the add1 function entry and insert this entry into module M. The 65 cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context), 80 // Get pointers to the integer argument of the add1 function... 91 // Now, function add1 is ready.
|
/external/llvm/examples/ParallelJIT/ |
ParallelJIT.cpp | 34 // Create the add1 function entry and insert this entry into module M. The 38 cast<Function>(M->getOrInsertFunction("add1", 50 // Get pointers to the integer argument of the add1 function... 61 // Now, function add1 is ready. 81 // Get pointer to the integer argument of the add1 function... 253 // Create one thread for add1 and two threads for fib 254 struct threadParams add1 = { EE, add1F, 1000 }; local 259 int result = pthread_create( &add1Thread, NULL, callFunc, &add1 ); 287 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
MultiJITTest.cpp | 37 "define i32 @add1(i32 %ArgX1) { " 45 " %add1 = call i32 @add1(i32 10) " 46 " ret i32 %add1 "
|
/external/v8/test/mjsunit/ |
int32-ops.js | 44 function Add1(x) { 61 assertEquals(1, Add1(0)); // fast case 63 assertEquals(SMI_MAX + ONE, Add1(SMI_MAX), "smimax + 1"); 65 assertEquals(42 + ONE, Add1(OBJ_42)); // non-smi
|
smi-ops-inlined.js | 42 function Add1(x) { 59 assertEquals(1, Add1(0)); // fast case 61 assertEquals(SMI_MAX + ONE, Add1(SMI_MAX), "smimax + 1"); 63 assertEquals(42 + ONE, Add1(OBJ_42)); // non-smi
|
smi-ops.js | 40 function Add1(x) { 57 assertEquals(1, Add1(0)); // fast case 59 assertEquals(SMI_MAX + ONE, Add1(SMI_MAX), "smimax + 1"); 61 assertEquals(42 + ONE, Add1(OBJ_42)); // non-smi
|
/external/llvm/test/Transforms/ADCE/ |
2002-05-28-Crash.ll | 34 %cann-indvar = phi i32 [ 0, %bb1 ], [ %add1-indvar, %bb2 ] ; <i32> [#uses=2] 37 %add1-indvar = add i32 %cann-indvar, 1 ; <i32> [#uses=1]
|
/external/kernel-headers/original/linux/ |
ktime.h | 163 * @add1: addend1 168 static inline ktime_t ktime_add(const ktime_t add1, const ktime_t add2) 172 res.tv64 = add1.tv64 + add2.tv64;
|
/external/llvm/test/CodeGen/X86/ |
atomic_add.ll | 104 define void @add1(i32* nocapture %p, i32 %v) nounwind ssp { 106 ; CHECK: add1:
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_ListTest.java | 187 Integer add1 = new Integer(600); local 189 li.add(add1);
|
/external/llvm/test/Transforms/InstSimplify/ |
reassociate.ll | 3 define i32 @add1(i32 %x) { 4 ; CHECK: @add1
|
/libcore/support/src/test/java/tests/support/ |
Support_ListTest.java | 187 Integer add1 = new Integer(600); local 189 li.add(add1);
|
/external/clang/test/Sema/ |
block-return.c | 7 short (^add1)(void) = ^{ return y+1; }; // expected-error {{incompatible block pointer types initializing 'short (^)(void)' with an expression of type 'int (^)(void)'}}
|
/external/llvm/examples/Fibonacci/ |
fibonacci.cpp | 54 // Get pointer to the integer argument of the add1 function...
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
BasicValueFactory.h | 147 inline const llvm::APSInt& Add1(const llvm::APSInt& V) {
|
/libcore/luni/src/test/java/libcore/java/math/ |
OldBigDecimalArithmeticTest.java | 523 BigDecimal add1 = new BigDecimal("23.456"); local 525 BigDecimal sum = add1.add(add2); 532 assertTrue("the sum of 23.456 + 12.34E02 is not printed correctly", (add1.add(add3))
|