• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/IOAudioFamily-197.4.2/PCMBlitterLib/

Lines Matching refs:src

69 void IOAF_NativeInt16ToFloat32( const SInt16 *src, Float32 *dest, unsigned int count )
71 NativeInt16ToFloat32_X86(src, dest, count);
74 void IOAF_SwapInt16ToFloat32( const SInt16 *src, Float32 *dest, unsigned int count )
76 SwapInt16ToFloat32_X86(src, dest, count);
79 void IOAF_NativeInt24ToFloat32( const UInt8 *src, Float32 *dest, unsigned int count )
81 NativeInt24ToFloat32_Portable(src, dest, count);
84 void IOAF_SwapInt24ToFloat32( const UInt8 *src, Float32 *dest, unsigned int count )
86 SwapInt24ToFloat32_Portable(src, dest, count);
89 void IOAF_NativeInt32ToFloat32( const SInt32 *src, Float32 *dest, unsigned int count )
91 NativeInt32ToFloat32_X86(src, dest, count);
94 void IOAF_SwapInt32ToFloat32( const SInt32 *src, Float32 *dest, unsigned int count )
96 SwapInt32ToFloat32_X86(src, dest, count);
99 void IOAF_Float32ToNativeInt16( const Float32 *src, SInt16 *dest, unsigned int count )
101 Float32ToNativeInt16_X86(src, dest, count);
104 void IOAF_Float32ToSwapInt16( const Float32 *src, SInt16 *dest, unsigned int count )
106 Float32ToSwapInt16_X86(src, dest, count);
109 void IOAF_Float32ToNativeInt24( const Float32 *src, UInt8 *dest, unsigned int count )
111 Float32ToNativeInt24_X86(src, dest, count);
114 void IOAF_Float32ToSwapInt24( const Float32 *src, UInt8 *dest, unsigned int count )
116 Float32ToSwapInt24_Portable(src, dest, count);
119 void IOAF_Float32ToNativeInt32( const Float32 *src, SInt32 *dest, unsigned int count )
121 Float32ToNativeInt32_X86(src, dest, count);
124 void IOAF_Float32ToSwapInt32( const Float32 *src, SInt32 *dest, unsigned int count )
126 Float32ToSwapInt32_X86(src, dest, count);
145 // #1 efficient loop - both src/dst are 16-byte aligned
182 // #3 efficient loop - src unaligned (no streaming reads). dst aligned
198 // #2 efficient loop - src aligned, dst not aligned
210 // #4 efficient loop - src unaligned (no streaming reads). dst unaligned