'pad(false, a, b)' computes the PADL(a, b) function. * 'pad( true, a, b)' computes the PADR(a, b) function. */
| 27 | * 'pad( true, a, b)' computes the PADR(a, b) function. |
| 28 | */ |
| 29 | static inline ubounded pad(bool right, ubounded a, ubounded b) { |
| 30 | return bounded_max(a, b) - (right ? b : a); |
| 31 | } |
| 32 | |
| 33 | enum { overhead = 100 }; /* milli weight units */ |
| 34 | #endif |
no test coverage detected