示例#1
0
文件: dct64.c 项目: BOTCrusher/sagetv
/*
 * the call via dct64 is a trick to force GCC to use
 * (new) registers for the b1,b2 pointer to the bufs[xx] field
 */
static void dct64(real *a,real *b,real *c)
{
  real bufs[0x40];
  dct64_1(a,b,bufs,bufs+0x20,c);
}
示例#2
0
文件: dct64.c 项目: BOTCrusher/sagetv
void mp3lib_dct64(real *a,real *b,real *c)
{
  real bufs[0x40];
  dct64_1(a,b,bufs,bufs+0x20,c);
}
示例#3
0
/*
 * the call via dct64 is a trick to force GCC to use
 * (new) registers for the b1,b2 pointer to the bufs[xx] field
 */
void dct64(struct StaticData * psd, real *a,real *b,real *c)
{
  real bufs[0x40];
  dct64_1(psd, a,b,bufs,bufs+0x20,c);
}