Searched refs:HowLong (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
H A Dexsystem.c268 * PARAMETERS: HowLong - The amount of time to stall,
283 UINT32 HowLong)
291 if (HowLong > 255) /* 255 microseconds */
300 "Time parameter is too large (%u)", HowLong));
305 AcpiOsStall (HowLong);
316 * PARAMETERS: HowLong - The amount of time to sleep,
327 UINT64 HowLong)
340 if (HowLong > ACPI_MAX_SLEEP)
342 HowLong = ACPI_MAX_SLEEP;
345 AcpiOsSleep (HowLong);
282 AcpiExSystemDoStall( UINT32 HowLong) argument
326 AcpiExSystemDoSleep( UINT64 HowLong) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp361 unsigned HowLong = 0; local
366 if (Last == 'l' || Last == 'L') HowLong++; // Keep track of l's
380 if (HowLong >= 1) {
381 if (HowLong == 1 &&
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9918 int HowLong = 0; local
9945 assert(HowLong <= 2 && "Can't have LLLL modifier");
9946 ++HowLong;
9951 assert(HowLong == 0 && "Can't use both 'L' and 'N' modifiers!");
9956 ++HowLong;
9961 assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!");
9969 HowLong = 1;
9972 HowLong = 2;
9979 assert(HowLong == 0 && "Can't use both 'L' and 'Z' modifiers!");
9987 HowLong
[all...]

Completed in 109 milliseconds