HomeSort by relevance Sort by last modified time
    Searched refs:IRQ (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/clang/test/Sema/
arm-interrupt-attr.c 3 __attribute__((interrupt(IRQ))) void foo() {} // expected-error {{'interrupt' attribute requires a string}}
4 __attribute__((interrupt("irq"))) void foo1() {} // expected-warning {{'interrupt' attribute argument not supported: irq}}
6 __attribute__((interrupt("IRQ", 1))) void foo2() {} // expected-error {{'interrupt' attribute takes no more than 1 argument}}
8 __attribute__((interrupt("IRQ"))) void foo3() {}
  /tools/loganalysis/src/com/android/loganalysis/item/
TopItem.java 38 public static final String IRQ = "IRQ";
47 USER, NICE, SYSTEM, IDLE, IOW, IRQ, SIRQ, TOTAL, TEXT));
131 * Get the number of IRQ ticks.
134 return (Integer) getAttribute(IRQ);
138 * Set the number of IRQ ticks.
140 public void setIrq(int irq) {
141 setAttribute(IRQ, irq);
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/Dsdt/
PciIrq.asi 34 Device(LNKA) // PCI IRQ link A
61 {IRQ(Level,ActiveLow,Shared){0}})
64 CreateWordField (BUF0, 0x01, IRQW) // IRQ low
65 // Write current settings into IRQ descriptor
81 {IRQ(Level,ActiveLow,Shared){12,11,10,9,7,5,4,3}})
85 CreateWordField (ARG0, 0x01, IRQW) // IRQ low
87 FindSetRightBit(IRQW,Local0) // Set IRQ
101 Device(LNKB) // PCI IRQ link B
128 {IRQ(Level,ActiveLow,Shared){0}})
130 CreateWordField (BUF0, 0x01, IRQW) // IRQ low
    [all...]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/AcpiTablesPCAT/
98_LINK.ASL 36 // 3 = If COMx Port Enabled and IRQ = 3
37 // 4 = If COMx Port Enabled and IRQ = 4
38 // 5 = If LPT Port Enabled and IRQ = 5
40 // 7 = If LPT Port Enabled and IRQ = 7
55 // Disable the PCI IRQ.
62 // Possible IRQ Resource Setting.
69 // Current IRQ Resource Setting.
75 IRQ(Level,ActiveLow,Shared) {}
82 // Zero out IRQ mask bits 0-15
91 // Set IRQ Resource Setting.
    [all...]
PciTree.asl 334 // List of IRQ resource buffers compatible with _PRS return format.
337 // RSxy, PRSy - name of the IRQ resource buffer to be returned by _PRS, "xy" - last two characters of IRQ Link name.
338 // Note. PRSy name is generated if IRQ Link name starts from "LNK".
339 // HLxy , LLxy - reference names, can be used to access bit mask of available IRQs. HL and LL stand for active High(Low) Level triggered Irq model.
343 IRQ(Level, ActiveLow, Shared, LLKA) {3,4,5,6,10,11,12,14,15}
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Arm/
DisableInterrupts.S 33 orr R0,R0,#0x80 @Disable IRQ interrupts
DisableInterrupts.asm 33 ORR R0,R0,#0x80 ;Disable IRQ interrupts
EnableInterrupts.S 34 bic R0,R0,#0x80 @Enable IRQ interrupts
EnableInterrupts.asm 33 BIC R0,R0,#0x80 ;Enable IRQ interrupts
GetInterruptsState.S 40 tst R0, #0x80 @Check if IRQ is enabled.
GetInterruptsState.asm 40 TST R0, #0x80 ;Check if IRQ is enabled.
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
CpuStatsCollectorTest.java 171 assertEquals(13, stats.mTimeStats.get(TimeCategory.IRQ).intValue());
180 assertEquals(100.0 * 13 / 58, stats.getPercentage(TimeCategory.IRQ), 0.01);
200 assertEquals(59, stats.mTimeStats.get(TimeCategory.IRQ).intValue());
216 assertEquals(107, stats.mTimeStats.get(TimeCategory.IRQ).intValue());
248 assertEquals(13, stats.mTimeStats.get(TimeCategory.IRQ).intValue());
257 assertEquals(100.0 * 13 / 58, stats.getPercentage(TimeCategory.IRQ), 0.01);
  /external/arm-neon-tests/
