/external/llvm/test/MC/Sparc/ |
D | sparc-v9-traps.s | 3 ! CHECK: ta %icc, %i5 ! encoding: [0x91,0xd0,0x00,0x1d] 6 ! CHECK: ta %icc, %i5 + 41 ! encoding: [0x91,0xd7,0x60,0x29] 7 ta %icc, %i5 10 ta %icc, %i5 + 41 12 ! CHECK: tn %icc, %i5 ! encoding: [0x81,0xd0,0x00,0x1d] 15 ! CHECK: tn %icc, %i5 + 41 ! encoding: [0x81,0xd7,0x60,0x29] 16 tn %icc, %i5 19 tn %icc, %i5 + 41 21 ! CHECK: tne %icc, %i5 ! encoding: [0x93,0xd0,0x00,0x1d] 23 ! CHECK: tne %icc, %i5 ! encoding: [0x93,0xd0,0x00,0x1d] [all …]
|
D | sparc-traps.s | 3 ! CHECK: ta %i5 ! encoding: [0x91,0xd0,0x00,0x1d] 6 ! CHECK: ta %i5 + 41 ! encoding: [0x91,0xd7,0x60,0x29] 7 ta %i5 10 ta %i5 + 41 12 ! CHECK: tn %i5 ! encoding: [0x81,0xd0,0x00,0x1d] 15 ! CHECK: tn %i5 + 41 ! encoding: [0x81,0xd7,0x60,0x29] 16 tn %i5 19 tn %i5 + 41 21 ! CHECK: tne %i5 ! encoding: [0x93,0xd0,0x00,0x1d] 23 ! CHECK: tne %i5 ! encoding: [0x93,0xd0,0x00,0x1d] [all …]
|
D | sparcv9-instructions.s | 100 ! V8-NEXT: ldx [%g2 + %i5],%fsr 101 ! V9: ldx [%g2+%i5], %fsr ! encoding: [0xc3,0x08,0x80,0x1d] 102 ldx [%g2 + %i5],%fsr 110 ! V8-NEXT: stx %fsr,[%g2 + %i5] 111 ! V9: stx %fsr, [%g2+%i5] ! encoding: [0xc3,0x28,0x80,0x1d] 112 stx %fsr,[%g2 + %i5] 237 ! V8-NEXT: rdpr %tpc,%i5 238 ! V9: rdpr %tpc, %i5 ! encoding: [0xbb,0x50,0x00,0x00] 239 rdpr %tpc,%i5 241 ! V8-NEXT: rdpr %tnpc,%i5 [all …]
|
D | sparc-nop-data.s | 8 xor %i5, %i5, %i5 10 xor %i5, %i5, %i5
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Sparc/ |
D | sparc-v9-traps.s | 3 ! CHECK: ta %icc, %i5 ! encoding: [0x91,0xd0,0x00,0x1d] 6 ! CHECK: ta %icc, %i5 + 41 ! encoding: [0x91,0xd7,0x60,0x29] 7 ta %icc, %i5 10 ta %icc, %i5 + 41 12 ! CHECK: tn %icc, %i5 ! encoding: [0x81,0xd0,0x00,0x1d] 15 ! CHECK: tn %icc, %i5 + 41 ! encoding: [0x81,0xd7,0x60,0x29] 16 tn %icc, %i5 19 tn %icc, %i5 + 41 21 ! CHECK: tne %icc, %i5 ! encoding: [0x93,0xd0,0x00,0x1d] 23 ! CHECK: tne %icc, %i5 ! encoding: [0x93,0xd0,0x00,0x1d] [all …]
|
D | sparc-traps.s | 3 ! CHECK: ta %i5 ! encoding: [0x91,0xd0,0x00,0x1d] 6 ! CHECK: ta %i5 + 41 ! encoding: [0x91,0xd7,0x60,0x29] 7 ta %i5 10 ta %i5 + 41 12 ! CHECK: tn %i5 ! encoding: [0x81,0xd0,0x00,0x1d] 15 ! CHECK: tn %i5 + 41 ! encoding: [0x81,0xd7,0x60,0x29] 16 tn %i5 19 tn %i5 + 41 21 ! CHECK: tne %i5 ! encoding: [0x93,0xd0,0x00,0x1d] 23 ! CHECK: tne %i5 ! encoding: [0x93,0xd0,0x00,0x1d] [all …]
|
D | sparcv9-instructions.s | 100 ! V8-NEXT: ldx [%g2 + %i5],%fsr 101 ! V9: ldx [%g2+%i5], %fsr ! encoding: [0xc3,0x08,0x80,0x1d] 102 ldx [%g2 + %i5],%fsr 110 ! V8-NEXT: stx %fsr,[%g2 + %i5] 111 ! V9: stx %fsr, [%g2+%i5] ! encoding: [0xc3,0x28,0x80,0x1d] 112 stx %fsr,[%g2 + %i5] 237 ! V8-NEXT: rdpr %tpc,%i5 238 ! V9: rdpr %tpc, %i5 ! encoding: [0xbb,0x50,0x00,0x00] 239 rdpr %tpc,%i5 241 ! V8-NEXT: rdpr %tnpc,%i5 [all …]
|
D | sparc-nop-data.s | 8 xor %i5, %i5, %i5 10 xor %i5, %i5, %i5
|
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op==/ |
D | equal.pass.cpp | 31 std::istreambuf_iterator<char> i5(nullptr); in main() local 37 assert(!(i1 == i5)); in main() 43 assert(!(i2 == i5)); in main() 49 assert( (i3 == i5)); in main() 55 assert( (i4 == i5)); in main() 57 assert(!(i5 == i1)); in main() 58 assert(!(i5 == i2)); in main() 59 assert( (i5 == i3)); in main() 60 assert( (i5 == i4)); in main() 61 assert( (i5 == i5)); in main() [all …]
|
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_op!=/ |
D | not_equal.pass.cpp | 31 std::istreambuf_iterator<char> i5(nullptr); in main() local 37 assert( (i1 != i5)); in main() 43 assert( (i2 != i5)); in main() 49 assert(!(i3 != i5)); in main() 55 assert(!(i4 != i5)); in main() 57 assert( (i5 != i1)); in main() 58 assert( (i5 != i2)); in main() 59 assert(!(i5 != i3)); in main() 60 assert(!(i5 != i4)); in main() 61 assert(!(i5 != i5)); in main() [all …]
|
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator_equal/ |
D | equal.pass.cpp | 29 std::istreambuf_iterator<char> i5(nullptr); in main() local 35 assert(!i1.equal(i5)); in main() 41 assert(!i2.equal(i5)); in main() 47 assert( i3.equal(i5)); in main() 53 assert( i4.equal(i5)); in main() 55 assert(!i5.equal(i1)); in main() 56 assert(!i5.equal(i2)); in main() 57 assert( i5.equal(i3)); in main() 58 assert( i5.equal(i4)); in main() 59 assert( i5.equal(i5)); in main() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | assoc-cast-assoc.ll | 4 define i5 @XorZextXor(i3 %a) { 6 ; CHECK-NEXT: [[CAST:%.*]] = zext i3 %a to i5 7 ; CHECK-NEXT: [[OP2:%.*]] = xor i5 [[CAST]], 15 8 ; CHECK-NEXT: ret i5 [[OP2]] 11 %cast = zext i3 %op1 to i5 12 %op2 = xor i5 %cast, 12 13 ret i5 %op2 28 define i5 @OrZextOr(i3 %a) { 30 ; CHECK-NEXT: [[CAST:%.*]] = zext i3 %a to i5 31 ; CHECK-NEXT: [[OP2:%.*]] = or i5 [[CAST]], 11 [all …]
|
/external/llvm/test/MC/Disassembler/Sparc/ |
D | sparc-v9.txt | 6 # CHECK: ta %icc, %i5 15 # CHECK: ta %icc, %i5 + 41 18 # CHECK: tn %icc, %i5 27 # CHECK: tg %icc, %i5 + 41 30 # CHECK: tle %icc, %i5 39 # CHECK: tgu %icc, %i5 + 41 42 # CHECK: tleu %icc, %i5 51 # CHECK: tpos %icc, %i5 + 41 54 # CHECK: tneg %icc, %i5 63 # CHECK: ta %xcc, %i5 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Disassembler/Sparc/ |
D | sparc-v9.txt | 6 # CHECK: ta %icc, %i5 15 # CHECK: ta %icc, %i5 + 41 18 # CHECK: tn %icc, %i5 27 # CHECK: tg %icc, %i5 + 41 30 # CHECK: tle %icc, %i5 39 # CHECK: tgu %icc, %i5 + 41 42 # CHECK: tleu %icc, %i5 51 # CHECK: tpos %icc, %i5 + 41 54 # CHECK: tneg %icc, %i5 63 # CHECK: ta %xcc, %i5 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/IndVarSimplify/ |
D | loop_evaluate_5.ll | 7 define i32 @testcase(i5 zeroext %k) nounwind readnone { 18 %k_01 = phi i5 [ %indvar_next1, %bb2 ], [ 0, %bb.nph ] ; <i5> [#uses=2] 19 %tmp2 = zext i5 %k_01 to i32 ; <i32> [#uses=1] 21 %indvar_next1 = add i5 %k_01, 1 ; <i5> [#uses=2] 25 %phitmp = icmp eq i5 %indvar_next1, -16 ; <i1> [#uses=1]
|
D | iterationCount_zext_or_trunc.ll | 7 define i32 @testcase(i5 zeroext %k) { 13 %indvar_next1 = add i5 %k_0, 1 ; <i5> [#uses=1] 17 %k_0 = phi i5 [ 0, %entry ], [ %indvar_next1, %bb ] ; <i5> [#uses=2] 19 %tmp2 = zext i5 %k_0 to i32 ; <i32> [#uses=1]
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | loop_evaluate_5.ll | 7 define i32 @testcase(i5 zeroext %k) nounwind readnone { 16 %k_01 = phi i5 [ %indvar_next1, %bb2 ], [ 0, %bb.nph ] ; <i5> [#uses=2] 17 %tmp2 = zext i5 %k_01 to i32 ; <i32> [#uses=1] 19 %indvar_next1 = add i5 %k_01, 1 ; <i5> [#uses=2] 23 %phitmp = icmp eq i5 %indvar_next1, -16 ; <i1> [#uses=1]
|
D | iterationCount_zext_or_trunc.ll | 7 define i32 @testcase(i5 zeroext %k) { 13 %indvar_next1 = add i5 %k_0, 1 ; <i5> [#uses=1] 17 %k_0 = phi i5 [ 0, %entry ], [ %indvar_next1, %bb ] ; <i5> [#uses=2] 19 %tmp2 = zext i5 %k_0 to i32 ; <i32> [#uses=1]
|
/external/swiftshader/third_party/LLVM/test/Transforms/IndVarSimplify/ |
D | loop_evaluate_5.ll | 7 define i32 @testcase(i5 zeroext %k) nounwind readnone { 16 %k_01 = phi i5 [ %indvar_next1, %bb2 ], [ 0, %bb.nph ] ; <i5> [#uses=2] 17 %tmp2 = zext i5 %k_01 to i32 ; <i32> [#uses=1] 19 %indvar_next1 = add i5 %k_01, 1 ; <i5> [#uses=2] 23 %phitmp = icmp eq i5 %indvar_next1, -16 ; <i1> [#uses=1]
|
D | iterationCount_zext_or_trunc.ll | 7 define i32 @testcase(i5 zeroext %k) { 13 %indvar_next1 = add i5 %k_0, 1 ; <i5> [#uses=1] 17 %k_0 = phi i5 [ 0, %entry ], [ %indvar_next1, %bb ] ; <i5> [#uses=2] 19 %tmp2 = zext i5 %k_0 to i32 ; <i32> [#uses=1]
|
/external/deqp-deps/glslang/Test/ |
D | hlsl.int.dot.frag | 6 int4 i5 = 5; 12 i5 = dot(i5, i5); 13 return i + i2.xxxx + i3.xyxy + i4.xyzx + i5;
|
/external/tensorflow/tensorflow/core/util/ |
D | tensor_slice_util.h | 70 for (Index i5 = 0; i5 < len[5]; i5++) { 74 d_start[3] + i3, d_start[4] + i4, d_start[5] + i5, 77 s_start[3] + i3, s_start[4] + i4, s_start[5] + i5, 107 for (Index i5 = 0; i5 < len[5]; i5++) { 111 d_start[3] + i3, d_start[4] + i4, d_start[5] + i5, 115 s_start[3] + i3, s_start[4] + i4, s_start[5] + i5,
|
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/istream.iterator.ops/ |
D | equal.pass.cpp | 34 std::istream_iterator<int> i5; in main() local 39 assert(i1 != i5); in main() 44 assert(i2 != i5); in main() 48 assert(i3 != i5); in main() 51 assert(i4 == i5); in main()
|
/external/clang/test/CodeGen/ |
D | arm64-arguments.c | 297 int f38_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, in f38_stack() argument 308 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s; in f38_stack() 350 int f39_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, in f39_stack() argument 361 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s; in f39_stack() 405 int f40_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, in f40_stack() argument 416 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s; in f40_stack() 460 int f41_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, in f41_stack() argument 471 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s; in f41_stack() 517 int f42_stack(int i, int i2, int i3, int i4, int i5, int i6, int i7, int i8, in f42_stack() argument 524 return s1.i + s2.i + i + i2 + i3 + i4 + i5 + i6 + i7 + i8 + i9 + s1.s + s2.s; in f42_stack() [all …]
|
/external/mesa3d/src/mesa/sparc/ |
D | sparc_clip.S | 80 LDPTR [%i1 + V4F_START], %i5 132 st %g0, [%i5 + 0x00] ! LSU 135 st %g0, [%i5 + 0x04] ! LSU 137 st %g0, [%i5 + 0x08] ! LSU 139 st %f4, [%i5 + 0x0c] ! LSU Group 144 st %f0, [%i5 + 0x00] ! LSU Group 146 st %f1, [%i5 + 0x04] ! LSU Group 148 st %f2, [%i5 + 0x08] ! LSU Group 149 st %f8, [%i5 + 0x0c] ! LSU Group 150 3: add %i5, 0x10, %i5 ! IEU1
|