Home
last modified time | relevance | path

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

123456

/third_party/boost/libs/multi_index/test/
Dtest_comparison.cpp110 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/
Dslice_impl.cu72 … 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/
Daes-sparcv9.pl68 $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/
DletDeclarations.js4 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;
DletDeclarations-es5-1.symbols8 let l3, l4, l5 :string, l6;
11 >l5 : Symbol(l5, Decl(letDeclarations-es5-1.ts, 2, 15))
DcapturedLetConstInLoop7_ES6.js114 l5:
122 break l5;
128 continue l5;
479 l5: for (let x = 0, y = 1; x < 1; ++x) {
486 break l5;
492 continue l5;
DletDeclarations.symbols8 let l3, l4, l5 :string, l6;
11 >l5 : Symbol(l5, Decl(letDeclarations.ts, 2, 11))
DletDeclarations-es5.symbols8 let l3, l4, l5 :string, l6;
11 >l5 : Symbol(l5, Decl(letDeclarations-es5.ts, 2, 11))
DletDeclarations-es5-1.js4 let l3, l4, l5 :string, l6; variable
12 var l3, l4, l5, l6; variable
DletDeclarations-es5.js4 let l3, l4, l5 :string, l6; variable
18 var l3, l4, l5, l6; variable
DletDeclarations-invalidContexts.js17 let l5 = 0;
48 let l5 = 0;
DcapturedLetConstInLoop7.js114 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;
DsuperAccess.symbols32 …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))
DletDeclarations-es5-1.types8 let l3, l4, l5 :string, l6;
11 >l5 : string
DletDeclarations.types8 let l3, l4, l5 :string, l6;
11 >l5 : string
DletDeclarations-es5.types8 let l3, l4, l5 :string, l6;
11 >l5 : string
DsuperAccess.js12 …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 …
DletDeclarations-invalidContexts.types36 let l5 = 0;
37 >l5 : any
DsuperAccess.types38 …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/
Dminimum_cpu_kernel.cc153 … 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()
Dmaximum_cpu_kernel.cc153 … 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/
Dlazy_list_tests.cpp42 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/
Dtest_generic_locks.cpp140 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/
DcapturedLetConstInLoop7.ts113 l5:
121 break l5;
127 continue l5;
DcapturedLetConstInLoop7_ES6.ts114 l5:
122 break l5;
128 continue l5;

123456