Lines Matching refs:GetValueCompressed
45 return FastIndexOf<uint8_t>(GetValueCompressed(), ch, start); in FastIndexOf()
54 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength()); in ComputeHashCode()
128 uint8_t* new_value = new_string->GetValueCompressed(); in DoConcat()
129 memcpy(new_value, h_this->GetValueCompressed(), length_this * sizeof(uint8_t)); in DoConcat()
130 memcpy(new_value + length_this, h_arg->GetValueCompressed(), length_arg * sizeof(uint8_t)); in DoConcat()
134 const uint8_t* value_this = h_this->GetValueCompressed(); in DoConcat()
142 const uint8_t* value_arg = h_arg->GetValueCompressed(); in DoConcat()
168 uint8_t* value = new_string->GetValueCompressed(); in AllocFromUtf16()
205 memcpy(new_string->GetValueCompressed(), utf8_data_in, utf16_length * sizeof(uint8_t)); in AllocFromModifiedUtf8()
228 return memcmp(this->GetValueCompressed(), that->GetValueCompressed(), this->GetLength()) == 0; in Equals()
239 memcmp(modified_utf8, GetValueCompressed(), length) == 0; in Equals()
270 return std::string(reinterpret_cast<const char*>(GetValueCompressed()), GetLength()); in ToModifiedUtf8()
290 const uint8_t* lhs_chars = lhs->GetValueCompressed(); in CompareTo()
291 const uint8_t* rhs_chars = rhs->GetValueCompressed(); in CompareTo()
300 lhs->IsCompressed() ? lhs->GetValueCompressed() : rhs->GetValueCompressed(); in CompareTo()
327 const uint8_t* src = h_this->GetValueCompressed(); in ToCharArray()
346 const uint8_t* value = GetValueCompressed() + start; in GetChars()
357 return (IsCompressed()) ? (GetValueCompressed() == nullptr) : (GetValue() == nullptr); in IsValueNull()