Home
last modified time | relevance | path

Searched refs:GetValueCompressed (Results 1 – 14 of 14) sorted by relevance

/aosp12/art/runtime/mirror/
H A Dstring.cc45 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()
142 const uint8_t* value_arg = h_arg->GetValueCompressed(); in DoConcat()
168 uint8_t* value = new_string->GetValueCompressed(); in AllocFromUtf16()
228 return memcmp(this->GetValueCompressed(), that->GetValueCompressed(), this->GetLength()) == 0; in Equals()
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()
[all …]
H A Dstring-alloc-inl.h72 uint8_t* valueCompressed = string->GetValueCompressed(); in operator()
108 string->GetValueCompressed()[i] = static_cast<uint8_t>(src[i]); in operator()
138 const uint8_t* const src = src_string_->GetValueCompressed() + offset_; in operator()
139 memcpy(string->GetValueCompressed(), src, length * sizeof(uint8_t)); in operator()
144 string->GetValueCompressed()[i] = static_cast<uint8_t>(src[i]); in operator()
H A Dstring-inl.h52 return GetValueCompressed()[index]; in CharAt()
77 DCHECK(result != 0 || ComputeUtf16Hash(GetValueCompressed(), GetLength()) == 0) in GetHashCode()
H A Dstring.h71 uint8_t* GetValueCompressed() REQUIRES_SHARED(Locks::mutator_lock_) { in GetValueCompressed() function
/aosp12/art/runtime/
H A Dstring_builder_append.cc52 DCHECK_GE(new_string->GetLength(), data - new_string->GetValueCompressed()); in RemainingSpace()
53 return new_string->GetLength() - (data - new_string->GetValueCompressed()); in RemainingSpace()
170 const uint8_t* value = str->GetValueCompressed(); in AppendString()
342 StoreData(new_string, new_string->GetValueCompressed()); in operator ()()
H A Dintern_table-inl.h67 a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0; in operator()
H A Ddebugger.cc326 const uint8_t* chars_compressed = name->GetValueCompressed(); in DdmSendThreadNotification()
/aosp12/art/runtime/native/
H A Dlibcore_util_CharsetUtils.cc93 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in charsToBytes()
178 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in CharsetUtils_toUtf8Bytes()
H A Djava_lang_Class.cc377 const uint8_t* const data_compressed = (is_name_compressed) ? name->GetValueCompressed() in FindFieldByName()
/aosp12/art/runtime/interpreter/
H A Dinterpreter_intrinsics.cc197 res = str->GetValueCompressed()[index]; in MterpStringCharAt()
282 const uint8_t* src_8 = str->GetValueCompressed() + start;
312 bytes1 = str->GetValueCompressed(); in MterpStringEquals()
313 bytes2 = str2->GetValueCompressed(); in MterpStringEquals()
H A Dunstarted_runtime_test.cc427 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
/aosp12/art/runtime/hprof/
H A Dhprof.cc1534 string_value = reinterpret_cast<mirror::Object*>(s->GetValueCompressed()); in DumpHeapInstanceObject()
1562 __ AddU1List(s->GetValueCompressed(), s->GetLength()); in DumpHeapInstanceObject()
/aosp12/art/runtime/jni/
H A Djni_internal.cc1994 const uint8_t* src = s->GetValueCompressed() + start; in GetStringRegion()
2019 const uint8_t* src = s->GetValueCompressed() + start; in GetStringUTFRegion()
2042 const uint8_t* src = s->GetValueCompressed(); in GetStringChars()
2079 const uint8_t* src = s->GetValueCompressed(); in GetStringCritical()
2138 const uint8_t* src = s->GetValueCompressed(); in GetStringUTFChars()
/aosp12/art/openjdkjvmti/
H A Dti_heap.cc115 uint8_t* compressed_data = str->GetValueCompressed(); in ReportString()