Searched refs:compressible (Results 1 – 3 of 3) sorted by relevance
141 bool compressible = kUseStringCompression && String::IsCompressed(count_); in operator() local147 if (compressible) { in operator()208 const bool compressible = kUseStringCompression && String::IsCompressed(utf16_length_with_flag); in Alloc() local209 const size_t block_size = (compressible) ? sizeof(uint8_t) : sizeof(uint16_t); in Alloc()255 const bool compressible = in AllocFromByteArray() local257 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible); in AllocFromByteArray()269 const bool compressible = kUseStringCompression && in AllocFromCharArray() local271 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible); in AllocFromCharArray()280 const bool compressible = kUseStringCompression && in AllocFromString() local283 const int32_t length_with_flag = String::GetFlaggedCount(string_length, compressible); in AllocFromString()
100 bool compressible = in DoReplace() local105 const int32_t length_with_flag = String::GetFlaggedCount(length, compressible); in DoReplace()111 if (compressible) { in DoReplace()141 const bool compressible = kUseStringCompression && in AllocFromStrings() local143 const int32_t length_with_flag = String::GetFlaggedCount(length + length2, compressible); in AllocFromStrings()150 if (compressible) { in AllocFromStrings()177 const bool compressible = kUseStringCompression && in AllocFromUtf16() local179 int32_t length_with_flag = String::GetFlaggedCount(utf16_length, compressible); in AllocFromUtf16()185 if (compressible) { in AllocFromUtf16()214 const bool compressible = kUseStringCompression && (utf16_length == utf8_length); in AllocFromModifiedUtf8() local[all …]
207 ALWAYS_INLINE static int32_t GetFlaggedCount(int32_t length, bool compressible) { in GetFlaggedCount() argument210 (static_cast<uint32_t>(compressible in GetFlaggedCount()