Lines Matching refs:new_value
136 uint8_t* new_value = new_string->GetValueCompressed(); in DoConcat() local
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()
140 uint16_t* new_value = new_string->GetValue(); in DoConcat() local
144 new_value[i] = value_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()
165 T *new_value, *h_this_value; in RepeatCharacters() local
167 new_value = new_string->GetValueCompressed(); in RepeatCharacters()
170 new_value = new_string->GetValue(); in RepeatCharacters()
176 std::fill(new_value, new_value + count, h_this_value[0]); in RepeatCharacters()
178 memcpy(new_value, h_this_value, length_this * sizeof(T)); in RepeatCharacters()
182 memcpy(new_value + copied, new_value, copied * sizeof(T)); in RepeatCharacters()
184 memcpy(new_value + copied, new_value, (limit - copied) * sizeof(T)); in RepeatCharacters()