Home
last modified time | relevance | path

Searched refs:LG (Results 1 – 25 of 108) sorted by relevance

12345

/external/llvm-project/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
Dmutex.fail.cpp21 template <class LG>
22 void test_conversion(LG) {} in test_conversion() argument
30 using LG = std::scoped_lock<>; in main() typedef
31 LG lg = {}; // expected-error{{chosen constructor is explicit in copy-initialization}} in main()
32 test_conversion<LG>({}); // expected-error{{no matching function for call}} in main()
36 using LG = std::scoped_lock<M>; in main() typedef
37 LG lg = {m0}; // expected-error{{chosen constructor is explicit in copy-initialization}} in main()
38 test_conversion<LG>({n0}); // expected-error{{no matching function for call}} in main()
42 using LG = std::scoped_lock<M, M>; in main() typedef
43 LG lg = {m0, m1}; // expected-error{{chosen constructor is explicit in copy-initialization}} in main()
[all …]
Dcopy.fail.cpp26 using LG = std::scoped_lock<>; in main() typedef
27 const LG Orig; in main()
28 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
31 using LG = std::scoped_lock<M>; in main() typedef
32 const LG Orig(m0); in main()
33 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
36 using LG = std::scoped_lock<M, M>; in main() typedef
37 const LG Orig(m0, m1); in main()
38 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
41 using LG = std::scoped_lock<M, M, M>; in main() typedef
[all …]
Dassign.fail.cpp27 using LG = std::scoped_lock<>; in main() typedef
28 LG lg1, lg2; in main()
32 using LG = std::scoped_lock<M>; in main() typedef
33 LG lg1(m0); in main()
34 LG lg2(om0); in main()
38 using LG = std::scoped_lock<M, M>; in main() typedef
39 LG lg1(m0, m1); in main()
40 LG lg2(om0, om1); in main()
44 using LG = std::scoped_lock<M, M, M>; in main() typedef
45 LG lg1(m0, m1, m2); in main()
[all …]
Dmutex.pass.cpp67 using LG = std::scoped_lock<>; in main() typedef
68 LG lg; in main()
71 using LG = std::scoped_lock<TestMutex>; in main() typedef
74 LG lg(m1); in main()
80 using LG = std::scoped_lock<TestMutex, TestMutex>; in main() typedef
83 LG lg(m1, m2); in main()
89 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>; in main() typedef
92 LG lg(m1, m2, m3); in main()
100 using LG = std::scoped_lock<MT>; in main() typedef
104 LG lg(m1); in main()
[all …]
Dadopt_lock.pass.cpp37 using LG = std::scoped_lock<>; in main() typedef
38 LG lg(std::adopt_lock); in main()
42 using LG = std::scoped_lock<TestMutex>; in main() typedef
45 LG lg(std::adopt_lock, m1); in main()
52 using LG = std::scoped_lock<TestMutex, TestMutex>; in main() typedef
55 LG lg(std::adopt_lock, m1, m2); in main()
62 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>; in main() typedef
65 LG lg(std::adopt_lock, m1, m2, m3); in main()
Dtypes.pass.cpp28 template <class LG>
29 auto test_typedef(int) -> typename LG::mutex_type;
31 template <class LG>
34 template <class LG>
36 return !std::is_same<decltype(test_typedef<LG>(0)), NAT>::value; in has_mutex_type()
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/
Dmutex.fail.cpp22 template <class LG>
23 void test_conversion(LG) {} in test_conversion() argument
31 using LG = std::scoped_lock<>; in main() typedef
32 LG lg = {}; // expected-error{{chosen constructor is explicit in copy-initialization}} in main()
33 test_conversion<LG>({}); // expected-error{{no matching function for call}} in main()
37 using LG = std::scoped_lock<M>; in main() typedef
38 LG lg = {m0}; // expected-error{{chosen constructor is explicit in copy-initialization}} in main()
39 test_conversion<LG>({n0}); // expected-error{{no matching function for call}} in main()
43 using LG = std::scoped_lock<M, M>; in main() typedef
44 LG lg = {m0, m1}; // expected-error{{chosen constructor is explicit in copy-initialization}} in main()
[all …]
Dcopy.fail.cpp27 using LG = std::scoped_lock<>; in main() typedef
28 const LG Orig; in main()
29 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
32 using LG = std::scoped_lock<M>; in main() typedef
33 const LG Orig(m0); in main()
34 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
37 using LG = std::scoped_lock<M, M>; in main() typedef
38 const LG Orig(m0, m1); in main()
39 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}} in main()
42 using LG = std::scoped_lock<M, M, M>; in main() typedef
[all …]
Dassign.fail.cpp28 using LG = std::scoped_lock<>; in main() typedef
29 LG lg1, lg2; in main()
33 using LG = std::scoped_lock<M>; in main() typedef
34 LG lg1(m0); in main()
35 LG lg2(om0); in main()
39 using LG = std::scoped_lock<M, M>; in main() typedef
40 LG lg1(m0, m1); in main()
41 LG lg2(om0, om1); in main()
45 using LG = std::scoped_lock<M, M, M>; in main() typedef
46 LG lg1(m0, m1, m2); in main()
[all …]
Dmutex.pass.cpp68 using LG = std::scoped_lock<>; in main() typedef
69 LG lg; in main()
72 using LG = std::scoped_lock<TestMutex>; in main() typedef
75 LG lg(m1); in main()
81 using LG = std::scoped_lock<TestMutex, TestMutex>; in main() typedef
84 LG lg(m1, m2); in main()
90 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>; in main() typedef
93 LG lg(m1, m2, m3); in main()
101 using LG = std::scoped_lock<MT>; in main() typedef
105 LG lg(m1); in main()
[all …]
Dadopt_lock.pass.cpp38 using LG = std::scoped_lock<>; in main() typedef
39 LG lg(std::adopt_lock); in main()
43 using LG = std::scoped_lock<TestMutex>; in main() typedef
46 LG lg(std::adopt_lock, m1); in main()
53 using LG = std::scoped_lock<TestMutex, TestMutex>; in main() typedef
56 LG lg(std::adopt_lock, m1, m2); in main()
63 using LG = std::scoped_lock<TestMutex, TestMutex, TestMutex>; in main() typedef
66 LG lg(std::adopt_lock, m1, m2, m3); in main()
Dtypes.pass.cpp29 template <class LG>
30 auto test_typedef(int) -> typename LG::mutex_type;
32 template <class LG>
35 template <class LG>
37 return !std::is_same<decltype(test_typedef<LG>(0)), NAT>::value; in has_mutex_type()
/external/llvm-project/llvm/test/CodeGen/SystemZ/
Dint-cmp-56.mir58 %1:gr64bit = LG %0, 0, $noreg
59 %2:gr64bit = LG %0, 16, $noreg
60 %3:gr64bit = LG %0, 32, $noreg
61 %4:gr64bit = LG %0, 48, $noreg
62 %5:gr64bit = LG %0, 64, $noreg
63 %6:gr64bit = LG %0, 80, $noreg
64 %7:gr64bit = LG %0, 96, $noreg
65 %8:gr64bit = LG %0, 112, $noreg
66 %9:gr64bit = LG %0, 128, $noreg
135 %1:gr64bit = LG %0, 0, $noreg
[all …]
Dint-move-03.ll5 ; Check LG with no displacement.
14 ; Check the high end of the aligned LG range.
36 ; Check the high end of the negative aligned LG range.
46 ; Check the low end of the LG range.
68 ; Check that LG allows an index.
Dclear-liverange-spillreg.mir295 %65 = LG undef %66, 0, $noreg :: (load 8)
305 %76 = LG %65, 0, $noreg :: (load 8)
307 %77 = LG undef %78, 0, $noreg :: (load 8)
321 %89 = LG %65, 16, %88 :: (load 8)
473 %0 = LG undef %22, 0, $noreg :: (load 8)
Dsubregliveness-06.mir208 %31:addr64bit = LG killed %21, 0, $noreg :: (load 8 from %ir.tmp15)
216 %7:addr64bit = LG %1, 0, $noreg :: (dereferenceable load 8 from %ir.tmp5)
247 %53:gr64bit = LG $noreg, 0, $noreg :: (load 8 from %ir.tmp36)
248 %54:addr64bit = LG killed %7, 0, $noreg :: (load 8 from %ir.tmp27)
/external/autotest/client/profilers/powertop/src/po/
DMakefile21 uptrans: $(LG).po
23 $(LG).po: powertop.pot
24 ifdef LG
/external/llvm/test/CodeGen/SystemZ/
Dint-move-03.ll5 ; Check LG with no displacement.
14 ; Check the high end of the aligned LG range.
36 ; Check the high end of the negative aligned LG range.
46 ; Check the low end of the LG range.
68 ; Check that LG allows an index.
/external/lua/src/
Dlstate.c44 typedef struct LG { struct
47 } LG; argument
316 lua_assert(gettotalbytes(g) == sizeof(LG)); in close_state()
317 (*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0); /* free main block */ in close_state()
389 LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, sizeof(LG))); in lua_newstate()
422 g->totalbytes = sizeof(LG); in lua_newstate()
/external/autotest/client/profilers/powertop/src/
DMakefile40 @(cd po/ && env LG=$(LG) $(MAKE) $@)
/external/libxml2/result/HTML/
Dwired.html.err161 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
164 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
167 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
170 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
173 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
176 <option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&O
179 option value="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs
182 lue="http://www.hotbot.com/?SM=MC&DV=0&LG=any&RD=RG&DC=10&DE=2&_v=2&OPs=MDRTP&MT
/external/llvm-project/openmp/libomptarget/src/
DMemoryManager.cpp130 std::lock_guard<std::mutex> LG(MapTableLock); in freeAndAllocate() local
189 std::lock_guard<std::mutex> LG(FreeListLocks[B]); in allocate() local
/external/openscreen/test/data/cast/receiver/channel/
Ddevice_key.pem14 YrOvXQSYZd+LG/PSCKh/G5mbvVXGAp6h4NYbWtms5FI/lv+OsDmUJaTWSvxmI7FV
/external/scapy/scapy/contrib/
Digmp.uts27 = Build IGMP - LG
/external/angle/
DAUTHORS33 LG Electronics, Inc.

12345