示例#1
0
文件: vmvnQs32.c 项目: AlexMioMio/gcc
void test_vmvnQs32 (void)
{
  int32x4_t out_int32x4_t;
  int32x4_t arg0_int32x4_t;

  out_int32x4_t = vmvnq_s32 (arg0_int32x4_t);
}
示例#2
0
inline int32x4_t   vmvnq(const int32x4_t   & v) { return vmvnq_s32(v); }
示例#3
0
inline v_float32x4 operator ~ (const v_float32x4& a)
{
    return v_float32x4(vreinterpretq_f32_s32(vmvnq_s32(vreinterpretq_s32_f32(a.val))));
}