Lines Matching refs:length_this
124 int32_t length_this = h_this->GetLength(); in DoConcat() local
129 const int32_t length_with_flag = String::GetFlaggedCount(length_this + length_arg, compressible); in DoConcat()
137 memcpy(new_value, h_this->GetValueCompressed(), length_this * sizeof(uint8_t)); in DoConcat()
138 memcpy(new_value + length_this, h_arg->GetValueCompressed(), length_arg * sizeof(uint8_t)); in DoConcat()
143 for (int i = 0; i < length_this; ++i) { in DoConcat()
147 memcpy(new_value, h_this->GetValue(), length_this * sizeof(uint16_t)); in DoConcat()
152 new_value[i + length_this] = value_arg[i]; in DoConcat()
155 memcpy(new_value + length_this, h_arg->GetValue(), length_arg * sizeof(uint16_t)); in DoConcat()
173 int32_t length_this = h_this->GetLength(); in RepeatCharacters() local
174 if (length_this == 1) { in RepeatCharacters()
178 memcpy(new_value, h_this_value, length_this * sizeof(T)); in RepeatCharacters()
179 int32_t copied = length_this; in RepeatCharacters()
180 int32_t limit = length_this * count; in RepeatCharacters()
189 int32_t length_this = h_this->GetLength(); in DoRepeat() local
191 DCHECK_LE(length_this, std::numeric_limits<int32_t>::max() / count); in DoRepeat()
194 const int32_t length_with_flag = String::GetFlaggedCount(length_this * count, compressible); in DoRepeat()