/* ======================================================================== */ /* TEXAS INSTRUMENTS, INC. */ /* */ /* NAME */ /* DSPF_sp_blk_move -- Single Precision Block move */ /* */ /* USAGE */ /* This routine has the following C prototype: */ /* */ /* void DSPF_sp_blk_move( */ /* const float * x, */ /* float *restrict r, */ /* int nx */ /* ) */ /* */ /* x[nx]: Pointer to source data to be moved. */ /* r[nx]: Pointer to destination array. */ /* nx: Number of floats to move. */ /* */ /* DESCRIPTION */ /* */ /* This routine moves nx floats from one memory location */ /* pointed to by x to another pointed to by r. */ /* */ /* ------------------------------------------------------------------------ */ /* Copyright (c) 2003 Texas Instruments, Incorporated. */ /* All Rights Reserved. */ /* ======================================================================== */ #ifndef DSPF_SP_BLK_MOVE_ #define DSPF_SP_BLK_MOVE_ 1 void DSPF_sp_blk_move(const float * x, float *restrict r, int nx); #endif /* ======================================================================== */ /* End of file: dspf_sp_blk_move.h */ /* ------------------------------------------------------------------------ */ /* Copyright (C) 2003 Texas Instruments, Incorporated. */ /* All Rights Reserved. */ /* ======================================================================== */