Home
last modified time | relevance | path

Searched refs:compressible (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Dstring-alloc-inl.h135 bool compressible = kUseStringCompression && String::IsCompressed(count_); in operator() local
141 if (compressible) { in operator()
163 const bool compressible = kUseStringCompression && String::IsCompressed(utf16_length_with_flag); in Alloc() local
164 const size_t block_size = (compressible) ? sizeof(uint8_t) : sizeof(uint16_t); in Alloc()
217 const bool compressible = in AllocFromByteArray() local
219 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible); in AllocFromByteArray()
232 const bool compressible = kUseStringCompression && in AllocFromCharArray() local
234 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible); in AllocFromCharArray()
245 const bool compressible = kUseStringCompression && in AllocFromString() local
248 const int32_t length_with_flag = String::GetFlaggedCount(string_length, compressible); in AllocFromString()
Dstring.cc85 bool compressible = in DoReplace() local
90 const int32_t length_with_flag = String::GetFlaggedCount(length, compressible); in DoReplace()
96 if (compressible) { in DoReplace()
128 const bool compressible = kUseStringCompression && in AllocFromStrings() local
130 const int32_t length_with_flag = String::GetFlaggedCount(length + length2, compressible); in AllocFromStrings()
137 if (compressible) { in AllocFromStrings()
166 const bool compressible = kUseStringCompression && in AllocFromUtf16() local
168 int32_t length_with_flag = String::GetFlaggedCount(utf16_length, compressible); in AllocFromUtf16()
174 if (compressible) { in AllocFromUtf16()
203 const bool compressible = kUseStringCompression && (utf16_length == utf8_length); in AllocFromModifiedUtf8() local
[all …]
Dstring.h218 ALWAYS_INLINE static int32_t GetFlaggedCount(int32_t length, bool compressible) { in GetFlaggedCount() argument
221 (static_cast<uint32_t>(compressible in GetFlaggedCount()