| D | OSFastCast.h | 225 #define OSu8tof32(in,out) asm volatile ("psq_l %0, 0(%1), 1, 2 " : "=f" (*(out)) : "b" (in) ) argument 226 #define OSu16tof32(in,out) asm volatile ("psq_l %0, 0(%1), 1, 3 " : "=f" (*(out)) : "b" (in) ) argument 227 #define OSs8tof32(in,out) asm volatile ("psq_l %0, 0(%1), 1, 4 " : "=f" (*(out)) : "b" (in) ) argument 228 #define OSs16tof32(in,out) asm volatile ("psq_l %0, 0(%1), 1, 5 " : "=f" (*(out)) : "b" (in) ) argument 242 static inline void OSu8tof32(register u8* in, volatile register f32* out) in OSu8tof32() argument 244 *out = __OSu8tof32(in); in OSu8tof32() 258 static inline void OSu16tof32(register u16* in, volatile register f32* out) in OSu16tof32() argument 260 *out = __OSu16tof32(in); in OSu16tof32() 274 static inline void OSs8tof32(register s8* in, volatile register f32* out) in OSs8tof32() argument 276 *out = __OSs8tof32(in); in OSs8tof32() [all …]
|