Init.s 22 I_Bit EQU 0x80 ; when I bit is set, IRQ is disabled
  /tools/tradefederation/core/src/com/android/tradefed/device/
TopHelper.java 46 Pattern.compile("User (\\d+)%, System (\\d+)%, IOW (\\d+)%, IRQ (\\d+)%");
59 IRQ
296 * Get the average IRQ CPU usage for a list of {@link TopStats}.
302 return getAveragePercentage(topStats, PercentCategory.IRQ);
330 case IRQ:
CpuStatsCollector.java 64 IRQ,
256 s.mTimeStats.put(TimeCategory.IRQ, Integer.parseInt(args[6]));
440 * Get the mean of the IRQ and SIRQ CPU usage for a list of {@link CpuStats}.
446 return (getPercentageMean(cpuStats, TimeCategory.IRQ) +
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
st16_64.asm 691 ; Note: The hardware IRQ's specified in this table are the normal PC/AT IRQ
    [all...]
st32_64.asm 707 ; Note: The hardware IRQ's specified in this table are the normal PC/AT IRQ
    [all...]
start.asm 539 ; Note: The hardware IRQ's specified in this table are the normal PC/AT IRQ
713 ; IRQ 0 (System timer) - (INT 68h)
721 ; IRQ 1 (8042 Keyboard controller) - (INT 69h)
729 ; Reserved - IRQ 2 redirect (IRQ 2) - DO NOT USE!!! - (INT 6ah)
737 ; IRQ 3 (COM 2) - (INT 6bh)
745 ; IRQ 4 (COM 1) - (INT 6ch)
753 ; IRQ 5 (LPT 2) - (INT 6dh)
761 ; IRQ 6 (Floppy controller) - (INT 6eh)
    [all...]
start16.asm 532 ; Note: The hardware IRQ's specified in this table are the normal PC/AT IRQ
706 ; IRQ 0 (System timer) - (INT 68h)
714 ; IRQ 1 (8042 Keyboard controller) - (INT 69h)
722 ; Reserved - IRQ 2 redirect (IRQ 2) - DO NOT USE!!! - (INT 6ah)
730 ; IRQ 3 (COM 2) - (INT 6bh)
738 ; IRQ 4 (COM 1) - (INT 6ch)
746 ; IRQ 5 (LPT 2) - (INT 6dh)
754 ; IRQ 6 (Floppy controller) - (INT 6eh)
    [all...]
start32.asm 547 ; Note: The hardware IRQ's specified in this table are the normal PC/AT IRQ
721 ; IRQ 0 (System timer) - (INT 68h)
729 ; IRQ 1 (8042 Keyboard controller) - (INT 69h)
737 ; Reserved - IRQ 2 redirect (IRQ 2) - DO NOT USE!!! - (INT 6ah)
745 ; IRQ 3 (COM 2) - (INT 6bh)
753 ; IRQ 4 (COM 1) - (INT 6ch)
761 ; IRQ 5 (LPT 2) - (INT 6dh)
769 ; IRQ 6 (Floppy controller) - (INT 6eh)
    [all...]
start64.asm 698 ; Note: The hardware IRQ's specified in this table are the normal PC/AT IRQ
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/Arm/
ArmLibSupport.S 29 tst R0,#0x80 @Check if IRQ is enabled.
  /external/autotest/server/cros/
resource_monitor.py 89 "IOWait", "IRQ", "SoftIRQ", "Steal",
124 (cpu_user, cpu_sys, cpu_nice, cpu_idle, io_wait, irq, sirq,
143 IOWait=io_wait, IRQ=irq, SoftIRQ=sirq, Steal=steal,
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePi/Arm/
ModuleEntryPoint.asm 43 // Enter SVC mode, Disable FIQ and IRQ
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiTables/
Dsdt.asl 219 // mapped IRQ#9 / GSI 9 (the corresponding bit being set in
400 // PCI IRQ Link A
419 // PCI IRQ Link B
438 // PCI IRQ Link C
457 // PCI IRQ Link D
635 IRQ (Edge, ActiveHigh, Exclusive, ) {4}
652 IRQ (Edge, ActiveHigh, Exclusive, ) {3}

Completed in 464 milliseconds

1 2 3