Searched refs:packed24 (Results 1 – 1 of 1) sorted by relevance
1122 static inline int32_t i32_from_p24(const uint8_t *packed24) in i32_from_p24() argument1125 return (packed24[0] << 8) | (packed24[1] << 16) | (packed24[2] << 24); in i32_from_p24()1151 static inline float float_from_p24(const uint8_t *packed24) in float_from_p24() argument1153 return float_from_i32(i32_from_p24(packed24)); in float_from_p24()