Home
last modified time | relevance | path

Searched refs:l3 (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/external/llvm-project/llvm/test/Transforms/LoopUnroll/
Dconvergent.ll11 br label %l3
13 l3:
14 %x.0 = phi i32 [ 0, %entry ], [ %inc, %l3 ]
22 br i1 %exitcond, label %exit, label %l3
36 br label %l3
38 l3:
39 %x.0 = phi i32 [ 0, %entry ], [ %inc, %l3 ]
48 br i1 %exitcond, label %exit, label %l3
61 br label %l3, !llvm.loop !0
63 l3:
[all …]
/external/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/
Dlock.pass.cpp396 L0 l3; in main() local
397 std::lock(l0, l1, l2, l3); in main()
401 assert(l3.locked()); in main()
407 L1 l3; in main() local
408 std::lock(l0, l1, l2, l3); in main()
412 assert(l3.locked()); in main()
418 L0 l3; in main() local
419 std::lock(l0, l1, l2, l3); in main()
423 assert(l3.locked()); in main()
429 L0 l3; in main() local
[all …]
Dtry_lock.pass.cpp474 L0 l3; in main() local
475 assert(std::try_lock(l0, l1, l2, l3) == -1); in main()
479 assert(l3.locked()); in main()
485 L0 l3; in main() local
486 assert(std::try_lock(l0, l1, l2, l3) == 0); in main()
490 assert(!l3.locked()); in main()
496 L0 l3; in main() local
497 assert(std::try_lock(l0, l1, l2, l3) == 1); in main()
501 assert(!l3.locked()); in main()
507 L0 l3; in main() local
[all …]
/external/llvm-project/libcxx/test/std/thread/thread.mutex/thread.lock.algorithm/
Dlock.pass.cpp395 L0 l3; in main() local
396 std::lock(l0, l1, l2, l3); in main()
400 assert(l3.locked()); in main()
406 L1 l3; in main() local
407 std::lock(l0, l1, l2, l3); in main()
411 assert(l3.locked()); in main()
417 L0 l3; in main() local
418 std::lock(l0, l1, l2, l3); in main()
422 assert(l3.locked()); in main()
428 L0 l3; in main() local
[all …]
Dtry_lock.pass.cpp473 L0 l3; in main() local
474 assert(std::try_lock(l0, l1, l2, l3) == -1); in main()
478 assert(l3.locked()); in main()
484 L0 l3; in main() local
485 assert(std::try_lock(l0, l1, l2, l3) == 0); in main()
489 assert(!l3.locked()); in main()
495 L0 l3; in main() local
496 assert(std::try_lock(l0, l1, l2, l3) == 1); in main()
500 assert(!l3.locked()); in main()
506 L0 l3; in main() local
[all …]
/external/llvm-project/flang/test/Semantics/
Dallocate07.f9021 type, extends(WithParamExtent) :: WithParamExtent2(k3, l3)
23 integer, len :: l3 component
36 type(WithParamExtent2(k1=4, l1=:, k2=5, l2=:, l3=8 )), pointer :: extended2
48 allocate(WithParamExtent2(k1=4, l1=5, k2=5, l2=6, l3=8 ):: extended2)
49 allocate(WithParamExtent2(k1=4, l1=2, k2=5, l2=6, k3=5, l3=8 ):: param_ca_4_2)
53 allocate(WithParamExtent2(k1=1, l1=2, k2=5, l2=6, k3=5, l3=8 ):: param_defaulted)
54 allocate(WithParamExtent2(k1=1, l1=2, k2=5, l2=6, k3=5, l3=8 ):: whatever)
80 allocate(WithParamExtent2(k1=5, l1=5, k2=5, l2=6, l3=8 ):: extended2)
82 allocate(WithParamExtent2(k1=5, l1=2, k2=5, l2=6, k3=5, l3=8 ):: param_ca_4_2)
84 allocate(WithParamExtent2(k1=4, l1=5, k2=5, l2=6, k3=5, l3=8 ):: extended2)
[all …]
Dallocate09.f9021 type, extends(WithParamExtent) :: WithParamExtent2(k3, l3)
23 integer, len :: l3 component
36 type(WithParamExtent2(k1=4, l1=5, k2=5, l2=6, l3=8 )) src_c_4_5_5_6_8_8
37 class(WithParamExtent2(k1=4, l1=2, k2=5, l2=6, k3=5, l3=8)), &
39 class(WithParamExtent2(k2=5, l2=6, k3=5, l3=8)), &
41 type(WithParamExtent2(k1=5, l1=5, k2=5, l2=6, l3=8 )) src_c_5_5_5_6_8_8
42 type(WithParamExtent2(k1=5, l1=2, k2=5, l2=6, k3=5, l3=8)) src_c_5_2_5_6_5_8
56 type(WithParamExtent2(k1=4, l1=:, k2=5, l2=:, l3=8 )), pointer :: extended2
119 allocate(extended2, source=WithParamExtent2(k1=4, l1=5, k2=5, l2=6, k3=5, l3=8)(x=5))
/external/python/cpython3/Lib/lib2to3/tests/
Dtest_pytree.py60 l3 = pytree.Leaf(101, "foo")
62 self.assertNotEqual(l1, l3)
111 l3 = pytree.Leaf(100, "bar", prefix="c")
112 n2 = pytree.Node(1000, [n1, l3])
114 self.assertEqual(n1.get_suffix(), l3.prefix)
115 self.assertEqual(l3.get_suffix(), "")
131 l3 = pytree.Leaf(100, "bar")
132 n3 = pytree.Node(1000, [l3])
138 l3 = pytree.Leaf(100, "bar")
139 n1 = pytree.Node(1000, [l1, l2, l3])
[all …]
/external/eigen/bench/
Dcheck_cache_queries.cpp22 int l1, l2, l3; in main() local
23 internal::queryCacheSizes(l1, l2, l3); in main()
24 cout << "Eigen's L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
43 internal::queryCacheSizes_intel_codes(l1, l2, l3); in main()
44 cout << "Eigen's intel codes L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
47 internal::queryCacheSizes_intel_direct(l1, l2, l3); in main()
48 cout << "Eigen's intel direct L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
50 internal::queryCacheSizes_amd(l1, l2, l3); in main()
51 cout << "Eigen's amd L1, L2, L3 = " << l1 << " " << l2 << " " << l3 << endl; in main()
57 l1 = l2 = l3 = 0; in main()
/external/llvm/test/Transforms/LoopUnroll/
Dconvergent.ll11 br label %l3
13 l3:
14 %x.0 = phi i32 [ 0, %entry ], [ %inc, %l3 ]
22 br i1 %exitcond, label %exit, label %l3
36 br label %l3
38 l3:
39 %x.0 = phi i32 [ 0, %entry ], [ %inc, %l3 ]
48 br i1 %exitcond, label %exit, label %l3
61 br label %l3, !llvm.loop !0
63 l3:
[all …]
/external/python/cpython2/Lib/lib2to3/tests/
Dtest_pytree.py82 l3 = pytree.Leaf(101, "foo")
84 self.assertNotEqual(l1, l3)
133 l3 = pytree.Leaf(100, "bar", prefix="c")
134 n2 = pytree.Node(1000, [n1, l3])
136 self.assertEqual(n1.get_suffix(), l3.prefix)
137 self.assertEqual(l3.get_suffix(), "")
153 l3 = pytree.Leaf(100, "bar")
154 n3 = pytree.Node(1000, [l3])
160 l3 = pytree.Leaf(100, "bar")
161 n1 = pytree.Node(1000, [l1, l2, l3])
[all …]
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
DPropertyChangeSupportTest.java77 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", in testAddPropertyChangeListener_PropertyChangeListener_Normal() local
80 l3); in testAddPropertyChangeListener_PropertyChangeListener_Normal()
89 sup.addPropertyChangeListener(l3); in testAddPropertyChangeListener_PropertyChangeListener_Normal()
144 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", in testAddPropertyChangeListener_PropertyChangeListener_String_Normal() local
156 sup.addPropertyChangeListener("myProp3", l3); in testAddPropertyChangeListener_PropertyChangeListener_String_Normal()
198 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", in testAddPropertyChangeListener_PropertyChangeListener_String_NullProperty() local
202 sup.addPropertyChangeListener(null, l3); in testAddPropertyChangeListener_PropertyChangeListener_String_NullProperty()
203 l3 = new PropertyChangeListenerProxy(null, l2); in testAddPropertyChangeListener_PropertyChangeListener_String_NullProperty()
204 sup.addPropertyChangeListener(l3); in testAddPropertyChangeListener_PropertyChangeListener_String_NullProperty()
217 PropertyChangeListener l3 = new PropertyChangeListenerProxy("myProp", in testAddPropertyChangeListener_PropertyChangeListener_String_Duplicate() local
[all …]
/external/eigen/Eigen/src/Core/util/
DMemory.h785 inline void queryCacheSizes_intel_direct(int& l1, int& l2, int& l3)
788 l1 = l2 = l3 = 0;
809 case 3: l3 = cache_size; break;
817 inline void queryCacheSizes_intel_codes(int& l1, int& l2, int& l3)
821 l1 = l2 = l3 = 0;
841 …case 0x22: l3 = 512; break; // code and data L3 cache, 512 KB, 4 ways (!), 64 byte lines, dual-s…
842 …case 0x23: l3 = 1024; break; // code and data L3 cache, 1024 KB, 8 ways, 64 byte lines, dual-sec…
843 …case 0x25: l3 = 2048; break; // code and data L3 cache, 2048 KB, 8 ways, 64 byte lines, dual-sec…
844 …case 0x29: l3 = 4096; break; // code and data L3 cache, 4096 KB, 8 ways, 64 byte lines, dual-sec…
857 case 0x46: l3 = 4096; break; // code and data L3 cache, 4096 KB, 4 ways, 64 byte lines
[all …]
/external/llvm/test/Transforms/LICM/
Dalias-set-tracker-loss.ll26 br i1 true, label %l1.loopexit, label %l3.preheader.lr.ph
28 l3.preheader.lr.ph:
29 br label %l3.preheader
32 br i1 true, label %l2.l1.loopexit_crit_edge, label %l3.preheader
34 l3.preheader:
35 br label %l3
37 l3:
38 br i1 true, label %l3, label %l2.loopexit
/external/llvm-project/llvm/test/Transforms/LICM/
Dalias-set-tracker-loss.ll26 br i1 true, label %l1.loopexit, label %l3.preheader.lr.ph
28 l3.preheader.lr.ph:
29 br label %l3.preheader
32 br i1 true, label %l2.l1.loopexit_crit_edge, label %l3.preheader
34 l3.preheader:
35 br label %l3
37 l3:
38 br i1 true, label %l3, label %l2.loopexit
/external/cpuinfo/src/x86/cache/
Ddescriptor.c254 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
270 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
300 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
316 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
516 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
532 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
568 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
594 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
610 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
626 cache->l3 = (struct cpuinfo_x86_cache) { in cpuinfo_x86_decode_cache_descriptor()
[all …]
/external/wayland/tests/
Dnewsignal-test.c58 struct wl_listener l3 = {.notify = (wl_notify_func_t) 0x3}; in TEST() local
66 wl_priv_signal_add(&signal, &l3); in TEST()
70 assert(wl_priv_signal_get(&signal, (wl_notify_func_t) 0x3) == &l3); in TEST()
76 assert(wl_priv_signal_get(&signal, (wl_notify_func_t) 0x3) == &l3); in TEST()
106 struct wl_listener l3 = {.notify = signal_notify}; in TEST() local
111 wl_priv_signal_add(&signal, &l3); in TEST()
122 struct wl_listener l1, l2, l3; member
139 wl_list_init(&signal.l3.link);
153 signal.l3.notify = notify_remove; in TEST()
180 wl_priv_signal_add(&signal.signal, &signal.l3); in TEST()
[all …]
Dsignal-test.c58 struct wl_listener l3 = {.notify = (wl_notify_func_t) 0x3}; in TEST() local
66 wl_signal_add(&signal, &l3); in TEST()
70 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x3) == &l3); in TEST()
76 assert(wl_signal_get(&signal, (wl_notify_func_t) 0x3) == &l3); in TEST()
106 struct wl_listener l3 = {.notify = signal_notify}; in TEST() local
111 wl_signal_add(&signal, &l3); in TEST()
/external/cpuinfo/test/
Darm-cache.cc21 struct cpuinfo_cache l3 = { 0 }; in TEST() local
25 &l1i, &l1d, &l2, &l3); in TEST()
29 EXPECT_EQ(0, l3.size); in TEST()
42 struct cpuinfo_cache l3 = { 0 }; in TEST() local
46 &l1i, &l1d, &l2, &l3); in TEST()
50 EXPECT_EQ(0, l3.size); in TEST()
64 struct cpuinfo_cache l3 = { 0 }; in TEST() local
68 &l1i, &l1d, &l2, &l3); in TEST()
72 EXPECT_EQ(0, l3.size); in TEST()
86 struct cpuinfo_cache l3 = { 0 }; in TEST() local
[all …]
/external/cpuinfo/src/x86/mach/
Dinit.c28 struct cpuinfo_cache* l3 = NULL; in cpuinfo_x86_mach_init() local
140 if (x86_processor.cache.l3.size != 0) { in cpuinfo_x86_mach_init()
155 if (x86_processor.cache.l3.size != 0) { in cpuinfo_x86_mach_init()
260 l3 = calloc(l3_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_mach_init()
261 if (l3 == NULL) { in cpuinfo_x86_mach_init()
267 l3[c] = (struct cpuinfo_cache) { in cpuinfo_x86_mach_init()
268 .size = x86_processor.cache.l3.size, in cpuinfo_x86_mach_init()
269 .associativity = x86_processor.cache.l3.associativity, in cpuinfo_x86_mach_init()
270 .sets = x86_processor.cache.l3.sets, in cpuinfo_x86_mach_init()
271 .partitions = x86_processor.cache.l3.partitions, in cpuinfo_x86_mach_init()
[all …]
/external/cpuinfo/src/x86/linux/
Dinit.c118 if (processor->cache.l3.size != 0) { in cpuinfo_x86_count_objects()
119 const uint32_t l3_id = apic_id & ~bit_mask(processor->cache.l3.apic_bits); in cpuinfo_x86_count_objects()
155 struct cpuinfo_cache* l3 = NULL; in cpuinfo_x86_linux_init() local
242 } else if (x86_processor.cache.l3.size != 0) { in cpuinfo_x86_linux_init()
243 llc_apic_bits = x86_processor.cache.l3.apic_bits; in cpuinfo_x86_linux_init()
326 l3 = calloc(l3_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_linux_init()
327 if (l3 == NULL) { in cpuinfo_x86_linux_init()
518 if (x86_processor.cache.l3.size != 0) { in cpuinfo_x86_linux_init()
519 const uint32_t l3_id = apic_id & ~bit_mask(x86_processor.cache.l3.apic_bits); in cpuinfo_x86_linux_init()
520 processors[i].cache.l3 = &l3[l3_index]; in cpuinfo_x86_linux_init()
[all …]
/external/clang/test/CodeGen/
Dpartial-reinitialization2.c12 struct LLP3 { struct LP3 l3; }; member
13 union ULP3 { struct LP3 l3; }; member
89 struct LLP3 var = { .l3 = g3, .l3.p1 = { [0] = g1 }, .l3.p1[1].x[1] = 'x' }; in test5()
/external/llvm-project/clang/test/CodeGen/
Dpartial-reinitialization2.c12 struct LLP3 { struct LP3 l3; }; member
13 union ULP3 { struct LP3 l3; }; member
89 struct LLP3 var = { .l3 = g3, .l3.p1 = { [0] = g1 }, .l3.p1[1].x[1] = 'x' }; in test5()
/external/clang/test/SemaCXX/
Dexceptions.cpp41 goto l3; // expected-error {{cannot jump}} in jumps()
48 goto l3; // expected-error {{cannot jump}} in jumps()
52 l3: in jumps()
55 goto l3; in jumps()
62 goto l3; // expected-error {{cannot jump}} in jumps()
69 goto l3; // expected-error {{cannot jump}} in jumps()
/external/cpuinfo/src/arm/
Dcache.c20 struct cpuinfo_cache l3[restrict static 1]) in cpuinfo_arm_decode_cache()
739 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
781 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
888 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
1110 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
1183 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
1234 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
1430 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
1494 *l3 = (struct cpuinfo_cache) { in cpuinfo_arm_decode_cache()
1550 if (l3->size != 0) { in cpuinfo_arm_decode_cache()
[all …]

12345678910>>...18