dotprod.h

来自「FEC Optimized viterbi code」· C头文件 代码 · 共 16 行

H
16
字号
/* Internal definitions for dotproduct function */struct dotprod {  int len; /* Number of coefficients */  /* On a MMX or SSE machine, these hold 4 copies of the coefficients,   * preshifted by 0,1,2,3 words to meet all possible input data   * alignments (see Intel ap559 on MMX dot products).   *   * SSE2 is similar, but with 8 words at a time   *   * On a non-MMX machine, only one copy is present   */  signed short *coeffs[8];};

⌨️ 快捷键说明

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