Home
last modified time | relevance | path

Searched refs:startingBit (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libc/test/src/math/differential_testing/
H A DBinaryOpSingleOutputDiff.h26 UIntType startingBit, UIntType endingBit, in run_diff_in_range() argument
30 if (endingBit < startingBit) { in run_diff_in_range()
34 UIntType step = (endingBit - startingBit) / N; in run_diff_in_range()
35 for (UIntType bitsX = startingBit, bitsY = endingBit;; in run_diff_in_range()
60 UIntType startingBit, UIntType endingBit, in run_perf_in_range() argument
64 if (endingBit < startingBit) { in run_perf_in_range()
68 UIntType step = (endingBit - startingBit) / N; in run_perf_in_range()
69 for (UIntType bitsX = startingBit, bitsY = endingBit;; in run_perf_in_range()
H A DSingleInputSingleOutputDiff.h49 static void runPerfInRange(Func myFunc, Func otherFunc, UIntType startingBit, in runPerfInRange() argument
54 for (UIntType bits = startingBit;; ++bits) { in runPerfInRange()
67 UIntType numberOfRuns = endingBit - startingBit + 1; in runPerfInRange()