Clear all but the 'n' least significant bits of a UWORD. * Precondition: 0 < n <= UWORD_BIT */
| 49 | * Precondition: 0 < n <= UWORD_BIT |
| 50 | */ |
| 51 | static inline UWORD LSBkeep(UWORD x, size_t n) { |
| 52 | return (UWORD)(x & (UWORD_MAX >> (UWORD_BIT - n))); |
| 53 | } |
| 54 | #endif |
no outgoing calls
no test coverage detected