Home
last modified time | relevance | path

Searched defs:v_int16x32 (Results 1 – 2 of 2) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/hal/
H A Dintrin_avx512.hpp216 struct v_int16x32 struct
218 typedef short lane_type;
219 enum { nlanes = 32 };
220 __m512i val;
222 explicit v_int16x32(__m512i v) : val(v) {} in v_int16x32() function
223v_int16x32(short v0, short v1, short v2, short v3, short v4, short v5, short v6, short v7, in v_int16x32() function
233 v_int16x32() {} in v_int16x32() argument
235 static inline v_int16x32 zero() { return v_int16x32(_mm512_setzero_si512()); } in zero()
237 short get0() const { return (short)_v_cvtsi512_si32(val); } in get0()
826 OPENCV_HAL_IMPL_AVX512_SHIFT_OP(v_uint16x32, v_int16x32, epi16) in OPENCV_HAL_IMPL_AVX512_SHIFT_OP() argument
H A Dintrin_cpp.hpp539 typedef v_reg<short, 32> v_int16x32; typedef