HomeSort by relevance Sort by last modified time
    Searched defs:Cpu (Results 1 - 25 of 28) sorted by null

1 2

  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/
ArmGicCommonDxe.c 96 EFI_CPU_ARCH_PROTOCOL *Cpu;
114 // Get the CPU protocol that this driver requires.
116 Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **)&Cpu);
124 Status = Cpu->RegisterInterruptHandler (Cpu, ARM_ARCH_EXCEPTION_IRQ, NULL);
132 Status = Cpu->RegisterInterruptHandler (Cpu, ARM_ARCH_EXCEPTION_IRQ, InterruptHandler);
  /device/linaro/bootloader/edk2/Nt32Pkg/CpuRuntimeDxe/
CpuDriver.h 28 #include <Protocol/Cpu.h>
56 EFI_CPU_ARCH_PROTOCOL Cpu;
60 // Local Data for CPU interface goes here
70 Cpu, \
  /device/linaro/bootloader/edk2/Omap35xxPkg/InterruptDxe/
HardwareInterrupt.c 26 #include <Protocol/Cpu.h>
300 Initialize the state information for the CPU Architectural Protocol
317 EFI_CPU_ARCH_PROTOCOL *Cpu;
334 // Get the CPU protocol that this driver requires.
336 Status = gBS->LocateProtocol(&gEfiCpuArchProtocolGuid, NULL, (VOID **)&Cpu);
342 Status = Cpu->RegisterInterruptHandler(Cpu, EXCEPT_ARM_IRQ, NULL);
348 Status = Cpu->RegisterInterruptHandler(Cpu, EXCEPT_ARM_IRQ, IrqInterruptHandler);
  /device/linaro/bootloader/edk2/Omap35xxPkg/LcdGraphicsOutputDxe/
LcdGraphicsOutputDxe.c 112 EFI_CPU_ARCH_PROTOCOL *Cpu;
124 // Ensure the Cpu architectural protocol is already installed
125 Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **)&Cpu);
129 Status = Cpu->SetMemoryAttributes (Cpu, *VramBaseAddress, *VramSize, EFI_MEMORY_UC);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/HdLcdArmVExpressLib/
HdLcdArmVExpress.c 25 #include <Protocol/Cpu.h>
122 EFI_CPU_ARCH_PROTOCOL *Cpu;
141 // Ensure the Cpu architectural protocol is already installed
142 Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **)&Cpu);
146 Status = Cpu->SetMemoryAttributes (Cpu, *VramBaseAddress, *VramSize, EFI_MEMORY_UC);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/PL111LcdArmVExpressLib/
PL111LcdArmVExpress.c 23 #include <Protocol/Cpu.h>
168 EFI_CPU_ARCH_PROTOCOL *Cpu;
190 // Ensure the Cpu architectural protocol is already installed
191 Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **)&Cpu);
195 Status = Cpu->SetMemoryAttributes(Cpu, *VramBaseAddress, *VramSize, EFI_MEMORY_UC);
  /external/lisa/tools/scripts/power/
