Searched refs:GetValueCompressed (Results 1 – 14 of 14) sorted by relevance
/art/runtime/mirror/ |
D | string.cc | 46 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 …]
|
D | string-alloc-inl.h | 73 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()
|
D | string-inl.h | 52 return GetValueCompressed()[index]; in CharAt() 86 ? ComputeUtf16Hash(GetValueCompressed(), GetLength()) in ComputeHashCode()
|
D | string.h | 73 uint8_t* GetValueCompressed() REQUIRES_SHARED(Locks::mutator_lock_) { in GetValueCompressed() function
|
D | class.cc | 1780 std::string_view dot_name(reinterpret_cast<const char*>(name->GetValueCompressed()), in UpdateHashForProxyClass()
|
/art/runtime/native/ |
D | libcore_util_CharsetUtils.cc | 75 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in charsToBytes() 128 memcpy(result->GetData(), string->GetValueCompressed() + offset, length); in CharsetUtils_toUtf8Bytes()
|
D | java_lang_Class.cc | 250 const uint8_t* const data_compressed = (is_name_compressed) ? name->GetValueCompressed() in FindFieldByName()
|
/art/runtime/ |
D | string_builder_append.cc | 54 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 ()()
|
D | intern_table-inl.h | 81 memcmp(b.GetUtf8Data(), a_string->GetValueCompressed(), a_length * sizeof(uint8_t)) == 0; in operator()
|
D | debugger.cc | 317 const uint8_t* chars_compressed = name->GetValueCompressed(); in DdmSendThreadNotification()
|
/art/runtime/interpreter/ |
D | unstarted_runtime_test.cc | 371 EXPECT_EQ(memcmp(string_arg->GetValueCompressed(), string_result->GetValueCompressed(), in TEST_F()
|
/art/runtime/hprof/ |
D | hprof.cc | 1529 string_value = reinterpret_cast<mirror::Object*>(s->GetValueCompressed()); in DumpHeapInstanceObject() 1557 __ AddU1List(s->GetValueCompressed(), s->GetLength()); in DumpHeapInstanceObject()
|
/art/runtime/jni/ |
D | jni_internal.cc | 175 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/ |
D | ti_heap.cc | 115 uint8_t* compressed_data = str->GetValueCompressed(); in ReportString()
|