/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/ |
D | PropertyChangeSupportTest.java | 79 PropertyChangeListener l4 = new PropertyChangeListenerProxy("myProp", in testAddPropertyChangeListener_PropertyChangeListener_Normal() local 97 sup.addPropertyChangeListener(l4); in testAddPropertyChangeListener_PropertyChangeListener_Normal() 407 PropertyChangeListener l4 = new MockPropertyChangeListener(); in testGetPropertyChangeListener_Normal() local 411 sup.addPropertyChangeListener("myProp2", l4); in testGetPropertyChangeListener_Normal() 437 PropertyChangeListener l4 = new MockPropertyChangeListener(); in testGetPropertyChangeListener_String_Normal() local 441 sup.addPropertyChangeListener("myProp2", l4); in testGetPropertyChangeListener_String_Normal() 462 PropertyChangeListener l4 = new MockPropertyChangeListener(); in testGetPropertyChangeListener_String_None() local 466 sup.addPropertyChangeListener("myProp3", l4); in testGetPropertyChangeListener_String_None() 594 MockPropertyChangeListener l4 = new MockPropertyChangeListener(src, in testFirePropertyChange_Object_Normal() local 598 sup.addPropertyChangeListener("myProp", l4); in testFirePropertyChange_Object_Normal() [all …]
|
/external/llvm-project/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
D | p3-generic-lambda-1y.cpp | 44 auto l4 = [](decltype(auto) a) -> int { return 0; }; //expected-error{{decltype(auto)}} in main() local 52 …auto l4 = [](auto (*fp)(int)) -> int { return fp(3); }; //expected-error{{no viable conversion fro… in main() local 53 l4(&Local::ifi); in main() 54 l4(&Local::cfi); in main() 55 l4(&Local::dfi); in main() 56 l4(&Local::localfi); //expected-note{{in instantiation of function template specialization}} in main()
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
D | p3-generic-lambda-1y.cpp | 44 auto l4 = [](decltype(auto) a) -> int { return 0; }; //expected-error{{decltype(auto)}} in main() local 52 …auto l4 = [](auto (*fp)(int)) -> int { return fp(3); }; //expected-error{{no viable conversion fro… in main() local 53 l4(&Local::ifi); in main() 54 l4(&Local::cfi); in main() 55 l4(&Local::dfi); in main() 56 l4(&Local::localfi); //expected-note{{in instantiation of function template specialization}} in main()
|
/external/cpuinfo/src/x86/linux/ |
D | init.c | 125 if (processor->cache.l4.size != 0) { in cpuinfo_x86_count_objects() 126 const uint32_t l4_id = apic_id & ~bit_mask(processor->cache.l4.apic_bits); in cpuinfo_x86_count_objects() 156 struct cpuinfo_cache* l4 = NULL; in cpuinfo_x86_linux_init() local 240 if (x86_processor.cache.l4.size != 0) { in cpuinfo_x86_linux_init() 241 llc_apic_bits = x86_processor.cache.l4.apic_bits; in cpuinfo_x86_linux_init() 334 l4 = calloc(l4_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_linux_init() 335 if (l4 == NULL) { in cpuinfo_x86_linux_init() 543 if (x86_processor.cache.l4.size != 0) { in cpuinfo_x86_linux_init() 544 const uint32_t l4_id = apic_id & ~bit_mask(x86_processor.cache.l4.apic_bits); in cpuinfo_x86_linux_init() 545 processors[i].cache.l4 = &l4[l4_index]; in cpuinfo_x86_linux_init() [all …]
|
/external/clang/test/SemaCXX/ |
D | exceptions.cpp | 40 goto l4; // expected-error {{cannot jump}} in jumps() 47 goto l4; // expected-error {{cannot jump}} in jumps() 54 goto l4; // expected-error {{cannot jump}} in jumps() 59 l4: in jumps() 61 goto l4; in jumps() 68 goto l4; // expected-error {{cannot jump}} in jumps()
|
/external/cpuinfo/src/x86/mach/ |
D | init.c | 29 struct cpuinfo_cache* l4 = NULL; in cpuinfo_x86_mach_init() local 171 if (x86_processor.cache.l4.size != 0) { in cpuinfo_x86_mach_init() 284 l4 = calloc(l4_count, sizeof(struct cpuinfo_cache)); in cpuinfo_x86_mach_init() 285 if (l4 == NULL) { in cpuinfo_x86_mach_init() 291 l4[c] = (struct cpuinfo_cache) { in cpuinfo_x86_mach_init() 292 .size = x86_processor.cache.l4.size, in cpuinfo_x86_mach_init() 293 .associativity = x86_processor.cache.l4.associativity, in cpuinfo_x86_mach_init() 294 .sets = x86_processor.cache.l4.sets, in cpuinfo_x86_mach_init() 295 .partitions = x86_processor.cache.l4.partitions, in cpuinfo_x86_mach_init() 296 .line_size = x86_processor.cache.l4.line_size, in cpuinfo_x86_mach_init() [all …]
|
/external/llvm-project/clang/test/SemaCXX/ |
D | exceptions.cpp | 45 goto l4; // expected-error {{cannot jump}} in jumps() 52 goto l4; // expected-error {{cannot jump}} in jumps() 59 goto l4; // expected-error {{cannot jump}} in jumps() 64 l4: in jumps() 66 goto l4; in jumps() 73 goto l4; // expected-error {{cannot jump}} in jumps()
|
/external/cpuinfo/src/x86/windows/ |
D | init.c | 83 if (x86_processor->cache.l4.size != 0) { in cpuinfo_x86_count_caches() 84 const uint32_t l4_id = apic_id & ~bit_mask(x86_processor->cache.l4.apic_bits); in cpuinfo_x86_count_caches() 116 struct cpuinfo_cache* l4 = NULL; in cpuinfo_x86_windows_init() local 423 l4 = HeapAlloc(heap, HEAP_ZERO_MEMORY, l4_count * sizeof(struct cpuinfo_cache)); in cpuinfo_x86_windows_init() 424 if (l4 == NULL) { in cpuinfo_x86_windows_init() 538 if (x86_processor.cache.l4.size != 0) { in cpuinfo_x86_windows_init() 539 const uint32_t l4_id = apic_id & ~bit_mask(x86_processor.cache.l4.apic_bits); in cpuinfo_x86_windows_init() 540 processors[i].cache.l4 = &l4[l4_index]; in cpuinfo_x86_windows_init() 544 l4[++l4_index] = (struct cpuinfo_cache) { in cpuinfo_x86_windows_init() 545 .size = x86_processor.cache.l4.size, in cpuinfo_x86_windows_init() [all …]
|
/external/llvm-project/llvm/unittests/ADT/ |
D | PointerUnionTest.cpp | 27 PU4 i4, f4, l4, d4; member 32 f3(&f), l3(&l), i4(&i), f4(&f), l4(&l), d4(&d), i4null((int *)nullptr), in PointerUnionTest() 53 EXPECT_TRUE(i4 != l4); in TEST_F() 54 EXPECT_TRUE(f4 != l4); in TEST_F() 55 EXPECT_TRUE(l4 != d4); in TEST_F() 83 EXPECT_FALSE(l4.isNull()); in TEST_F() 103 EXPECT_TRUE(l4.is<long long *>()); in TEST_F()
|
/external/llvm/test/CodeGen/SPARC/ |
D | 64spill.ll | 13 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 24 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 35 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 47 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 58 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 69 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 80 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 91 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 102 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 113 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~…
|
/external/llvm-project/llvm/test/CodeGen/SPARC/ |
D | 64spill.ll | 13 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 24 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 35 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 47 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 58 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 69 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 80 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 91 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 102 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~… 113 …,~{i7},~{g1},~{g2},~{g3},~{g4},~{g5},~{g6},~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~…
|
D | umulo-128-legalisation-lowering.ll | 26 ; SPARC-NEXT: umul %l3, %i1, %l4 38 ; SPARC-NEXT: add %g3, %l4, %i0 40 ; SPARC-NEXT: addcc %g2, %l0, %l4 50 ; SPARC-NEXT: addcc %o1, %l4, %i3 139 ; SPARC-NEXT: mov %g3, %l4 141 ; SPARC-NEXT: mov %l0, %l4 146 ; SPARC-NEXT: and %l4, %l3, %l4 155 ; SPARC-NEXT: or %l4, %l6, %i2 157 ; SPARC-NEXT: mov %g3, %l4 159 ; SPARC-NEXT: mov %l0, %l4 [all …]
|
/external/llvm-project/clang/test/PCH/ |
D | cxx2a-template-lambdas.cpp | 24 auto l4 = []<template<class> class T, class U>(T<U>, auto i) constexpr -> U { 42 static_assert(l4(DummyTemplate<float>(), 12) == 12.0); 43 static_assert(l4(DummyTemplate<int>(), 19.8) == 19);
|
/external/wayland/tests/ |
D | signal-test.c | 60 struct wl_listener l4 = {.notify = signal_notify}; in TEST() local 67 wl_signal_add(&signal, &l4); in TEST() 69 assert(wl_signal_get(&signal, signal_notify) == &l4); in TEST() 75 assert(wl_signal_get(&signal, signal_notify) == &l4); in TEST()
|
/external/clang/test/CodeGenObjC/ |
D | property-complex.m | 47 _Complex float l4 = (a0->iv0 = a0->iv0); 56 printf("l4: %.2f + %.2fi\n", __real l4, __imag l4);
|
/external/llvm-project/clang/test/CodeGenObjC/ |
D | property-complex.m | 47 _Complex float l4 = (a0->iv0 = a0->iv0); 56 printf("l4: %.2f + %.2fi\n", __real l4, __imag l4);
|
/external/llvm-project/llvm/test/CodeGen/Thumb2/ |
D | fir.ll | 17 %l4 = load i32, i32* %p1, align 4 18 %conv5.us = sext i32 %l4 to i64 42 %l4 = load i32, i32* %p1, align 4 43 %conv5.us = sext i32 %l4 to i64
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | frame-08.ll | 30 %l4 = load volatile i32, i32 *%ptr 43 %add4 = add i32 %l4, %add1 90 %l4 = load volatile i32, i32 *%ptr 95 %add4 = add i32 %l4, %add1 133 %l4 = load volatile i32, i32 *%ptr 146 %add4 = add i32 %l4, %add1 192 %l4 = load volatile i32, i32 *%ptr 197 %add4 = add i32 %l4, %add1 226 %l4 = load volatile i32, i32 *%ptr 231 %add4 = add i32 %l4, %add1 [all …]
|
D | frame-04.ll | 43 %l4 = load volatile fp128, fp128 *%ptr 51 %add4 = fadd fp128 %l4, %add1 99 %l4 = load volatile fp128, fp128 *%ptr 106 %add4 = fadd fp128 %l4, %add1 144 %l4 = load volatile fp128, fp128 *%ptr 149 %add4 = fadd fp128 %l4, %add1 176 %l4 = load volatile fp128, fp128 *%ptr 180 %add4 = fadd fp128 %l4, %add1
|
/external/llvm/test/CodeGen/SystemZ/ |
D | frame-08.ll | 30 %l4 = load volatile i32 , i32 *%ptr 43 %add4 = add i32 %l4, %add1 90 %l4 = load volatile i32 , i32 *%ptr 95 %add4 = add i32 %l4, %add1 133 %l4 = load volatile i32 , i32 *%ptr 146 %add4 = add i32 %l4, %add1 192 %l4 = load volatile i32 , i32 *%ptr 197 %add4 = add i32 %l4, %add1 226 %l4 = load volatile i32 , i32 *%ptr 231 %add4 = add i32 %l4, %add1 [all …]
|
D | frame-04.ll | 43 %l4 = load volatile fp128 , fp128 *%ptr 51 %add4 = fadd fp128 %l4, %add1 99 %l4 = load volatile fp128 , fp128 *%ptr 106 %add4 = fadd fp128 %l4, %add1 144 %l4 = load volatile fp128 , fp128 *%ptr 149 %add4 = fadd fp128 %l4, %add1 176 %l4 = load volatile fp128 , fp128 *%ptr 180 %add4 = fadd fp128 %l4, %add1
|
/external/cpuinfo/src/ |
D | cache.c | 8 if (processor->cache.l4 != NULL) { in cpuinfo_compute_max_cache_size() 9 return processor->cache.l4->size; in cpuinfo_compute_max_cache_size()
|
/external/libffi/testsuite/libffi.bhaible/ |
D | testcases.c | 40 typedef struct { long l1; long l2; long l3; long l4; } K; member 41 typedef struct { long l1; long l2; long l3; long l4; long l5; long l6; } L; member 71 long l1=1, l2=2, l3=3, l4=4, l5=5, l6=6, l7=7, l8=8, l9=9; variable 588 long r = b.l1 + b.l2 + b.l3 + b.l4 + c; in l_l0K() 589 fprintf(out,"long f(K,long):(%ld,%ld,%ld,%ld,%ld)",b.l1,b.l2,b.l3,b.l4,c); in l_l0K() 595 long r = a1 + b.l1 + b.l2 + b.l3 + b.l4 + c; in l_l1K() 596 fprintf(out,"long f(long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld)",a1,b.l1,b.l2,b.l3,b.l4,c); in l_l1K() 602 long r = a1 + a2 + b.l1 + b.l2 + b.l3 + b.l4 + c; in l_l2K() 603 fprintf(out,"long f(2*long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a1,a2,b.l1,b.l2,b.l3,b.l4,c); in l_l2K() 609 long r = a1 + a2 + a3 + b.l1 + b.l2 + b.l3 + b.l4 + c; in l_l3K() [all …]
|
/external/llvm/test/Transforms/LICM/ |
D | sinking.ll | 276 br i1 %x1, label %l2.latch, label %l4.preheader 278 l4.preheader: 279 br label %l4.header 281 l4.header: 283 br i1 %x2, label %l3.latch, label %l4.body 285 l4.body: 289 br i1 %x3, label %l4.latch, label %exit 291 l4.latch: 294 br i1 %x4, label %l4.header, label %exit 307 %lcssa = phi i32 [ %l, %l4.latch ], [ %l, %l4.body ] [all …]
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/ |
D | MethodAnalyzerTest.java | 474 final Label l4 = new Label(); in createTableSwitch() local 475 method.visitLabel(l4); in createTableSwitch() 476 method.visitLineNumber(1003, l4); in createTableSwitch() 617 Label l4 = new Label(); in createTableSwitchMerge() local 618 method.visitTableSwitchInsn(1, 3, l4, new Label[] { l2, l3, l2 }); in createTableSwitchMerge() 625 method.visitLabel(l4); in createTableSwitchMerge() 626 method.visitLineNumber(1005, l4); in createTableSwitchMerge() 717 Label l4 = new Label(); in createTryCatchBlock() local 725 method.visitJumpInsn(Opcodes.GOTO, l4); in createTryCatchBlock() 729 method.visitLabel(l4); in createTryCatchBlock() [all …]
|