summaryrefslogtreecommitdiff
path: root/arm_simd.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-05-25 23:08:55 -0400
committerJeffrey Walton <noloader@gmail.com>2021-05-25 23:08:55 -0400
commit5d26a4fadf1916377f788ec09e2f1a9c695cf468 (patch)
tree08eccfa0f66754f2c40e63c4fc8b900544950e7c /arm_simd.h
parentb2571d47c6d316bf8e59dbda64daeeaafc395d01 (diff)
downloadcryptopp-git-5d26a4fadf1916377f788ec09e2f1a9c695cf468.tar.gz
Update documentation
Diffstat (limited to 'arm_simd.h')
-rw-r--r--arm_simd.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/arm_simd.h b/arm_simd.h
index 45a2d62a..fb75c925 100644
--- a/arm_simd.h
+++ b/arm_simd.h
@@ -20,8 +20,8 @@
#if (CRYPTOPP_ARM_CRC32_AVAILABLE) || defined(CRYPTOPP_DOXYGEN_PROCESSING)
/// \brief CRC32
-/// \param a the first value
-/// \param b the second value
+/// \param crc the starting crc value
+/// \param val the value to checksum
/// \return CRC32 value
/// \since Crypto++ 8.6
inline uint32_t CRC32B (uint32_t crc, uint8_t val)
@@ -36,8 +36,8 @@ inline uint32_t CRC32B (uint32_t crc, uint8_t val)
}
/// \brief CRC32
-/// \param a the first value
-/// \param b the second value
+/// \param crc the starting crc value
+/// \param val the value to checksum
/// \return CRC32 value
/// \since Crypto++ 8.6
inline uint32_t CRC32W (uint32_t crc, uint32_t val)
@@ -52,8 +52,8 @@ inline uint32_t CRC32W (uint32_t crc, uint32_t val)
}
/// \brief CRC32
-/// \param a the first value
-/// \param b the second value
+/// \param crc the starting crc value
+/// \param vals the values to checksum
/// \return CRC32 value
/// \since Crypto++ 8.6
inline uint32_t CRC32Wx4 (uint32_t crc, const uint32_t vals[4])
@@ -73,8 +73,8 @@ inline uint32_t CRC32Wx4 (uint32_t crc, const uint32_t vals[4])
}
/// \brief CRC32-C
-/// \param a the first value
-/// \param b the second value
+/// \param crc the starting crc value
+/// \param val the value to checksum
/// \return CRC32-C value
/// \since Crypto++ 8.6
inline uint32_t CRC32CB (uint32_t crc, uint8_t val)
@@ -89,8 +89,8 @@ inline uint32_t CRC32CB (uint32_t crc, uint8_t val)
}
/// \brief CRC32-C
-/// \param a the first value
-/// \param b the second value
+/// \param crc the starting crc value
+/// \param val the value to checksum
/// \return CRC32-C value
/// \since Crypto++ 8.6
inline uint32_t CRC32CW (uint32_t crc, uint32_t val)
@@ -105,8 +105,8 @@ inline uint32_t CRC32CW (uint32_t crc, uint32_t val)
}
/// \brief CRC32-C
-/// \param a the first value
-/// \param b the second value
+/// \param crc the starting crc value
+/// \param vals the values to checksum
/// \return CRC32-C value
/// \since Crypto++ 8.6
inline uint32_t CRC32CWx4 (uint32_t crc, const uint32_t vals[4])