HomeSort by relevance Sort by last modified time
    Searched refs:bin_op (Results 1 - 4 of 4) sorted by null

  /external/opencv3/modules/hal/include/opencv2/hal/
intrin_cpp.hpp 126 #define OPENCV_HAL_IMPL_BIN_OP(bin_op) \
128 operator bin_op (const v_reg<_Tp, n>& a, const v_reg<_Tp, n>& b) \
132 c.s[i] = saturate_cast<_Tp>(a.s[i] bin_op b.s[i]); \
136 operator bin_op##= (v_reg<_Tp, n>& a, const v_reg<_Tp, n>& b) \
139 a.s[i] = saturate_cast<_Tp>(a.s[i] bin_op b.s[i]); \
251 #define OPENCV_HAL_IMPL_ADD_SUB_OP(func, bin_op, cast_op, _Tp2) \
258 c.s[i] = cast_op(a.s[i] bin_op b.s[i]); \
intrin_neon.hpp 301 #define OPENCV_HAL_IMPL_NEON_BIN_OP(bin_op, _Tpvec, intrin) \
302 inline _Tpvec operator bin_op (const _Tpvec& a, const _Tpvec& b) \
306 inline _Tpvec& operator bin_op##= (_Tpvec& a, const _Tpvec& b) \
399 #define OPENCV_HAL_IMPL_NEON_FLT_BIT_OP(bin_op, intrin) \
400 inline v_float32x4 operator bin_op (const v_float32x4& a, const v_float32x4& b) \
404 inline v_float32x4& operator bin_op##= (v_float32x4& a, const v_float32x4& b) \
intrin_sse.hpp 563 #define OPENCV_HAL_IMPL_SSE_BIN_OP(bin_op, _Tpvec, intrin) \
564 inline _Tpvec operator bin_op (const _Tpvec& a, const _Tpvec& b) \
568 inline _Tpvec& operator bin_op##= (_Tpvec& a, const _Tpvec& b) \
    [all...]
  /art/compiler/optimizing/
bounds_check_elimination.cc 73 HBinaryOperation* bin_op = instruction->AsBinaryOperation(); local
74 HInstruction* left = bin_op->GetLeft();
75 HInstruction* right = bin_op->GetRight();
    [all...]

Completed in 71 milliseconds