summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-04-04 04:18:58 -0400
committerJeffrey Walton <noloader@gmail.com>2020-04-04 04:18:58 -0400
commitfab6bb22776c8c7568a7f46e4cabd162dab7045f (patch)
tree657327ffff8fec4f63109865f9d438098686bfb3
parentdceb33b17531a2a2538e4871b47b93e369da00f8 (diff)
downloadcryptopp-git-fab6bb22776c8c7568a7f46e4cabd162dab7045f.tar.gz
Update documentation
-rw-r--r--ppc_simd.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ppc_simd.h b/ppc_simd.h
index 19ff7bec..bda636bc 100644
--- a/ppc_simd.h
+++ b/ppc_simd.h
@@ -287,7 +287,7 @@ inline uint32x4_p VecLoad_ALTIVEC(int off, const byte src[16])
/// \brief Loads a vector from a byte array
/// \param src the byte array
-/// \details VecLoad() loads a vector in from a byte array.
+/// \details VecLoad() loads a vector from a byte array.
/// \details VecLoad() uses POWER9's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.
/// VecLoad_ALTIVEC() is used if POWER9 is not available.
@@ -309,7 +309,7 @@ inline uint32x4_p VecLoad(const byte src[16])
/// \brief Loads a vector from a byte array
/// \param src the byte array
-/// \details VecLoad() loads a vector in from a byte array.
+/// \details VecLoad() loads a vector from a byte array.
/// \details VecLoad() uses POWER9's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.
/// VecLoad_ALTIVEC() is used if POWER9 is not available.
@@ -331,7 +331,7 @@ inline uint32x4_p VecLoad(int off, const byte src[16])
/// \brief Loads a vector from a word array
/// \param src the word array
-/// \details VecLoad() loads a vector in from a word array.
+/// \details VecLoad() loads a vector from a word array.
/// \details VecLoad() uses POWER7's and VSX's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.
/// VecLoad_ALTIVEC() is used if POWER7 is not available.
@@ -359,7 +359,7 @@ inline uint32x4_p VecLoad(const word32 src[4])
/// \brief Loads a vector from a word array
/// \param src the word array
/// \param off offset into the word array
-/// \details VecLoad() loads a vector in from a word array.
+/// \details VecLoad() loads a vector from a word array.
/// \details VecLoad() uses POWER7's and VSX's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.
/// VecLoad_ALTIVEC() is used if POWER7 is not available.
@@ -388,7 +388,7 @@ inline uint32x4_p VecLoad(int off, const word32 src[4])
/// \brief Loads a vector from a double word array
/// \param src the double word array
-/// \details VecLoad() loads a vector in from a double word array.
+/// \details VecLoad() loads a vector from a double word array.
/// \details VecLoad() uses POWER8's and VSX's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.
/// VecLoad_ALTIVEC() is used if POWER8 or VSX are not available.
@@ -418,7 +418,7 @@ inline uint64x2_p VecLoad(const word64 src[2])
/// \brief Loads a vector from a double word array
/// \param src the double word array
/// \param off offset into the double word array
-/// \details VecLoad() loads a vector in from a double word array.
+/// \details VecLoad() loads a vector from a double word array.
/// \details VecLoad() uses POWER8's and VSX's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.
/// VecLoad_ALTIVEC() is used if POWER8 or VSX are not available.
@@ -449,7 +449,7 @@ inline uint64x2_p VecLoad(int off, const word64 src[2])
/// \brief Loads a vector from an aligned byte array
/// \param src the byte array
-/// \details VecLoadAligned() loads a vector in from an aligned byte array.
+/// \details VecLoadAligned() loads a vector from an aligned byte array.
/// \details VecLoad() uses POWER7's and VSX's <tt>vec_xl</tt> if available.
/// <tt>vec_ld</tt> is used if POWER7 is not available. The effective
/// address of <tt>src</tt> must be aligned.
@@ -474,7 +474,7 @@ inline uint32x4_p VecLoadAligned(const byte src[16])
/// \brief Loads a vector from an aligned byte array
/// \param src the byte array
/// \param off offset into the byte array
-/// \details VecLoadAligned() loads a vector in from an aligned byte array.
+/// \details VecLoadAligned() loads a vector from an aligned byte array.
/// \details VecLoad() uses POWER7's and VSX's <tt>vec_xl</tt> if available.
/// <tt>vec_ld</tt> is used if POWER7 or VSX are not available. The effective
/// address of <tt>src+off</tt> must be aligned.
@@ -498,7 +498,7 @@ inline uint32x4_p VecLoadAligned(int off, const byte src[16])
/// \brief Loads a vector from a byte array
/// \param src the byte array
-/// \details VecLoadBE() loads a vector in from a byte array. VecLoadBE
+/// \details VecLoadBE() loads a vector from a byte array. VecLoadBE
/// will reverse all bytes in the array on a little endian system.
/// \details VecLoadBE() uses POWER7's and VSX's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.
@@ -523,7 +523,7 @@ inline uint32x4_p VecLoadBE(const byte src[16])
/// \brief Loads a vector from a byte array
/// \param src the byte array
/// \param off offset into the src byte array
-/// \details VecLoadBE() loads a vector in from a byte array. VecLoadBE
+/// \details VecLoadBE() loads a vector from a byte array. VecLoadBE
/// will reverse all bytes in the array on a little endian system.
/// \details VecLoadBE() uses POWER7's and VSX's <tt>vec_xl</tt> if available.
/// The instruction does not require aligned effective memory addresses.