* Return the little-endian word at p. */
| 319 | * Return the little-endian word at p. |
| 320 | */ |
| 321 | static unsigned long lword (unsigned char *p) { |
| 322 | unsigned long n; |
| 323 | n = p[1]; |
| 324 | n = (n << 8) + p[0]; |
| 325 | return n; |
| 326 | } |
| 327 | |
| 328 | /* |
| 329 | * Mirror the bottom n bits of x. |
no outgoing calls
no test coverage detected