81 const U32 offsetMod4 = offset % 4;
82 if (offsetMod4 != 0) {
83 const U8 wordLength =
static_cast<U8>(
min(length, 4 - offsetMod4));
84 this->addWordUnaligned(
86 static_cast<U8>(offset + index),
93 for ( ; index + 4 <= length; index += 4)
94 addWordAligned(&data[index]);
98 const U8 wordLength =
static_cast<U8>(length - index);
99 this->addWordUnaligned(
101 static_cast<U8>(offset + index),