From f202e50a8b89f143f74c393e33e0154817bd3c1d Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Thu, 23 Nov 2017 18:02:04 +0000 Subject: COMPMID-556 Improved indentation and error handling in format_doxygen.py Change-Id: I6f51ffe6c324d9da500716b52c97c344f2a2a164 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/110486 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com Reviewed-by: Georgios Pinitas --- arm_compute/core/FixedPoint.h | 126 +++++++++++++++++++++--------------------- 1 file changed, 63 insertions(+), 63 deletions(-) (limited to 'arm_compute/core/FixedPoint.h') diff --git a/arm_compute/core/FixedPoint.h b/arm_compute/core/FixedPoint.h index 82c2d3347e..6e00500b10 100644 --- a/arm_compute/core/FixedPoint.h +++ b/arm_compute/core/FixedPoint.h @@ -225,96 +225,96 @@ qint16_t sqmull_qs8(qint8_t a, qint8_t b, int fixed_point_position); qint32_t sqmull_qs16(qint16_t a, qint16_t b, int fixed_point_position); /** 16 bit fixed point scalar saturating multiply -* -* @param[in] a First 16 bit fixed point input -* @param[in] b Second 16 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 16 bit fixed point multiplication. The result is saturated in case of overflow -*/ + * + * @param[in] a First 16 bit fixed point input + * @param[in] b Second 16 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 16 bit fixed point multiplication. The result is saturated in case of overflow + */ qint16_t sqmul_qs16(qint16_t a, qint16_t b, int fixed_point_position); /** 8 bit fixed point scalar inverse square root -* -* @param[in] a 8 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 8 bit fixed point inverse square root. -*/ + * + * @param[in] a 8 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 8 bit fixed point inverse square root. + */ qint8_t sinvsqrt_qs8(qint8_t a, int fixed_point_position); /** 16 bit fixed point scalar inverse square root -* -* @param[in] a 16 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 16 bit fixed point inverse square root. -*/ + * + * @param[in] a 16 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 16 bit fixed point inverse square root. + */ qint16_t sinvsqrt_qs16(qint16_t a, int fixed_point_position); /** 8 bit fixed point scalar division -* -* @param[in] a First 8 bit fixed point input -* @param[in] b Second 8 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 8 bit fixed point division. -*/ + * + * @param[in] a First 8 bit fixed point input + * @param[in] b Second 8 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 8 bit fixed point division. + */ qint8_t sdiv_qs8(qint8_t a, qint8_t b, int fixed_point_position); /** 16 bit fixed point scalar division -* -* @param[in] a First 16 bit fixed point input -* @param[in] b Second 16 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 16 bit fixed point division. -*/ + * + * @param[in] a First 16 bit fixed point input + * @param[in] b Second 16 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 16 bit fixed point division. + */ qint16_t sdiv_qs16(qint16_t a, qint16_t b, int fixed_point_position); /** 8 bit fixed point scalar exponential -* -* @param[in] a 8 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 8 bit fixed point exponential. -*/ + * + * @param[in] a 8 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 8 bit fixed point exponential. + */ qint8_t sqexp_qs8(qint8_t a, int fixed_point_position); /** 16 bit fixed point scalar exponential -* -* @param[in] a 16 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 16 bit fixed point exponential. -*/ + * + * @param[in] a 16 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 16 bit fixed point exponential. + */ qint16_t sqexp_qs16(qint16_t a, int fixed_point_position); /** 16 bit fixed point scalar exponential -* -* @param[in] a 16 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 16 bit fixed point exponential. -*/ + * + * @param[in] a 16 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 16 bit fixed point exponential. + */ qint16_t sexp_qs16(qint16_t a, int fixed_point_position); /** 8 bit fixed point scalar logarithm -* -* @param[in] a 8 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 8 bit fixed point logarithm. -*/ + * + * @param[in] a 8 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 8 bit fixed point logarithm. + */ qint8_t slog_qs8(qint8_t a, int fixed_point_position); /** 16 bit fixed point scalar logarithm -* -* @param[in] a 16 bit fixed point input -* @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number -* -* @return The result of the 16 bit fixed point logarithm. -*/ + * + * @param[in] a 16 bit fixed point input + * @param[in] fixed_point_position Fixed point position that expresses the number of bits for the fractional part of the number + * + * @return The result of the 16 bit fixed point logarithm. + */ qint16_t slog_qs16(qint16_t a, int fixed_point_position); /** Convert an 8 bit fixed point to float -- cgit v1.2.1