Home
last modified time | relevance | path

Searched refs:i42 (Results 1 – 25 of 25) sorted by relevance

/external/llvm/test/Assembler/
Dauto_upgrade_intrinsics.ll8 declare i42 @llvm.ctlz.i42(i42) ; Not a power-of-2
14 define void @test.ctlz(i8 %a, i16 %b, i32 %c, i42 %d) {
24 ; CHECK: call i42 @llvm.ctlz.i42(i42 %d, i1 false)
25 call i42 @llvm.ctlz.i42(i42 %d)
33 declare i42 @llvm.cttz.i42(i42) ; Not a power-of-2
35 define void @test.cttz(i8 %a, i16 %b, i32 %c, i42 %d) {
45 ; CHECK: call i42 @llvm.cttz.i42(i42 %d, i1 false)
46 call i42 @llvm.cttz.i42(i42 %d)
/external/llvm/test/Transforms/InstCombine/
Dapint-sub.ll54 define i42 @test9(i42 %A) {
55 %B = mul i42 3, %A ; <i42> [#uses=1]
56 %C = sub i42 %A, %B ; <i42> [#uses=1]
57 ret i42 %C
/external/llvm/test/Transforms/SLPVectorizer/X86/
Dcrash_cmpop.ll47 %cond.i42 = select i1 %cmp.i41, float %mul11, float 1.000000e+00
48 %cmp.i39 = fcmp olt float %cond.i42, -1.000000e+00
49 %cond.i40 = select i1 %cmp.i39, float -1.000000e+00, float %cond.i42
/external/llvm/test/Transforms/SimplifyCFG/
D2006-06-12-InfLoop.ll211 br i1 false, label %no_exit.3.preheader.i42, label %loopexit.3.i51
212 no_exit.3.preheader.i42: ; preds = %loopentry.3.i40
214 no_exit.3.i49: ; preds = %no_exit.3.i49, %no_exit.3.preheader.i42
392 loopentry.4.i38: ; preds = %loopexit.4.i42, %loopentry.4.i38.preheader
393 br i1 false, label %no_exit.3.i.preheader, label %loopexit.4.i42
399 br i1 false, label %no_exit.3.i.backedge, label %loopexit.4.i42.loopexit
403 br i1 false, label %no_exit.3.i.backedge, label %loopexit.4.i42.loopexit
404 loopexit.4.i42.loopexit: ; preds = %endif.3.i, %else.1.i
405 br label %loopexit.4.i42
406 loopexit.4.i42: ; preds = %loopexit.4.i42.loopexit, %loopentry.4.i38
[all …]
D2005-08-01-PHIUpdateFail.ll32 %indvar.i42 = phi i32 [ %indvar.next.i, %endif.5.i ], [ 0, %loopentry.1.i ] ; <i32> [#uses=1]
37 %indvar.next.i = add i32 %indvar.i42, 1 ; <i32> [#uses=1]
/external/llvm/test/CodeGen/Generic/
D2006-02-12-InsertLibcall.ll38 %tmp.8.i42 = icmp eq i32 0, 0 ; <i1> [#uses=1]
39 br i1 %tmp.8.i42, label %else.1.i56, label %then.1.i52
DAPIntLoadStore.ll84 @i42_l = external global i42 ; <i42*> [#uses=1]
85 @i42_s = external global i42 ; <i42*> [#uses=1]
762 %tmp = load i42, i42* @i42_l ; <i42> [#uses=1]
763 store i42 %tmp, i42* @i42_s
DAPIntZextParam.ll43 @i42_s = external global i42 ; <i42*> [#uses=1]
464 define void @i42_ls(i42 zeroext %x) nounwind {
465 store i42 %x, i42* @i42_s
DAPIntParam.ll43 @i42_s = external global i42 ; <i42*> [#uses=1]
464 define void @i42_ls(i42 %x) nounwind {
465 store i42 %x, i42* @i42_s
DAPIntSextParam.ll43 @i42_s = external global i42 ; <i42*> [#uses=1]
464 define void @i42_ls(i42 signext %x) nounwind {
465 store i42 %x, i42* @i42_s
/external/libweave/third_party/chromium/base/
Dvalues_unittest.cc562 scoped_ptr<Value> i42(new FundamentalValue(42)); in TEST() local
565 EXPECT_TRUE(Value::Equals(i42.get(), i42.get())); in TEST()
566 EXPECT_TRUE(Value::Equals(j42.get(), i42.get())); in TEST()
567 EXPECT_TRUE(Value::Equals(i42.get(), j42.get())); in TEST()
568 EXPECT_FALSE(Value::Equals(i42.get(), i17.get())); in TEST()
569 EXPECT_FALSE(Value::Equals(i42.get(), NULL)); in TEST()
570 EXPECT_FALSE(Value::Equals(NULL, i42.get())); in TEST()
/external/libchrome/base/
Dvalues_unittest.cc596 scoped_ptr<Value> i42(new FundamentalValue(42)); in TEST() local
599 EXPECT_TRUE(Value::Equals(i42.get(), i42.get())); in TEST()
600 EXPECT_TRUE(Value::Equals(j42.get(), i42.get())); in TEST()
601 EXPECT_TRUE(Value::Equals(i42.get(), j42.get())); in TEST()
602 EXPECT_FALSE(Value::Equals(i42.get(), i17.get())); in TEST()
603 EXPECT_FALSE(Value::Equals(i42.get(), NULL)); in TEST()
604 EXPECT_FALSE(Value::Equals(NULL, i42.get())); in TEST()
/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
Dis_heap.pass.cpp90 int i42[] = {1, 0, 0, 0, 0}; in test() local
121 assert(std::is_heap(i42, i42+5) == (std::is_heap_until(i42, i42+5) == i42+5)); in test()
Dis_heap_until.pass.cpp90 int i42[] = {1, 0, 0, 0, 0}; in test() local
121 assert(std::is_heap_until(i42, i42+5) == i42+5); in test()
Dis_heap_until_comp.pass.cpp91 int i42[] = {1, 0, 0, 0, 0}; in test() local
122 assert(std::is_heap_until(i42, i42+5, std::greater<int>()) == i42+1); in test()
Dis_heap_comp.pass.cpp91 int i42[] = {1, 0, 0, 0, 0}; in test() local
122 …assert(std::is_heap(i42, i42+5, std::greater<int>()) == (std::is_heap_until(i42, i42+5, std::great… in test()
/external/llvm/test/Transforms/LoopVectorize/
Dif-conversion-edgemasks.ll206 br i1 %tobool.i19.i, label %if.then10.i.i42, label %if.end13.i.i46
208 if.then10.i.i42:
214 …%p1.addr.2.i.i43 = phi i32 [ %conv12.i.i41, %if.then10.i.i42 ], [ %p1.addr.1.i.i38, %if.end7.i.i39…
/external/llvm/test/CodeGen/ARM/
D2007-04-03-UndefinedSymbol.ll64 …%ctg2.i42 = getelementptr i8, i8* %tmp151.i41, i32 ptrtoint (void (%struct.B*)* @_ZN1B1jEv to i32)…
65 %tmp2021.i43 = bitcast i8* %ctg2.i42 to i32 (...)** ; <i32 (...)**> [#uses=1]
/external/v8/test/mjsunit/asm/embenchen/
Dbox2d.js10797 … = 0, i35 = 0, d36 = 0.0, d37 = 0.0, d38 = 0.0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, d43 = 0.0, d44…
10949 i42 = 0;
10955 i42 = i35 ? i46 : i42;
10964 HEAP32[i35 >> 2] = i42;
10965 if (!((i42 | 0) > -1)) {
10972 i42 = 0;
10974 if ((i41 | 0) <= (i42 | 0)) {
10978 d45 = +HEAPF32[i40 + (i42 << 3) >> 2];
10979 d43 = +HEAPF32[i40 + (i42 << 3) + 4 >> 2];
10993 i42 = 1;
[all …]
Dzlib.js5772 …0, i34 = 0, i35 = 0, i36 = 0, i37 = 0, i38 = 0, i39 = 0, i40 = 0, i41 = 0, i42 = 0, i43 = 0, i44 =…
5822 i42 = i4 + 64 | 0;
6221 HEAP8[i19] = HEAP32[i42 >> 2];
6264 HEAP32[i42 >> 2] = i66;
6495 i66 = HEAP32[i42 >> 2] | 0;
6508 HEAP32[i42 >> 2] = (HEAP32[i42 >> 2] | 0) - i67;
6918 HEAP32[i42 >> 2] = i64;
7035 HEAP32[i42 >> 2] = i70 & 65535;
7065 i67 = HEAP32[i42 >> 2] | 0;
7078 i67 = (HEAP32[i42 >> 2] | 0) - i60 | 0;
[all …]
/external/llvm/test/CodeGen/X86/
Dunwindraise.ll208 %retval.0.i.i.i42 = phi i64 [ %28, %if.then.i.i.i37 ], [ %30, %if.then10.i.i.i40 ]
209 %31 = inttoptr i64 %retval.0.i.i.i42 to i8*
/external/llvm/test/CodeGen/Hexagon/
Dearly-if-conversion-bug1.ll374 %this1.i42 = load %"class.std::__1::ios_base"*, %"class.std::__1::ios_base"** %this.addr.i41
375 …mentptr inbounds %"class.std::__1::ios_base", %"class.std::__1::ios_base"* %this1.i42, i32 0, i32 3
379 …mentptr inbounds %"class.std::__1::ios_base", %"class.std::__1::ios_base"* %this1.i42, i32 0, i32 3
/external/llvm/test/Transforms/ArgumentPromotion/
Dpr3085.ll337 br i1 false, label %bb5.i.i.i41, label %bb6.i.i.i42
342 bb6.i.i.i42: ; preds = %bb1.i.i36
345 bb7.i.i.i43: ; preds = %bb6.i.i.i42
348 bb8.i.i.i44: ; preds = %bb7.i.i.i43, %bb6.i.i.i42
/external/llvm/test/CodeGen/PowerPC/
Dtoc-load-sched-bug.ll320 …%call2.i.i42 = call dereferenceable(48) %"class.llvm::SmallVectorImpl.85"* @_ZN4llvm15SmallVectorI…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/
Den-GB_kh0_kpdf_mgc.pkb138 '4i42=HCYMJJNUb]ogc`hiq}��A$� O�h<����� �=�V ��4����� n��� ������������� A`7%B'WHAFd…