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 3366 inline int min(int a, int b)
3 {
4
2/2
✓ Branch 2 → 3 taken 14 times.
✓ Branch 2 → 4 taken 3352 times.
3366 return a > b ? b : a;
5 }
6
7 3630 inline unsigned bitround(unsigned v)
8 {
9 3630 v--;
10 3630 v |= v >> 1;
11 3630 v |= v >> 2;
12 3630 v |= v >> 4;
13 3630 v |= v >> 8;
14 3630 v |= v >> 16;
15 3630 v++;
16 3630 return v;
17 }
18