📄 dspf_sp_blk_move.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 + -