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

1 2

  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/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/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);
  /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...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciHotPlugSupport.c 249 UINT32 Delay;
252 Delay = (UINT32) ((TimeoutInMicroSeconds / 30) + 1);
271 Delay--;
273 } while (Delay > 0);
  /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...]
video_receiver.cc 287 // If this frame was too late, we should adjust the delay accordingly
460 // Minimum playout delay (used for lip-sync). This is the minimum delay required
461 // to sync with audio. Not included in VideoCodingModule::Delay()
468 // The estimated delay caused by rendering, defaults to
475 // Current video delay
476 int32_t VideoReceiver::Delay() const {
502 // extra delay when RTT is above kLowRttNackMs.
  /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/NetworkPkg/Ip6Dxe/
Ip6If.c 96 UINT64 Delay;
169 // Node should delay joining the solicited-node mulitcast address by a random delay
172 // after the delay time (in milliseconds).
174 Delay = (UINT64) NET_RANDOM (NetRandomInitSeed ());
175 Delay = MultU64x32 (Delay, IP6_ONE_SECOND_IN_MS);
176 Delay = RShiftU64 (Delay, 32);
184 DelayNode->DelayTime = (UINT32) (DivU64x32 (Delay, IP6_TIMER_INTERVAL_IN_MS));
    [all...]
Ip6Mld.c 23 @param[in] DelayTimer The maximum allowed delay before sending a responding
679 Set a random value of the delay timer for the multicast address from the range
680 [0, Maximum Response Delay]. If a timer for any address is already
682 Maximum Response Delay is less than the remaining value of the
684 Delay of zero, each timer is effectively set to zero, and the action
688 @param[in] MaxRespDelay The Maximum Response Delay, in milliseconds.
692 @retval EFI_SUCCESS The delay timer is successfully updated or
705 UINT32 Delay;
708 // If the Query packet specifies a Maximum Response Delay of zero, perform timer
716 Delay = (UINT32) (MaxRespDelay / 1000);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/BootScriptSaveOnS3SaveStateThunk/
ScriptSave.c 509 UINT64 Delay;
520 // PI version: Duration is always 100ns. Delay is LoopTimes.
521 // Total time is: 100ns * Delay.
522 // So Delay = Duration(Microseconds) * LoopTimes / 100ns
526 Delay = MultU64x64 (MultU64x32 (Duration, 10), LoopTimes);
540 Delay
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Command.c 431 UINTN Delay;
434 Delay = (Argc == 1)? 10 : AsciiStrDecimalToUintn (Argv[1]);
436 AsciiPrint ("Hit any key to break. You have %3d seconds", Delay);
437 Status = EblGetCharKey (&Key, Delay, EblPauseCallback);
558 UINTN Delay;
560 Delay = (Argc == 1)? 10 : AsciiStrDecimalToUintn (Argv[1]);
562 gBS->Stall (Delay * 1000000);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/
IsaFloppyCtrl.c 342 // Io delay
367 // Io delay
572 // Io delay
691 // Io delay
799 // Io delay
1034 // Io delay
1075 // Io delay
1099 UINTN Delay;
1115 Delay = ((Timeout * STALL_1_MSECOND) / 50) + 1;
1126 Delay = Delay - 1;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyPei/
FloppyPeim.c 307 UINTN Delay;
319 Delay = ((TimeoutInMseconds * STALL_1_MSECOND) / FDC_CHECK_INTERVAL) + 1;
330 } while (--Delay > 0);
332 if (Delay == 0) {
509 UINTN Delay;
523 Delay = ((TimeoutInMseconds * STALL_1_MSECOND) / FDC_CHECK_INTERVAL) + 1;
536 } while (--Delay > 0);
538 if (Delay == 0) {
    [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/MdeModulePkg/Bus/Pci/UhciDxe/
UhciSched.c 576 UINTN Delay;
583 Delay = TimeOut * UHC_1_MILLISECOND;
595 for (Index = 0; InfiniteLoop || (Index < Delay); Index++) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
BootScriptInternalFormat.h 156 UINT64 Delay;
164 UINT64 Delay;
173 UINT64 Delay;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/S3SaveStateDxe/
S3SaveState.c 346 UINTN Delay;
354 Delay = (UINTN)VA_ARG (Marker, UINT64);
358 // Duration * 1000ns * LoopTimes = Delay * 100ns
360 // so LoopTimes = Delay / 10.
363 Delay,
441 UINT64 Delay;
447 Delay = (UINT64)VA_ARG (Marker, UINT64);
449 return S3BootScriptSaveIoPoll (Width, Address, Data, DataMask, Delay);
470 UINT64 Delay;
477 Delay = (UINT64)VA_ARG (Marker, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/SmmS3SaveState/
SmmS3SaveState.c 345 UINTN Delay;
353 Delay = (UINTN)VA_ARG (Marker, UINT64);
357 // Duration * 1000ns * LoopTimes = Delay * 100ns
359 // so LoopTimes = Delay / 10.
362 Delay,
440 UINT64 Delay;
446 Delay = (UINT64)VA_ARG (Marker, UINT64);
448 return S3BootScriptSaveIoPoll (Width, Address, Data, DataMask, Delay);
469 UINT64 Delay;
476 Delay = (UINT64)VA_ARG (Marker, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
Shell.h 73 UINT32 Delay:1; ///< Was "-delay[:n] found on command line
85 UINTN Delay; ///< Seconds of delay default:5.
221 this will check that the correct command line parameters were passed, handle the delay, and then start running the script.
  /external/webrtc/webrtc/modules/audio_coding/test/
insert_packet_with_timing.cc 41 // Delay logging
42 DEFINE_string(delay, "", "Log for delay.");
212 // Jitter buffer delay.
213 void Delay(int* optimal_delay, int* current_delay) {
285 std::cout << "Cannot open the file to log delay values." << std::endl;
297 test.Delay(&optimal_delay_ms, &current_delay_ms);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
AhciMode.c 160 UINT64 Delay;
169 Delay = DivU64x32 (Timeout, 1000) + 1;
186 Delay--;
188 } while (InfiniteWait || (Delay > 0));
215 UINT64 Delay;
224 Delay = DivU64x32 (Timeout, 1000) + 1;
247 Delay--;
249 } while (InfiniteWait || (Delay > 0));
702 UINT64 Delay;
784 Delay = DivU64x32 (Timeout, 1000) + 1;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsHci.c 38 UINT64 Delay;
47 Delay = DivU64x32 (Timeout, 10) + 1;
64 Delay--;
66 } while (InfiniteWait || (Delay > 0));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddkbd.h 97 USHORT Delay;
  /development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp 575 // Randomly delay the current thread.
578 // Prepare for a call to Delay() by getting random data. This call might grab
585 // Randomly delay the current thread based on a previous call to SeedRandom().
586 void Delay() {
607 break; // Do nothing, no delay.
631 // Delay random amount before calling the API that conflicts with
633 r.Delay();
757 // Delay random amount before calling the API that conflicts with
759 r.Delay();

Completed in 1455 milliseconds

1 2