/external/llvm/test/CodeGen/ARM/ |
D | darwin-tls.ll | 2 …llc -mtriple=thumbv7s-apple-ios7.0 -o - %s -mattr=+no-movt | FileCheck %s --check-prefix=T2-LIT-PIC 4 …ios7.0 -o - %s -mattr=+no-movt -relocation-model=static | FileCheck %s --check-prefix=T2-LIT-STATIC 6 … llc -mtriple=armv7s-apple-ios7.0 -o - %s -mattr=+no-movt | FileCheck %s --check-prefix=ARM-LIT-PIC 8 …os7.0 -o - %s -mattr=+no-movt -relocation-model=static | FileCheck %s --check-prefix=ARM-LIT-STATIC 26 ; T2-LIT-PIC-LABEL: test_local_tls: 27 ; T2-LIT-PIC: ldr r0, [[LOCAL_VAR_ADDR:LCPI[0-9]+_[0-9]+]] 28 ; T2-LIT-PIC: [[PCREL_LOC:LPC[0-9]+_[0-9]+]]: 29 ; T2-LIT-PIC-NEXT: add r0, pc 30 ; T2-LIT-PIC: ldr [[TLV_GET_ADDR:r[0-9]+]], [r0] 31 ; T2-LIT-PIC: blx [[TLV_GET_ADDR]] [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | darwin-tls.ll | 2 …llc -mtriple=thumbv7s-apple-ios7.0 -o - %s -mattr=+no-movt | FileCheck %s --check-prefix=T2-LIT-PIC 4 …ios7.0 -o - %s -mattr=+no-movt -relocation-model=static | FileCheck %s --check-prefix=T2-LIT-STATIC 6 … llc -mtriple=armv7s-apple-ios7.0 -o - %s -mattr=+no-movt | FileCheck %s --check-prefix=ARM-LIT-PIC 8 …os7.0 -o - %s -mattr=+no-movt -relocation-model=static | FileCheck %s --check-prefix=ARM-LIT-STATIC 26 ; T2-LIT-PIC-LABEL: test_local_tls: 27 ; T2-LIT-PIC: ldr r0, [[LOCAL_VAR_ADDR:LCPI[0-9]+_[0-9]+]] 28 ; T2-LIT-PIC: [[PCREL_LOC:LPC[0-9]+_[0-9]+]]: 29 ; T2-LIT-PIC-NEXT: add r0, pc 30 ; T2-LIT-PIC: ldr [[TLV_GET_ADDR:r[0-9]+]], [r0] 31 ; T2-LIT-PIC: blx [[TLV_GET_ADDR]] [all …]
|
/external/skqp/tests/ |
D | SkPEGTest.cpp | 75 const auto match = LIT<'X'>::Match(gTests[i].fInput); in test_LIT() 80 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match(""))); in test_LIT() 81 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match("Fo"))); in test_LIT() 82 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match("FoO"))); in test_LIT() 83 REPORTER_ASSERT(r, (LIT<'F', 'o', 'o'>::Match("Foo"))); in test_LIT() 84 REPORTER_ASSERT(r, (LIT<'F', 'o', 'o'>::Match("Foobar"))); in test_LIT() 158 const auto m = Opt<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_Opt() 165 REPORTER_ASSERT(r, (Seq<LIT<'X'>, EOS>::Match("X"))); in test_Seq() 166 REPORTER_ASSERT(r, !(Seq<LIT<'X'>, EOS>::Match("x"))); in test_Seq() 167 REPORTER_ASSERT(r, !(Seq<LIT<'X'>, EOS>::Match("xX"))); in test_Seq() [all …]
|
/external/skia/tests/ |
D | SkPEGTest.cpp | 75 const auto match = LIT<'X'>::Match(gTests[i].fInput); in test_LIT() 80 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match(""))); in test_LIT() 81 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match("Fo"))); in test_LIT() 82 REPORTER_ASSERT(r, !(LIT<'F', 'o', 'o'>::Match("FoO"))); in test_LIT() 83 REPORTER_ASSERT(r, (LIT<'F', 'o', 'o'>::Match("Foo"))); in test_LIT() 84 REPORTER_ASSERT(r, (LIT<'F', 'o', 'o'>::Match("Foobar"))); in test_LIT() 158 const auto m = Opt<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_Opt() 165 REPORTER_ASSERT(r, (Seq<LIT<'X'>, EOS>::Match("X"))); in test_Seq() 166 REPORTER_ASSERT(r, !(Seq<LIT<'X'>, EOS>::Match("x"))); in test_Seq() 167 REPORTER_ASSERT(r, !(Seq<LIT<'X'>, EOS>::Match("xX"))); in test_Seq() [all …]
|
/external/libcxx/docs/ |
D | TestingLibcxx.rst | 11 libc++ uses LIT to configure and run its tests. The primary way to run the 14 LIT builds and runs the tests. This guide provides information on how to use 15 LIT directly to test libc++. 17 Please see the `Lit Command Guide`_ for more information about LIT. 25 LIT. 34 #. Tell LIT where to find your build configuration. 54 Sometimes you'll want to change the way LIT is running the tests. Custom options 87 LIT Options 95 To use these options you pass them on the LIT command line as --param NAME or 152 Enable or disable the use of LIT's internal shell in ShTests. If the
|
/external/skia/experimental/svg/model/ |
D | SkPEG.h | 216 template <char... Cs> struct LIT; 219 struct LIT<> { 229 struct LIT<C, Cs...> { 237 const auto m = LIT<Cs...>::Match(in + 1);
|
/external/skqp/experimental/svg/model/ |
D | SkPEG.h | 216 template <char... Cs> struct LIT; 219 struct LIT<> { 229 struct LIT<C, Cs...> { 237 const auto m = LIT<Cs...>::Match(in + 1);
|
/external/freetype/src/gzip/ |
D | infcodes.c | 23 LIT, /* o: got literal, waiting for output space */ enumerator 132 c->mode = LIT; in inflate_codes() 211 case LIT: /* o: got literal, waiting for output space */ in inflate_codes()
|
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/ |
D | AlphaInstrFormats.td | 203 bits<8> LIT; 207 let Inst{20-13} = LIT; 223 bits<8> LIT; 228 let Inst{20-13} = LIT;
|
/external/mesa3d/src/gallium/tests/graw/fragment-shader/ |
D | frag-lit.sh | 6 LIT OUT[0], IN[0]
|
/external/libcxx/ |
D | test.mk | 3 python $(LIT) -sv --param android_mode=$(LIT_MODE) $(LIT_ARGS) \
|
/external/mesa3d/src/gallium/tests/graw/vertex-shader/ |
D | vert-lit.sh | 9 LIT OUT[1], IN[1]
|
/external/u-boot/lib/zlib/ |
D | inflate.h | 44 LIT, /* o: waiting for output space to write literal */ enumerator
|
/external/zlib/src/ |
D | inflate.h | 46 LIT, /* o: waiting for output space to write literal */ enumerator
|
/external/python/cpython2/Modules/zlib/ |
D | inflate.h | 46 LIT, /* o: waiting for output space to write literal */ enumerator
|
/external/mksh/src/ |
D | expr.c | 152 es->tok = LIT; in v_evaluate() 186 case LIT: in evalerr() 307 case LIT: in evalexpr() 634 es->tok = LIT; in exprtoken()
|
D | exprtok.h | 110 F2(LIT)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | ctpop16.ll | 230 ; SI-DAG: v_mov_b32_e32 [[LIT:v[0-9]+]], 0x3e7 231 ; VI-DAG: s_movk_i32 [[LIT:s[0-9]+]], 0x3e7 232 ; SI: v_bcnt_u32_b32_e32 [[RESULT:v[0-9]+]], [[VAL]], [[LIT]] 233 ; VI: v_bcnt_u32_b32 [[RESULT:v[0-9]+]], [[VAL]], [[LIT]]
|
D | ctpop.ll | 230 ; GCN-DAG: v_mov_b32_e32 [[LIT:v[0-9]+]], 0x1869f 231 ; SI: v_bcnt_u32_b32_e32 [[RESULT:v[0-9]+]], [[VAL]], [[LIT]] 232 ; VI: v_bcnt_u32_b32 [[RESULT:v[0-9]+]], [[VAL]], [[LIT]]
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | ctpop.ll | 207 ; GCN-DAG: v_mov_b32_e32 [[LIT:v[0-9]+]], 0x1869f 208 ; SI: v_bcnt_u32_b32_e32 [[RESULT:v[0-9]+]], [[VAL]], [[LIT]] 209 ; VI: v_bcnt_u32_b32_e64 [[RESULT:v[0-9]+]], [[VAL]], [[LIT]]
|
/external/clang/test/ |
D | CMakeLists.txt | 89 #LIT ${LLVM_LIT}
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | lit.pod | 40 implementation should see L<"LIT ARCHITECTURE"> 230 their status (generally only for failures). See the L<Output|"LIT OUTPUT"> 233 =head1 LIT INFRASTRUCTURE 341 =head2 LIT EXAMPLE TESTS
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_opcode_tmp.h | 41 OP11(LIT)
|
/external/mesa3d/src/mesa/program/ |
D | program_lexer.l | 203 LIT{sat} { return_opcode( 1, VECTOR_OP, LIT, 3); }
|
/external/virglrenderer/src/gallium/auxiliary/tgsi/ |
D | tgsi_opcode_tmp.h | 61 OP11(LIT)
|