Example #1
0
vector signed int test_sr_12 (vector signed int ra, unsigned int count)
{
  return spu_sr (ra, count);
}
Example #2
0
vector unsigned short test_sr_1 (vector unsigned short ra, vector unsigned short count)
{
  return spu_sr (ra, count);
}
Example #3
0
vector unsigned int test_sr_9 (vector unsigned int ra)
{
  return spu_sr (ra, 11);
}
Example #4
0
vector signed int test_sr_10 (vector signed int ra)
{
  return spu_sr (ra, 11);
}
Example #5
0
vector signed short test_sr_8 (vector signed short ra, unsigned int count)
{
  return spu_sr (ra, count);
}
Example #6
0
vector signed short test_sr_6 (vector signed short ra)
{
  return spu_sr (ra, 11);
}
Example #7
0
vector unsigned short test_sr_5 (vector unsigned short ra)
{
  return spu_sr (ra, 11);
}
Example #8
0
vector unsigned int test_sr_3 (vector unsigned int ra, vector unsigned int count)
{
  return spu_sr (ra, count);
}
Example #9
0
static inline
vec_uint4 vec_SHR(unsigned int n, vec_uint4 x)
{
  return spu_sr(x, n);
}