Home
last modified time | relevance | path

Searched refs:i181 (Results 1 – 19 of 19) sorted by relevance

/external/clang/test/Analysis/
Dpr22954.c318 struct ii i181 = {{1, 2, 3, 4}, 5, 6}; in f181() local
319 i181.i = 10; in f181()
320 i181.j = 11; in f181()
321 i181.s2 = strdup("hello"); in f181()
323 memcpy(i181.s1, input, 5); // invalidate the whole region of i181 in f181()
324 clang_analyzer_eval(i181.s1[0] == 1); // expected-warning{{UNKNOWN}}\ in f181()
326 clang_analyzer_eval(i181.s1[1] == 2); // expected-warning{{UNKNOWN}} in f181()
327 clang_analyzer_eval(i181.s1[2] == 3); // expected-warning{{UNKNOWN}} in f181()
328 clang_analyzer_eval(i181.s1[3] == 4); // expected-warning{{UNKNOWN}} in f181()
329 clang_analyzer_eval(i181.i == 10); // expected-warning{{UNKNOWN}} in f181()
[all …]
/external/llvm/test/CodeGen/PowerPC/
Dpreinc-ld-sel-crash.ll32 br i1 undef, label %if.then17.i, label %if.then.i181
34 if.then.i181: ; preds = %if.end75
/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
Dis_heap.pass.cpp323 int i181[] = {0, 1, 1, 1, 1, 0, 1}; in test() local
450 assert(std::is_heap(i181, i181+7) == (std::is_heap_until(i181, i181+7) == i181+7)); in test()
Dis_heap_until.pass.cpp323 int i181[] = {0, 1, 1, 1, 1, 0, 1}; in test() local
450 assert(std::is_heap_until(i181, i181+7) == i181+1); in test()
Dis_heap_until_comp.pass.cpp324 int i181[] = {0, 1, 1, 1, 1, 0, 1}; in test() local
451 assert(std::is_heap_until(i181, i181+7, std::greater<int>()) == i181+5); in test()
Dis_heap_comp.pass.cpp324 int i181[] = {0, 1, 1, 1, 1, 0, 1}; in test() local
451 …assert(std::is_heap(i181, i181+7, std::greater<int>()) == (std::is_heap_until(i181, i181+7, std::g… in test()
/external/r8/src/test/examples/regalloc/
DRegAlloc.java170 int i180 = identity(180); int i181 = identity(181); int i182 = identity(182); in binaryOpUsingHighRegistersLocals() local
219 i180 + i181 + i182 + i183 + i184 + i185 + i186 + i187 + i188 + i189 + i190 + i191 + in binaryOpUsingHighRegistersLocals()
294 double i180 = identity(180.0); double i181 = identity(181.0); double i182 = identity(182.0); in binaryDoubleOpUsingHighRegistersLocals() local
340 i180 + i181 + i182 + i183 + i184 + i185 + i186 + i187 + i188 + i189 + i190 + i191 + in binaryDoubleOpUsingHighRegistersLocals()
/external/r8/src/test/examples/invoke/
DInvoke.java352 int i174, int i175, int i176, int i177, int i178, int i179, int i180, int i181, int i182, in manyArgs() argument
406 int i178 = 178; int i179 = 179; int i180 = 180; int i181 = 181; int i182 = 182; in rangeInvokeWithManyLocals() local
435 i171, i172, i173, i174, i175, i176, i177, i178, i179, i180, i181, i182, i183, i184, i185, in rangeInvokeWithManyLocals()
/external/llvm/test/CodeGen/Generic/
DAPIntLoadStore.ll362 @i181_l = external global i181 ; <i181*> [#uses=1]
363 @i181_s = external global i181 ; <i181*> [#uses=1]
1596 %tmp = load i181, i181* @i181_l ; <i181> [#uses=1]
1597 store i181 %tmp, i181* @i181_s
DAPIntSextParam.ll182 @i181_s = external global i181 ; <i181*> [#uses=1]
1159 define void @i181_ls(i181 signext %x) nounwind {
1160 store i181 %x, i181* @i181_s
DAPIntParam.ll182 @i181_s = external global i181 ; <i181*> [#uses=1]
1159 define void @i181_ls(i181 %x) nounwind {
1160 store i181 %x, i181* @i181_s
DAPIntZextParam.ll182 @i181_s = external global i181 ; <i181*> [#uses=1]
1159 define void @i181_ls(i181 zeroext %x) nounwind {
1160 store i181 %x, i181* @i181_s
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/
DAPIntLoadStore.ll362 @i181_l = external global i181 ; <i181*> [#uses=1]
363 @i181_s = external global i181 ; <i181*> [#uses=1]
1596 %tmp = load i181* @i181_l ; <i181> [#uses=1]
1597 store i181 %tmp, i181* @i181_s
DAPIntParam.ll182 @i181_s = external global i181 ; <i181*> [#uses=1]
1159 define void @i181_ls(i181 %x) nounwind {
1160 store i181 %x, i181* @i181_s
DAPIntSextParam.ll182 @i181_s = external global i181 ; <i181*> [#uses=1]
1159 define void @i181_ls(i181 signext %x) nounwind {
1160 store i181 %x, i181* @i181_s
DAPIntZextParam.ll182 @i181_s = external global i181 ; <i181*> [#uses=1]
1159 define void @i181_ls(i181 zeroext %x) nounwind {
1160 store i181 %x, i181* @i181_s
/external/llvm/test/CodeGen/ARM/
Dvmul.ll595 %mul.i181 = mul <8 x i16> undef, %vmovl.i225
596 %add.i182 = add <8 x i16> %mul.i181, %mul.i184
/external/swiftshader/third_party/LLVM/test/Transforms/ArgumentPromotion/
Dpr3085.ll481 br i1 false, label %bb.i.i181, label %bb3.i.i184.preheader
483 bb.i.i181: ; preds = %bb26.i180
486 bb3.i.i184.preheader: ; preds = %bb.i.i181, %bb26.i180
/external/llvm/test/Transforms/ArgumentPromotion/
Dpr3085.ll481 br i1 false, label %bb.i.i181, label %bb3.i.i184.preheader
483 bb.i.i181: ; preds = %bb26.i180
486 bb3.i.i184.preheader: ; preds = %bb.i.i181, %bb26.i180