HomeSort by relevance Sort by last modified time
    Searched defs:compressible (Results 1 - 2 of 2) sorted by null

  /art/runtime/mirror/
string-alloc-inl.h 135 bool compressible = kUseStringCompression && String::IsCompressed(count_); local
141 if (compressible) {
163 const bool compressible = kUseStringCompression && String::IsCompressed(utf16_length_with_flag); local
164 const size_t block_size = (compressible) ? sizeof(uint8_t) : sizeof(uint16_t);
203 const int32_t length_with_flag = String::GetFlaggedCount(0, /* compressible= */ true);
216 high_byte &= 0xff; // Extract the relevant bits before determining `compressible`.
217 const bool compressible = local
219 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible);
232 const bool compressible = kUseStringCompression && local
234 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible);
245 const bool compressible = kUseStringCompression && local
    [all...]
string.cc 85 bool compressible = local
90 const int32_t length_with_flag = String::GetFlaggedCount(length, compressible);
96 if (compressible) {
101 if (LIKELY(src->IsCompressed())) { // LIKELY(compressible == src->IsCompressed())
112 if (UNLIKELY(src->IsCompressed())) { // LIKELY(compressible == src->IsCompressed())
128 const bool compressible = kUseStringCompression && local
130 const int32_t length_with_flag = String::GetFlaggedCount(length + length2, compressible);
137 if (compressible) {
166 const bool compressible = kUseStringCompression && local
168 int32_t length_with_flag = String::GetFlaggedCount(utf16_length, compressible);
203 const bool compressible = kUseStringCompression && (utf16_length == utf8_length); local
    [all...]

Completed in 679 milliseconds