Lines Matching refs:GetValueCompressed
45 return FastIndexOf<uint8_t>(GetValueCompressed(), ch, start); in FastIndexOf()
54 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength()); in ComputeHashCode()
138 uint8_t* new_value = new_string->GetValueCompressed(); in AllocFromStrings()
139 memcpy(new_value, string->GetValueCompressed(), length * sizeof(uint8_t)); in AllocFromStrings()
140 memcpy(new_value + length, string2->GetValueCompressed(), length2 * sizeof(uint8_t)); in AllocFromStrings()
176 string->GetValueCompressed()[i] = static_cast<uint8_t>(utf16_data_in[i]); in AllocFromUtf16()
211 memcpy(string->GetValueCompressed(), utf8_data_in, utf16_length * sizeof(uint8_t)); in AllocFromModifiedUtf8()
294 const uint8_t* lhs_chars = lhs->GetValueCompressed(); in CompareTo()
295 const uint8_t* rhs_chars = rhs->GetValueCompressed(); in CompareTo()
304 lhs->IsCompressed() ? lhs->GetValueCompressed() : rhs->GetValueCompressed(); in CompareTo()
358 return (IsCompressed()) ? (GetValueCompressed() == nullptr) : (GetValue() == nullptr); in IsValueNull()