summaryrefslogtreecommitdiff
path: root/arm_simd.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-05-25 23:39:16 -0400
committerJeffrey Walton <noloader@gmail.com>2021-05-25 23:39:16 -0400
commit28fc786079d945a22957ff7b3bec8c9bfc5ad50f (patch)
tree7d0ff77e03d9bbe8631804880671bddd60c30834 /arm_simd.h
parentb5cc2adb11cf94706b26375caa9b2aeda6d574aa (diff)
downloadcryptopp-git-28fc786079d945a22957ff7b3bec8c9bfc5ad50f.tar.gz
Update documentation
Diffstat (limited to 'arm_simd.h')
-rw-r--r--arm_simd.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/arm_simd.h b/arm_simd.h
index fb75c925..fbd16ca1 100644
--- a/arm_simd.h
+++ b/arm_simd.h
@@ -19,7 +19,7 @@
#endif
#if (CRYPTOPP_ARM_CRC32_AVAILABLE) || defined(CRYPTOPP_DOXYGEN_PROCESSING)
-/// \brief CRC32
+/// \brief CRC32 checksum
/// \param crc the starting crc value
/// \param val the value to checksum
/// \return CRC32 value
@@ -35,7 +35,7 @@ inline uint32_t CRC32B (uint32_t crc, uint8_t val)
#endif
}
-/// \brief CRC32
+/// \brief CRC32 checksum
/// \param crc the starting crc value
/// \param val the value to checksum
/// \return CRC32 value
@@ -51,7 +51,7 @@ inline uint32_t CRC32W (uint32_t crc, uint32_t val)
#endif
}
-/// \brief CRC32
+/// \brief CRC32 checksum
/// \param crc the starting crc value
/// \param vals the values to checksum
/// \return CRC32 value
@@ -72,7 +72,7 @@ inline uint32_t CRC32Wx4 (uint32_t crc, const uint32_t vals[4])
#endif
}
-/// \brief CRC32-C
+/// \brief CRC32-C checksum
/// \param crc the starting crc value
/// \param val the value to checksum
/// \return CRC32-C value
@@ -88,7 +88,7 @@ inline uint32_t CRC32CB (uint32_t crc, uint8_t val)
#endif
}
-/// \brief CRC32-C
+/// \brief CRC32-C checksum
/// \param crc the starting crc value
/// \param val the value to checksum
/// \return CRC32-C value
@@ -104,7 +104,7 @@ inline uint32_t CRC32CW (uint32_t crc, uint32_t val)
#endif
}
-/// \brief CRC32-C
+/// \brief CRC32-C checksum
/// \param crc the starting crc value
/// \param vals the values to checksum
/// \return CRC32-C value