cpu_frequency_power_average.py 30 # This script computes the cluster power cost and cpu power costs at each
48 class Cpu:
74 # For example: The total cpu cost of core 0 on cluster 0 running at
177 # Get the cost of running a single cpu at min frequency on the other cluster
242 cpu = Cpu(platform_file, sample_reader)
243 return cpu
247 description="Get the cluster cost and cpu cost per frequency. Optionally"
269 cpu = CpuFrequencyPowerAverage.get(args.results_dir, args.platform_file, args.column) variable in class:CpuFrequencyPowerAverage
270 cpu.dump(
    [all...]
  /system/extras/simpleperf/
event_fd.h 42 pid_t tid, int cpu,
48 // Give information about this perf_event_file, like (event_name, tid, cpu).
55 int Cpu() const { return cpu_; }
70 // the same event on the same cpu, but have different thread ids.
87 const std::string& event_name, pid_t tid, int cpu)
93 cpu_(cpu),
record.cpp 146 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu,
194 uint32_t Record::Cpu() const { return sample_id.cpu_data.cpu; }
467 uint64_t time, uint32_t cpu, uint64_t period,
480 cpu_data.cpu = cpu;
761 PrintIndented(indent, "cpu %u, res %u\n", cpu_data.cpu, cpu_data.res);
818 uint32_t SampleRecord::Cpu() const { return cpu_data.cpu;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/CpuRuntimeDxe/
CpuDriver.h 23 #include <Protocol/Cpu.h>
52 EFI_CPU_ARCH_PROTOCOL Cpu;
56 // Local Data for CPU interface goes here
65 Cpu, \
MpService.c 26 MP Services Protocol may be used by non-CPU DXE drivers to speed up platform boot
368 list of failed CPU is terminated by
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/MemoryTest/GenericMemoryTestDxe/
LightMemoryTest.h 22 #include <Protocol/Cpu.h>
88 // Cpu arch protocol's pointer
90 EFI_CPU_ARCH_PROTOCOL *Cpu;
LightMemoryTest.c 331 if (Private->Cpu != NULL) {
332 Private->Cpu->FlushDataCache (Private->Cpu, Start, Size, EfiCpuFlushTypeWriteBackInvalidate);
442 EFI_CPU_ARCH_PROTOCOL *Cpu;
467 // get the cpu arch protocol to support flash cache
472 (VOID **) &Cpu
475 Private->Cpu = Cpu;
798 Private->Cpu->FlushDataCache (Private->Cpu, TestAddress, 1, EfiCpuFlushTypeWriteBackInvalidate);
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
HobGeneration.h 71 EFI_HOB_CPU Cpu;
  /device/linaro/bootloader/edk2/MdePkg/Library/SmmPeriodicSmiLib/
SmmPeriodicSmiLib.c 65 /// The Cpu number that is required to execute DispatchFunction. If Cpu is
67 /// on any CPU.
69 UINTN Cpu;
654 handler on the specified logial CPU. This function determines if the periodic
729 handler on the specified logial CPU. This worker function is only called
731 periodic SMI handler on a logical CPU that is different than the one that is
733 released to notify the CPU that is running the SMM Foundation that the periodic
753 // Execute dispatch function on the currently excuting logical CPU
818 if ((PeriodicSmiLibraryHandler->Cpu == PERIODIC_SMI_LIBRARY_ANY_CPU) ||
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/Ping6/
Ping6.c 26 #include <Protocol/Cpu.h>
78 EFI_CPU_ARCH_PROTOCOL *Cpu;
82 Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **) &Cpu);
88 Status = Cpu->GetTimerValue (Cpu, 0, &CurrentTick, &TimerPeriod);
  /prebuilts/go/darwin-x86/src/debug/macho/
macho.go 15 Cpu Cpu
54 // A Cpu is a Mach-O cpu type.
55 type Cpu uint32
60 Cpu386 Cpu = 7
61 CpuAmd64 Cpu = Cpu386 | cpuArch64
62 CpuArm Cpu = 12
63 CpuPpc Cpu = 18
64 CpuPpc64 Cpu = CpuPpc | cpuArch6
    [all...]
  /prebuilts/go/linux-x86/src/debug/macho/
macho.go 15 Cpu Cpu
54 // A Cpu is a Mach-O cpu type.
55 type Cpu uint32
60 Cpu386 Cpu = 7
61 CpuAmd64 Cpu = Cpu386 | cpuArch64
62 CpuArm Cpu = 12
63 CpuPpc Cpu = 18
64 CpuPpc64 Cpu = CpuPpc | cpuArch6
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/
PeiHob.h 179 // CPU HOB
246 EFI_HOB_CPU *Cpu;
  /device/linaro/bootloader/edk2/MdePkg/Include/Pi/
PiHob.h 472 EFI_HOB_CPU *Cpu;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork2CommandsLib/
Ping6.c 101 EFI_CPU_ARCH_PROTOCOL *Cpu = NULL;
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/efi/Pi/
PiHob.h 289 EFI_HOB_CPU *Cpu;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
LegacyBiosInterface.h 35 #include <Protocol/Cpu.h>
556 // CPU Architectural Protocol
558 EFI_CPU_ARCH_PROTOCOL *Cpu;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_common.h     [all...]

Completed in 657 milliseconds

1 2