Lines Matching refs:blockSize
532 constexpr uint32_t blockSize = static_cast<size_t>(EcmaStringHash::BLOCK_SIZE);
544 uint32_t hash[blockSize] = {0};
546 for (; index + blockSize <= sizeFirst; index += blockSize) {
553 if ((sizeFirst % blockSize) + sizeSecond < blockSize) {
561 hash[index % blockSize] = (hash[index % blockSize] << hashShift) -
562 hash[index % blockSize] + dataFirst[index];
566 uint32_t wholeBlockRemain = (blockSize - sizeFirst % blockSize) % blockSize;
569 uint32_t nowHashIndex = sizeFirst % blockSize + index;
573 for (; index + blockSize <= sizeSecond; index += blockSize) {
583 for (uint32_t i = 0; i < blockSize; ++i) {