Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dstring.cc45 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 …]
Dstring-inl.h52 return GetValueCompressed()[index]; in CharAt()
77 DCHECK(result != 0 || ComputeUtf16Hash(GetValueCompressed(), GetLength()) == 0) in GetHashCode()
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()
Dstring.h69 uint8_t* GetValueCompressed() REQUIRES_SHARED(Locks::mutator_lock_) { in GetValueCompressed() function
/art/runtime/
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 ()()
Dintern_table.cc351 a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0; in operator ()()
Ddebugger.cc326 const uint8_t* chars_compressed = name->GetValueCompressed(); in DdmSendThreadNotification()
/art/runtime/interpreter/
Dinterpreter_intrinsics.cc197 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()
Dunstarted_runtime_test.cc432 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
/art/runtime/hprof/
Dhprof.cc1534 string_value = reinterpret_cast<mirror::Object*>(s->GetValueCompressed()); in DumpHeapInstanceObject()
1562 __ AddU1List(s->GetValueCompressed(), s->GetLength()); in DumpHeapInstanceObject()
/art/runtime/native/
Djava_lang_Class.cc375 const uint8_t* const data_compressed = (is_name_compressed) ? name->GetValueCompressed() in FindFieldByName()
/art/openjdkjvmti/
Dti_heap.cc115 uint8_t* compressed_data = str->GetValueCompressed(); in ReportString()