Searched refs:u32Val (Results 1 – 1 of 1) sorted by relevance
62 static inline void lim_copy_u32(uint8_t *ptr, uint32_t u32Val) in lim_copy_u32() argument66 *ptr++ = (uint8_t) (u32Val & 0xff); in lim_copy_u32()67 *ptr++ = (uint8_t) ((u32Val >> 8) & 0xff); in lim_copy_u32()68 *ptr++ = (uint8_t) ((u32Val >> 16) & 0xff); in lim_copy_u32()69 *ptr = (uint8_t) ((u32Val >> 24) & 0xff); in lim_copy_u32()