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

/freebsd-11.0-release/sys/contrib/dev/acpica/components/executer/
H A Dexsystem.c160 * PARAMETERS: HowLong - The amount of time to stall,
175 UINT32 HowLong)
183 if (HowLong > 255) /* 255 microseconds */
192 "Time parameter is too large (%u)", HowLong));
197 AcpiOsStall (HowLong);
208 * PARAMETERS: HowLong - The amount of time to sleep,
219 UINT64 HowLong)
232 if (HowLong > ACPI_MAX_SLEEP)
234 HowLong = ACPI_MAX_SLEEP;
237 AcpiOsSleep (HowLong);
174 AcpiExSystemDoStall( UINT32 HowLong) argument
218 AcpiExSystemDoSleep( UINT64 HowLong) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp350 unsigned HowLong = 0; local
355 if (Last == 'l' || Last == 'L') HowLong++; // Keep track of l's
369 if (HowLong >= 1) {
370 if (HowLong == 1 &&
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp8018 int HowLong = 0; local
8041 assert(HowLong <= 2 && "Can't have LLLL modifier");
8042 ++HowLong;
8046 assert(HowLong == 0 && "Can't use both 'L' and 'W' modifiers!");
8051 HowLong = 1;
8054 HowLong = 2;
8066 assert(HowLong == 0 && !Signed && !Unsigned &&
8071 assert(HowLong == 0 && !Signed && !Unsigned &&
8076 assert(HowLong == 0 && !Signed && !Unsigned &&
8081 assert(HowLong <
[all...]

Completed in 81 milliseconds