コード例 #1
0
ファイル: vqshlu_ns64.c プロジェクト: AlexMioMio/gcc
void test_vqshlu_ns64 (void)
{
  uint64x1_t out_uint64x1_t;
  int64x1_t arg0_int64x1_t;

  out_uint64x1_t = vqshlu_n_s64 (arg0_int64x1_t, 1);
}
コード例 #2
0
uint64x1_t
test_vqshlu_n_s64 (int64x1_t a)
{
  return vqshlu_n_s64 (a, 6);
}
コード例 #3
0
ファイル: arm64_vshift.c プロジェクト: Bigcheese/clang
int64x1_t test_vqshlu_n_s64(int64x1_t in) {
    // CHECK-LABEL: @test_vqshlu_n_s64
    // CHECK: call <1 x i64> @llvm.arm64.neon.sqshlu.v1i64(<1 x i64> %in, <1 x i64> <i64 1>)
    return vqshlu_n_s64(in, 1);
}