Searched refs:GetValueCompressed (Results 1 – 12 of 12) sorted by relevance
/art/runtime/mirror/ |
D | string.cc | 45 return FastIndexOf<uint8_t>(GetValueCompressed(), ch, start); in FastIndexOf() 54 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength()); in ComputeHashCode() 138 uint8_t* new_value = new_string->GetValueCompressed(); in AllocFromStrings() 139 memcpy(new_value, string->GetValueCompressed(), length * sizeof(uint8_t)); in AllocFromStrings() 140 memcpy(new_value + length, string2->GetValueCompressed(), length2 * sizeof(uint8_t)); in AllocFromStrings() 176 string->GetValueCompressed()[i] = static_cast<uint8_t>(utf16_data_in[i]); in AllocFromUtf16() 211 memcpy(string->GetValueCompressed(), utf8_data_in, utf16_length * sizeof(uint8_t)); in AllocFromModifiedUtf8() 294 const uint8_t* lhs_chars = lhs->GetValueCompressed(); in CompareTo() 295 const uint8_t* rhs_chars = rhs->GetValueCompressed(); in CompareTo() 304 lhs->IsCompressed() ? lhs->GetValueCompressed() : rhs->GetValueCompressed(); in CompareTo() [all …]
|
D | string-inl.h | 52 return GetValueCompressed()[index]; in CharAt() 77 DCHECK(result != 0 || ComputeUtf16Hash(GetValueCompressed(), GetLength()) == 0) in GetHashCode()
|
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()
|
D | string.h | 69 uint8_t* GetValueCompressed() REQUIRES_SHARED(Locks::mutator_lock_) { in GetValueCompressed() function
|
/art/runtime/ |
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 ()()
|
D | intern_table.cc | 351 a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0; in operator ()()
|
D | debugger.cc | 326 const uint8_t* chars_compressed = name->GetValueCompressed(); in DdmSendThreadNotification()
|
/art/runtime/interpreter/ |
D | interpreter_intrinsics.cc | 197 res = str->GetValueCompressed()[index]; in MterpStringCharAt() 282 const uint8_t* src_8 = str->GetValueCompressed() + start; in MterpStringGetCharsNoCheck() 312 bytes1 = str->GetValueCompressed(); in MterpStringEquals() 313 bytes2 = str2->GetValueCompressed(); in MterpStringEquals()
|
D | unstarted_runtime_test.cc | 432 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
|
/art/runtime/hprof/ |
D | hprof.cc | 1534 string_value = reinterpret_cast<mirror::Object*>(s->GetValueCompressed()); in DumpHeapInstanceObject() 1562 __ AddU1List(s->GetValueCompressed(), s->GetLength()); in DumpHeapInstanceObject()
|
/art/runtime/native/ |
D | java_lang_Class.cc | 375 const uint8_t* const data_compressed = (is_name_compressed) ? name->GetValueCompressed() in FindFieldByName()
|
/art/openjdkjvmti/ |
D | ti_heap.cc | 116 uint8_t* compressed_data = str->GetValueCompressed(); in ReportString()
|