Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dstring.cc46 return FastIndexOf<uint8_t>(GetValueCompressed(), ch, start); in FastIndexOf()
58 return LastIndexOf<uint8_t>(GetValueCompressed(), ch, count - 1); in LastIndexOf()
136 uint8_t* new_value = new_string->GetValueCompressed(); in DoConcat()
137 memcpy(new_value, h_this->GetValueCompressed(), length_this * sizeof(uint8_t)); in DoConcat()
138 memcpy(new_value + length_this, h_arg->GetValueCompressed(), length_arg * sizeof(uint8_t)); in DoConcat()
142 const uint8_t* value_this = h_this->GetValueCompressed(); in DoConcat()
150 const uint8_t* value_arg = h_arg->GetValueCompressed(); in DoConcat()
167 new_value = new_string->GetValueCompressed(); in RepeatCharacters()
168 h_this_value = h_this->GetValueCompressed(); in RepeatCharacters()
224 uint8_t* value = new_string->GetValueCompressed(); in AllocFromUtf16()
[all …]
Dstring-alloc-inl.h73 uint8_t* valueCompressed = string->GetValueCompressed(); in operator()
108 uint8_t* valueCompressed = string->GetValueCompressed(); in operator()
144 string->GetValueCompressed()[i] = static_cast<uint8_t>(src[i]); in operator()
174 const uint8_t* const src = src_string_->GetValueCompressed() + offset_; in operator()
175 memcpy(string->GetValueCompressed(), src, length * sizeof(uint8_t)); in operator()
180 string->GetValueCompressed()[i] = static_cast<uint8_t>(src[i]); in operator()
Dstring-inl.h52 return GetValueCompressed()[index]; in CharAt()
86 ? ComputeUtf16Hash(GetValueCompressed(), GetLength()) in ComputeHashCode()
Dstring.h73 uint8_t* GetValueCompressed() REQUIRES_SHARED(Locks::mutator_lock_) { in GetValueCompressed() function
Dclass.cc1780 std::string_view dot_name(reinterpret_cast<const char*>(name->GetValueCompressed()), in UpdateHashForProxyClass()
/art/runtime/native/
Dlibcore_util_CharsetUtils.cc75 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in charsToBytes()
128 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in CharsetUtils_toUtf8Bytes()
Djava_lang_Class.cc250 const uint8_t* const data_compressed = (is_name_compressed) ? name->GetValueCompressed() in FindFieldByName()
/art/runtime/
Dstring_builder_append.cc54 DCHECK_GE(new_string->GetLength(), data - new_string->GetValueCompressed()); in RemainingSpace()
55 return new_string->GetLength() - (data - new_string->GetValueCompressed()); in RemainingSpace()
200 const uint8_t* value = str->GetValueCompressed(); in AppendString()
321 memcpy(converted_fp_args_[fp_arg_index], converted->GetValueCompressed(), length); in ConvertFpArgs()
498 StoreData(new_string, new_string->GetValueCompressed()); in operator ()()
Dintern_table-inl.h81 memcmp(b.GetUtf8Data(), a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0; in operator()
Ddebugger.cc317 const uint8_t* chars_compressed = name->GetValueCompressed(); in DdmSendThreadNotification()
/art/runtime/interpreter/
Dunstarted_runtime_test.cc371 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
/art/runtime/hprof/
Dhprof.cc1529 string_value = reinterpret_cast<mirror::Object*>(s->GetValueCompressed()); in DumpHeapInstanceObject()
1557 __ AddU1List(s->GetValueCompressed(), s->GetLength()); in DumpHeapInstanceObject()
/art/runtime/jni/
Djni_internal.cc175 uint8_t* value_compressed = string->GetValueCompressed(); in operator ()()
2087 const uint8_t* src = s->GetValueCompressed() + start; in GetStringRegion()
2112 const uint8_t* src = s->GetValueCompressed() + start; in GetStringUTFRegion()
2133 const uint8_t* src = s->GetValueCompressed(); in GetStringChars()
2170 const uint8_t* src = s->GetValueCompressed(); in GetStringCritical()
2235 const uint8_t* src = s->GetValueCompressed(); in GetStringUTFChars()
/art/openjdkjvmti/
Dti_heap.cc115 uint8_t* compressed_data = str->GetValueCompressed(); in ReportString()