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

1 2 3 4 5 6

  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/SecPeiDxeTimerLibUefiCpu/
X86TimerLib.c 51 @param Delay A period of time to delay in ticks.
57 IN UINT32 Delay
66 // In case Delay is too larger, separate it into several small delay slot.
67 // Devided Delay by half value of Init Count is to avoid Delay close to
70 // Delay and the Init Count.
74 Times = Delay / (InitCount / 2);
75 Delay = Delay % (InitCount / 2);
    [all...]
IpfTimerLib.c 22 Performs a delay measured as number of ticks.
24 An internal function to perform a delay measured as number of ticks. It's
27 @param Delay The number of ticks to delay.
33 IN INT64 Delay
41 Ticks = (INT64)AsmReadItc () + Delay;
45 // Delay > 2^63 could not be handled by this function
56 @param MicroSeconds The minimum number of microseconds to delay.
80 @param NanoSeconds The minimum number of nanoseconds to delay.
  /device/linaro/bootloader/edk2/OvmfPkg/Library/AcpiTimerLib/
AcpiTimerLib.c 34 @param Delay A period of time to delay in ticks.
39 IN UINT32 Delay
45 Times = Delay >> 22;
46 Delay &= BIT22 - 1;
51 Ticks = InternalAcpiGetTimerTick () + Delay;
52 Delay = BIT22;
55 // Delay >= 2^23 could not be handled by this function
69 @param MicroSeconds The minimum number of microseconds to delay.
97 @param NanoSeconds The minimum number of nanoseconds to delay.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/IntelPchAcpiTimerLib/
IntelPchAcpiTimerLib.c 84 @param Delay A period of time to delay in ticks.
90 IN UINT32 Delay
96 Times = Delay >> 22;
97 Delay &= BIT22 - 1;
102 Ticks = InternalAcpiGetTimerTick () + Delay;
103 Delay = BIT22;
106 // Delay >= 2^23 could not be handled by this function
120 @param MicroSeconds The minimum number of microseconds to delay.
148 @param NanoSeconds The minimum number of nanoseconds to delay.
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
jitter_estimator_tests.cc 52 int64_t Delay() { return ((counter_ % 11) - 5) * amplitude_; }
54 uint32_t FrameSize() { return 1000 + Delay(); }
63 // 5 fps, disable jitter delay altogether.
68 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
70 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
85 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
87 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
102 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
104 low_rate_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize());
119 regular_estimator_.UpdateEstimate(gen.Delay(), gen.FrameSize())
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/SecPeiDxeTimerLibCpu/
X86TimerLib.c 147 @param Delay A period of time to delay in ticks.
154 IN UINT32 Delay
163 // In case Delay is too larger, separate it into several small delay slot.
164 // Devided Delay by half value of Init Count is to avoid Delay close to
167 // Delay and the Init Count.
171 Times = Delay / (InitCount / 2);
172 Delay = Delay % (InitCount / 2);
    [all...]
