/third_party/boost/libs/multi_index/test/ |
D | test_comparison.cpp | 110 lookup_vector<long>::type l5; in test_comparison() local 135 l5.push_back(long(3)); in test_comparison() 136 l5.push_back(long(4)); in test_comparison() 137 l5.push_back(long(5)); in test_comparison() 138 l5.push_back(long(1)); in test_comparison() 148 BOOST_TEST(l3!=l5&&l5<l3&&l3>l5); in test_comparison() 150 get<1>(l3)!=get<1>(l5)&&get<1>(l3)<get<1>(l5)&&get<1>(l5)>get<1>(l3)); in test_comparison()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | slice_impl.cu | 72 … const size_t l1, const size_t l2, const size_t l3, const size_t l4, const size_t l5, in Slice5D() argument 75 for (size_t pos = blockIdx.x * blockDim.x + threadIdx.x; pos < l1 * l2 * l3 * l4 * l5; in Slice5D() 77 size_t i = pos / (l2 * l3 * l4 * l5) % l1; in Slice5D() 78 size_t j = pos / (l3 * l4 * l5) % l2; in Slice5D() 79 size_t k = pos / (l4 * l5) % l3; in Slice5D() 80 size_t o = pos / l5 % l4; in Slice5D() 81 size_t q = pos % l5; in Slice5D() 92 … const size_t l5, const size_t l6, const size_t d1, const size_t d2, const size_t d3, in Slice6D() argument 94 for (size_t pos = blockIdx.x * blockDim.x + threadIdx.x; pos < l1 * l2 * l3 * l4 * l5 * l6; in Slice6D() 96 size_t i = pos / (l2 * l3 * l4 * l5 * l6) % l1; in Slice6D() [all …]
|
/third_party/openssl/crypto/aes/asm/ |
D | aes-sparcv9.pl | 68 $t1="%l5"; 560 ldub [%i0+5],%l5 564 sll %l5,16,%l5 569 or %l5,%l4,%l4 582 ldub [%i0+13],%l5 586 sll %l5,16,%l5 591 or %l5,%l4,%l4 609 srl %o1,16,%l5 612 stb %l5,[%i1+5] 625 srl %o3,16,%l5 [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | letDeclarations.js | 4 let l3, l4, l5 :string, l6; variable 18 let l3, l4, l5, l6; variable 29 declare let l3: any, l4: any, l5: string, l6: any;
|
D | letDeclarations-es5-1.symbols | 8 let l3, l4, l5 :string, l6; 11 >l5 : Symbol(l5, Decl(letDeclarations-es5-1.ts, 2, 15))
|
D | capturedLetConstInLoop7_ES6.js | 114 l5: 122 break l5; 128 continue l5; 479 l5: for (let x = 0, y = 1; x < 1; ++x) { 486 break l5; 492 continue l5;
|
D | letDeclarations.symbols | 8 let l3, l4, l5 :string, l6; 11 >l5 : Symbol(l5, Decl(letDeclarations.ts, 2, 11))
|
D | letDeclarations-es5.symbols | 8 let l3, l4, l5 :string, l6; 11 >l5 : Symbol(l5, Decl(letDeclarations-es5.ts, 2, 11))
|
D | letDeclarations-es5-1.js | 4 let l3, l4, l5 :string, l6; variable 12 var l3, l4, l5, l6; variable
|
D | letDeclarations-es5.js | 4 let l3, l4, l5 :string, l6; variable 18 var l3, l4, l5, l6; variable
|
D | letDeclarations-invalidContexts.js | 17 let l5 = 0; 48 let l5 = 0;
|
D | capturedLetConstInLoop7.js | 114 l5: 122 break l5; 128 continue l5; 550 l5: for (var x = 0, y = 1; x < 1; ++x) { 555 case "break-l5": break l5; 556 case "continue-l5": continue l5;
|
D | superAccess.symbols | 32 …var l5 = super.f(); // Expected => Error: Only public instance methods of the base class are acc… 33 >l5 : Symbol(l5, Decl(superAccess.ts, 10, 11))
|
D | letDeclarations-es5-1.types | 8 let l3, l4, l5 :string, l6; 11 >l5 : string
|
D | letDeclarations.types | 8 let l3, l4, l5 :string, l6; 11 >l5 : string
|
D | letDeclarations-es5.types | 8 let l3, l4, l5 :string, l6; 11 >l5 : string
|
D | superAccess.js | 12 …var l5 = super.f(); // Expected => Error: Only public instance methods of the base class are acc… 48 …var l5 = _super.prototype.f.call(this); // Expected => Error: Only public instance methods of the …
|
D | letDeclarations-invalidContexts.types | 36 let l5 = 0; 37 >l5 : any
|
D | superAccess.types | 38 …var l5 = super.f(); // Expected => Error: Only public instance methods of the base class are acc… 39 >l5 : number
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ |
D | minimum_cpu_kernel.cc | 153 … const size_t l4, const size_t l5, const size_t l6, const size_t r0, in BroadcastArithKernel() argument 167 size_t l_index = Index(i, l0) * l1 * l2 * l3 * l4 * l5 * l6; in BroadcastArithKernel() 168 l_index += Index(j, l1) * l2 * l3 * l4 * l5 * l6; in BroadcastArithKernel() 169 l_index += Index(k, l2) * l3 * l4 * l5 * l6; in BroadcastArithKernel() 170 l_index += Index(l, l3) * l4 * l5 * l6; in BroadcastArithKernel() 171 l_index += Index(m, l4) * l5 * l6; in BroadcastArithKernel() 172 l_index += Index(n, l5) * l6; in BroadcastArithKernel()
|
D | maximum_cpu_kernel.cc | 153 … const size_t l4, const size_t l5, const size_t l6, const size_t r0, in BroadcastArithKernel() argument 167 size_t l_index = Index(i, l0) * l1 * l2 * l3 * l4 * l5 * l6; in BroadcastArithKernel() 168 l_index += Index(j, l1) * l2 * l3 * l4 * l5 * l6; in BroadcastArithKernel() 169 l_index += Index(k, l2) * l3 * l4 * l5 * l6; in BroadcastArithKernel() 170 l_index += Index(l, l3) * l4 * l5 * l6; in BroadcastArithKernel() 171 l_index += Index(m, l4) * l5 * l6; in BroadcastArithKernel() 172 l_index += Index(n, l5) * l6; in BroadcastArithKernel()
|
/third_party/boost/libs/phoenix/test/function/ |
D | lazy_list_tests.cpp | 42 list<int> l5 = cons(5,NIL); in main() local 57 BOOST_TEST(head(l5)() == 5); in main() 58 BOOST_TEST(head(arg1)(l5) == 5); in main()
|
/third_party/boost/libs/thread/test/ |
D | test_generic_locks.cpp | 140 l5(m5,boost::defer_lock); in BOOST_AUTO_TEST_CASE() local 146 BOOST_CHECK(!l5.owns_lock()); in BOOST_AUTO_TEST_CASE() 148 boost::lock(l1,l2,l3,l4,l5); in BOOST_AUTO_TEST_CASE() 154 BOOST_CHECK(l5.owns_lock()); in BOOST_AUTO_TEST_CASE() 168 boost::lock_guard<boost::mutex> l5(*m5); in lock_five_mutexes_slowly() local 544 l5(mutexes[4],boost::defer_lock); in BOOST_AUTO_TEST_CASE() local 546 int const res=boost::try_lock(l1,l2,l3,l4,l5); in BOOST_AUTO_TEST_CASE() 566 BOOST_CHECK(l5.owns_lock()); in BOOST_AUTO_TEST_CASE() 574 BOOST_CHECK(!l5.owns_lock()); in BOOST_AUTO_TEST_CASE()
|
/third_party/typescript/tests/cases/compiler/ |
D | capturedLetConstInLoop7.ts | 113 l5: 121 break l5; 127 continue l5;
|
D | capturedLetConstInLoop7_ES6.ts | 114 l5: 122 break l5; 128 continue l5;
|