Lines Matching refs:CountValue
5133 const uint32_t CountValue = IsCountConst ? CountConst->getValue() : 0;
5136 CountValue <= BytesPerStorep * Traits::MEMCPY_UNROLL_LIMIT) {
5138 if (CountValue == 0)
5148 Type Ty = largestTypeInSize(CountValue);
5151 uint32_t RemainingBytes = CountValue;
5152 int32_t Offset = (CountValue & ~(TyWidth - 1)) - TyWidth;
5165 Offset = CountValue - typeWidthInBytes(LeftOverTy);
5187 const uint32_t CountValue = IsCountConst ? CountConst->getValue() : 0;
5190 CountValue <= BytesPerStorep * Traits::MEMMOVE_UNROLL_LIMIT) {
5192 if (CountValue == 0)
5206 Type Ty = largestTypeInSize(CountValue);
5209 uint32_t RemainingBytes = CountValue;
5210 int32_t OffsetAmt = (CountValue & ~(TyWidth - 1)) - TyWidth;
5227 Offset = Ctx->getConstantInt32(CountValue - typeWidthInBytes(Ty));
5263 const uint32_t CountValue = IsCountConst ? CountConst->getValue() : 0;
5267 if (IsCountConst && CountValue == 0)
5304 if (ValValue == 0 && CountValue >= BytesPerStoreq &&
5305 CountValue <= BytesPerStorep * Traits::MEMSET_UNROLL_LIMIT) {
5310 Ty = largestTypeInSize(CountValue);
5311 } else if (CountValue <= BytesPerStorei32 * Traits::MEMSET_UNROLL_LIMIT) {
5316 Ty = largestTypeInSize(CountValue, MaxSize);
5322 uint32_t RemainingBytes = CountValue;
5323 uint32_t Offset = (CountValue & ~(TyWidth - 1)) - TyWidth;
5336 Offset = CountValue - typeWidthInBytes(LeftOverTy);