Searched refs:GetValueCompressed (Results 1 – 14 of 14) sorted by relevance
/aosp12/art/runtime/mirror/ |
H A D | string.cc | 45 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 D | string-alloc-inl.h | 72 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 D | string-inl.h | 52 return GetValueCompressed()[index]; in CharAt() 77 DCHECK(result != 0 || ComputeUtf16Hash(GetValueCompressed(), GetLength()) == 0) in GetHashCode()
|
H A D | string.h | 71 uint8_t* GetValueCompressed() REQUIRES_SHARED(Locks::mutator_lock_) { in GetValueCompressed() function
|
/aosp12/art/runtime/ |
H A D | string_builder_append.cc | 52 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 D | intern_table-inl.h | 67 a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0; in operator()
|
H A D | debugger.cc | 326 const uint8_t* chars_compressed = name->GetValueCompressed(); in DdmSendThreadNotification()
|
/aosp12/art/runtime/native/ |
H A D | libcore_util_CharsetUtils.cc | 93 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in charsToBytes() 178 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in CharsetUtils_toUtf8Bytes()
|
H A D | java_lang_Class.cc | 377 const uint8_t* const data_compressed = (is_name_compressed) ? name->GetValueCompressed() in FindFieldByName()
|
/aosp12/art/runtime/interpreter/ |
H A D | interpreter_intrinsics.cc | 197 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 D | unstarted_runtime_test.cc | 427 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
|
/aosp12/art/runtime/hprof/ |
H A D | hprof.cc | 1534 string_value = reinterpret_cast<mirror::Object*>(s->GetValueCompressed()); in DumpHeapInstanceObject() 1562 __ AddU1List(s->GetValueCompressed(), s->GetLength()); in DumpHeapInstanceObject()
|
/aosp12/art/runtime/jni/ |
H A D | jni_internal.cc | 1994 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 D | ti_heap.cc | 115 uint8_t* compressed_data = str->GetValueCompressed(); in ReportString()
|