HomeSort by relevance Sort by last modified time
    Searched refs:TscFrequency (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/PerformancePkg/Library/TscTimerLib/
PeiTscTimerLib.c 33 #include <Guid/TscFrequency.h>
48 UINT64 TscFrequency;
56 TscFrequency = * (UINT64 *) DataInHob;
57 return TscFrequency;
64 TscFrequency = InternalCalculateTscFrequency ();
66 // TscFrequency is now equal to the number of TSC counts per second, build GUID HOB for it.
70 &TscFrequency,
74 return TscFrequency;
DxeTscTimerLib.c 35 #include <Guid/TscFrequency.h>
60 UINT64 *TscFrequency;
62 TscFrequency = NULL;
66 Status = EfiGetSystemConfigurationTable (&gEfiTscFrequencyGuid, (VOID **) &TscFrequency);
68 ASSERT (TscFrequency != NULL);
69 mTscFrequency = *TscFrequency;
77 Status = gBS->AllocatePool (EfiBootServicesData, sizeof (UINT64), (VOID **) &TscFrequency);
80 *TscFrequency = InternalCalculateTscFrequency ();
82 // TscFrequency now points to the number of TSC counts per second, install system configuration table for it.
84 gBS->InstallConfigurationTable (&gEfiTscFrequencyGuid, TscFrequency);
    [all...]
TscTimerLibShare.c 56 UINT64 TscFrequency;
84 TscFrequency = MultU64x32 (
89 return TscFrequency;

Completed in 554 milliseconds