⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dspf_sp_blk_move.h

📁 详细的OFDM设计过程
💻 H
字号:
/* ======================================================================== */
/*  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.                            */
/* ======================================================================== */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -