asar coverage - build #


src/asar/
Coverage:
low: ≥ 0%
medium: ≥ 75.0%
high: ≥ 90.0%
Lines:
11 of 11, 0 excluded
100.0%
Functions:
2 of 2, 0 excluded
100.0%
Branches:
2 of 2, 0 excluded
100.0%

libmisc.h
Line Branch Exec Source
1 #pragma once
2 3439 inline int min(int a, int b)
3 {
4
2/2
✓ Branch 2 → 3 taken 14 times.
✓ Branch 2 → 4 taken 3425 times.
3439 return a > b ? b : a;
5 }
6
7 3707 inline unsigned bitround(unsigned v)
8 {
9 3707 v--;
10 3707 v |= v >> 1;
11 3707 v |= v >> 2;
12 3707 v |= v >> 4;
13 3707 v |= v >> 8;
14 3707 v |= v >> 16;
15 3707 v++;
16 3707 return v;
17 }
18