Lines Matching refs:val
149 static inline void storeShortLE(u1* buf, u2 val) in storeShortLE() argument
151 *buf++ = (u1) val; in storeShortLE()
152 *buf++ = (u1) (val >> 8); in storeShortLE()
154 static inline void storeIntLE(u1* buf, u4 val) in storeIntLE() argument
156 *buf++ = (u1) val; in storeIntLE()
157 *buf++ = (u1) (val >> 8); in storeIntLE()
158 *buf++ = (u1) (val >> 16); in storeIntLE()
159 *buf++ = (u1) (val >> 24); in storeIntLE()
161 static inline void storeLongLE(u1* buf, u8 val) in storeLongLE() argument
163 *buf++ = (u1) val; in storeLongLE()
164 *buf++ = (u1) (val >> 8); in storeLongLE()
165 *buf++ = (u1) (val >> 16); in storeLongLE()
166 *buf++ = (u1) (val >> 24); in storeLongLE()
167 *buf++ = (u1) (val >> 32); in storeLongLE()
168 *buf++ = (u1) (val >> 40); in storeLongLE()
169 *buf++ = (u1) (val >> 48); in storeLongLE()
170 *buf++ = (u1) (val >> 56); in storeLongLE()