IpfTimerLib.c 22 Performs a delay measured as number of ticks.
24 An internal function to perform a delay measured as number of ticks. It's
27 @param Delay The number of ticks to delay.
33 IN INT64 Delay
41 Ticks = (INT64)AsmReadItc () + Delay;
45 // Delay > 2^63 could not be handled by this function
56 @param MicroSeconds The minimum number of microseconds to delay.
80 @param NanoSeconds The minimum number of nanoseconds to delay.
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/Ps2MouseDxe/
CommPs2.c 582 UINTN Delay;
584 Delay = TIMEOUT / 50;
595 Delay--;
596 } while (Delay != 0);
598 if (Delay == 0) {
794 UINTN Delay;
797 Delay = Timeout / 50;
810 Delay--;
811 } while (Delay != 0);
813 if (Delay == 0) {
    [all...]
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/AcpiTimerLib/
AcpiTimerLib.c 85 @param Delay A period of time to delay in ticks.
90 IN UINT32 Delay
96 Times = Delay >> 22;
97 Delay &= BIT22 - 1;
102 Ticks = InternalAcpiGetTimerTick () + Delay;
103 Delay = BIT22;
106 // Delay >= 2^23 could not be handled by this function
120 @param MicroSeconds The minimum number of microseconds to delay.
148 @param NanoSeconds The minimum number of nanoseconds to delay.
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/Library/DuetTimerLib/
X86TimerLib.c 80 @param Delay A period of time to delay in ticks.
86 IN UINT32 Delay
92 Times = Delay >> (gAcpiDesc->PM_TMR_BLK.RegisterBitWidth - 2);
93 Delay &= (1 << (gAcpiDesc->PM_TMR_BLK.RegisterBitWidth - 2)) - 1;
98 Ticks = InternalAcpiGetTimerTick () + Delay;
99 Delay = 1 << (gAcpiDesc->PM_TMR_BLK.RegisterBitWidth - 2);
102 // Delay >= 2^23 (if ACPI provide 24-bit timer) or Delay >= 2^31 (if ACPI
117 @param MicroSeconds The minimum number of microseconds to delay.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
Ide.c 736 UINT32 Delay;
740 Delay = (UINT32) (((TimeoutInMilliSeconds * STALL_1_MILLI_SECOND) / 30) + 1);
765 Delay--;
767 } while (Delay > 0);
769 if (Delay == 0) {
798 UINT32 Delay;
802 Delay = (UINT32) (((TimeoutInMilliSeconds * STALL_1_MILLI_SECOND) / 30) + 1);
827 Delay--;
829 } while (Delay > 0);
831 if (Delay == 0) {
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordSmm/
OpalIdeMode.c 175 UINT32 Delay;
180 Delay = (UINT32) (DivU64x32(Timeout, 1000) + 1);
201 Delay--;
203 } while (Delay > 0);
229 UINT32 Delay;
234 Delay = (UINT32) (DivU64x32(Timeout, 1000) + 1);
254 Delay--;
256 } while (Delay > 0);
283 UINT32 Delay;
289 Delay = (UINT32) (DivU64x32(Timeout, 1000) + 1);
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseAbsolutePointerDxe/
CommPs2.c 627 UINTN Delay;
630 Delay = TIMEOUT / 50;
643 Delay--;
644 } while (Delay != 0);
646 if (Delay == 0) {
856 UINTN Delay;
859 Delay = Timeout / 50;
872 Delay--;
873 } while (Delay != 0);
875 if (Delay == 0) {
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2MouseDxe/
CommPs2.c 626 UINTN Delay;
629 Delay = TIMEOUT / 50;
642 Delay--;
643 } while (Delay != 0);
645 if (Delay == 0) {
855 UINTN Delay;
858 Delay = Timeout / 50;
871 Delay--;
872 } while (Delay != 0);
874 if (Delay == 0) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseTimerLibLocalApic/Ipf/
IpfTimerLib.c 31 Performs a delay measured as number of ticks.
33 An internal function to perform a delay measured as number of ticks. It's
36 @param Delay Number of ticks to delay.
42 IN INT64 Delay
50 Ticks = (INT64)AsmReadItc () + Delay;
54 // Delay > 2^63 could not be handled by this function
65 @param MicroSeconds The minimum number of microseconds to delay.
89 @param NanoSeconds The minimum number of nanoseconds to delay.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
24k-branch-delay-1.d 3 #name: 24K: Delay slot filling
mipsr6@24k-branch-delay-1.d 3 #source: 24k-branch-delay-1.s
4 #name: 24K: Delay slot filling
micromips@24k-branch-delay-1.d 3 #name: 24K: Delay slot filling (microMIPS)
4 #source: 24k-branch-delay-1.s
  /device/linaro/bootloader/edk2/OptionRomPkg/AtapiPassThruDxe/
AtapiPassThru.c     [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/AcpiTimerLib/
AcpiTimerLib.c 146 @param Delay A period of time to delay in ticks.
151 IN UINT32 Delay
159 Times = Delay >> 22;
160 Delay &= BIT22 - 1;
165 Ticks = IoBitFieldRead32 (Port, 0, 23) + Delay;
166 Delay = BIT22;
169 // Delay >= 2^23 could not be handled by this function
183 @param MicroSeconds The minimum number of microseconds to delay.
211 @param NanoSeconds The minimum number of nanoseconds to delay.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
BootScriptInternalFormat.h 156 UINT64 Delay;
164 UINT64 Delay;
173 UINT64 Delay;
  /device/linaro/bootloader/edk2/Omap35xxPkg/Library/Omap35xxTimerLib/
TimerLib.c 51 DEBUG ((EFI_D_ERROR, "Magic delay to disable watchdog timers properly.\n"));
83 UINT32 Delay;
89 Delay = (NanoSeconds / PcdGet32(PcdEmbeddedPerformanceCounterPeriodInNanoseconds)) + 1;
99 } while (ElapsedTime < Delay);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseTimerLibLocalApic/
X86TimerLib.c 124 @param Delay A period of time to delay in ticks.
131 IN UINT32 Delay
139 Ticks = InternalX86GetTimerTick (ApicBase) - Delay;
143 // Delay > 2^31 could not be handled by this function
154 @param MicroSeconds The minimum number of microseconds to delay.
186 @param NanoSeconds The minimum number of nanoseconds to delay.
  /device/linaro/bootloader/edk2/PerformancePkg/Library/TscTimerLib/
TscTimerLibShare.c 97 @param[in] Delay A period of time to delay in ticks.
102 IN UINT64 Delay
110 Ticks = AsmReadTsc() + Delay;
123 @param[in] MicroSeconds The minimum number of microseconds to delay.
148 @param[in] NanoSeconds The minimum number of nanoseconds to delay.
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_ReverbGenerator.c 37 /* Initialises the reverb module. The delay buffer size is configured for the */
41 /* control parameters has changed. In this case the delay and filters are only */
55 /* 1. In the delay settings 'Samples' is the number of samples to the end of the */
65 LVM_UINT16 Delay;
82 * Initialise the delay and filters if:
90 * Setup the delay
92 Delay = (LVM_UINT16)LVCS_StereoDelayCS[(LVM_UINT16)pParams->SampleRate];
95 pConfig->DelaySize = (LVM_INT16)(2 * Delay);
156 LVM_UINT16 Delay;
166 * Initialise the delay and filters if
    [all...]

Completed in 1499 milliseconds

1 2 3 4 5 6