Searched refs:baseInstructions (Results 1 – 1 of 1) sorted by relevance
32 $baseInstructions = $baseSummary[$name]['instructions'] ?? null;35 . formatInstructions($baseInstructions) . " | "37 . formatDiff($baseInstructions, $headInstructions) . " |\n";55 function formatDiff(?int $baseInstructions, int $headInstructions): string { argument56 if ($baseInstructions === null) {59 $instructionDiff = $headInstructions - $baseInstructions;60 return sprintf('%.2f%%', $instructionDiff / $baseInstructions * 100);
Completed in 3 milliseconds