Commit cbf2b79e authored by Maksim Shabunin's avatar Maksim Shabunin

Fixed documentation warnings produced by updated doxygen

parent 0cb1e964
...@@ -116,32 +116,32 @@ These operations allow to reorder or recombine elements in one or multiple vecto ...@@ -116,32 +116,32 @@ These operations allow to reorder or recombine elements in one or multiple vecto
Element-wise binary and unary operations. Element-wise binary and unary operations.
- Arithmetics: - Arithmetics:
@ref operator+(const v_reg &a, const v_reg &b) "+", @ref operator +(const v_reg &a, const v_reg &b) "+",
@ref operator-(const v_reg &a, const v_reg &b) "-", @ref operator -(const v_reg &a, const v_reg &b) "-",
@ref operator*(const v_reg &a, const v_reg &b) "*", @ref operator *(const v_reg &a, const v_reg &b) "*",
@ref operator/(const v_reg &a, const v_reg &b) "/", @ref operator /(const v_reg &a, const v_reg &b) "/",
@ref v_mul_expand @ref v_mul_expand
- Non-saturating arithmetics: @ref v_add_wrap, @ref v_sub_wrap - Non-saturating arithmetics: @ref v_add_wrap, @ref v_sub_wrap
- Bitwise shifts: - Bitwise shifts:
@ref operator<<(const v_reg &a, int s) "<<", @ref operator <<(const v_reg &a, int s) "<<",
@ref operator>>(const v_reg &a, int s) ">>", @ref operator >>(const v_reg &a, int s) ">>",
@ref v_shl, @ref v_shr @ref v_shl, @ref v_shr
- Bitwise logic: - Bitwise logic:
@ref operator&(const v_reg &a, const v_reg &b) "&", @ref operator &(const v_reg &a, const v_reg &b) "&",
@ref operator|(const v_reg &a, const v_reg &b) "|", @ref operator |(const v_reg &a, const v_reg &b) "|",
@ref operator^(const v_reg &a, const v_reg &b) "^", @ref operator ^(const v_reg &a, const v_reg &b) "^",
@ref operator~(const v_reg &a) "~" @ref operator ~(const v_reg &a) "~"
- Comparison: - Comparison:
@ref operator>(const v_reg &a, const v_reg &b) ">", @ref operator >(const v_reg &a, const v_reg &b) ">",
@ref operator>=(const v_reg &a, const v_reg &b) ">=", @ref operator >=(const v_reg &a, const v_reg &b) ">=",
@ref operator<(const v_reg &a, const v_reg &b) "<", @ref operator <(const v_reg &a, const v_reg &b) "<",
@ref operator<=(const v_reg &a, const v_reg &b) "<=", @ref operator <=(const v_reg &a, const v_reg &b) "<=",
@ref operator==(const v_reg &a, const v_reg &b) "==", @ref operator ==(const v_reg &a, const v_reg &b) "==",
@ref operator!=(const v_reg &a, const v_reg &b) "!=" @ref operator !=(const v_reg &a, const v_reg &b) "!="
- min/max: @ref v_min, @ref v_max - min/max: @ref v_min, @ref v_max
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment