Lines Matching refs:val
112 static inline void storeShortLE(u1* buf, u2 val) in storeShortLE() argument
114 *buf++ = (u1) val; in storeShortLE()
115 *buf++ = (u1) (val >> 8); in storeShortLE()
117 static inline void storeIntLE(u1* buf, u4 val) in storeIntLE() argument
119 *buf++ = (u1) val; in storeIntLE()
120 *buf++ = (u1) (val >> 8); in storeIntLE()
121 *buf++ = (u1) (val >> 16); in storeIntLE()
122 *buf++ = (u1) (val >> 24); in storeIntLE()
124 static inline void storeLongLE(u1* buf, u8 val) in storeLongLE() argument
126 *buf++ = (u1) val; in storeLongLE()
127 *buf++ = (u1) (val >> 8); in storeLongLE()
128 *buf++ = (u1) (val >> 16); in storeLongLE()
129 *buf++ = (u1) (val >> 24); in storeLongLE()
130 *buf++ = (u1) (val >> 32); in storeLongLE()
131 *buf++ = (u1) (val >> 40); in storeLongLE()
132 *buf++ = (u1) (val >> 48); in storeLongLE()
133 *buf++ = (u1) (val >> 56); in storeLongLE()