| 45 | } |
| 46 | |
| 47 | static inline void |
| 48 | SIVALu(uchar *buf, int pos, uint32 val) |
| 49 | { |
| 50 | CVAL(buf, pos) = val; |
| 51 | CVAL(buf, pos + 1) = val >> 8; |
| 52 | CVAL(buf, pos + 2) = val >> 16; |
| 53 | CVAL(buf, pos + 3) = val >> 24; |
| 54 | } |
| 55 | |
| 56 | static inline int64 |
| 57 | IVAL64(const char *buf, int pos) |
no outgoing calls
no test coverage detected