HomeSort by: relevance | last modified time | path
    Searched defs:Delta (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
aslcompile.c 816 UINT32 Delta;
834 /* Delta will be in 100-nanosecond units */
836 Delta = (UINT32) (Event->EndTime - Event->StartTime);
838 MicroSeconds = Delta / ACPI_100NSEC_PER_USEC;
839 MilliSeconds = Delta / ACPI_100NSEC_PER_MSEC;
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_fdr_controller.h 168 // delta is too large to fit in a 32-bit signed integer, so we write a
262 auto Delta = TSC - LatestTSC;
266 mask(FuncId), Delta);
288 auto Delta = TSC - LatestTSC;
291 mask(FuncId), Delta);
301 auto Delta = TSC - LatestTSC;
308 mask(FuncId), Delta, Arg);
326 auto Delta = TSC - LatestTSC;
331 Delta);
341 auto Delta = TSC - LatestTSC
    [all...]
xray_basic_logging.cc 208 // - The Delta of the TSCs is less than the threshold amount of time we're
219 auto Delta = TSC - StackTop.TSC;
220 if (Delta < atomic_load(&ThresholdTicks, memory_order_relaxed)) {
234 // First determine whether the delta between the function's enter record and

Completed in 12 milliseconds