| 36 | #if CAREFUL_ALIGNMENT |
| 37 | |
| 38 | static inline uint32 |
| 39 | IVALu(const uchar *buf, int pos) |
| 40 | { |
| 41 | return UVAL(buf, pos) |
| 42 | | UVAL(buf, pos + 1) << 8 |
| 43 | | UVAL(buf, pos + 2) << 16 |
| 44 | | UVAL(buf, pos + 3) << 24; |
| 45 | } |
| 46 | |
| 47 | static inline void |
| 48 | SIVALu(uchar *buf, int pos, uint32 val) |
no outgoing calls
no test coverage detected