コード例 #1
0
ファイル: vsx-mass-1.c プロジェクト: MaxKellermann/gcc
void
test_double_hypot (void)
{
  int i;

  for (i = 0; i < SIZE; i++)
    d1[i] = __builtin_hypot (d2[i], d3[i]);
}
コード例 #2
0
inline Y hypot(const Y& v1,const Y& v2)
{
    return __builtin_hypot(v1,v2);
}