Searched refs:GetFlaggedCount (Results 1 – 7 of 7) sorted by relevance
/art/runtime/mirror/ |
D | string-alloc-inl.h | 204 const int32_t length_with_flag = String::GetFlaggedCount(0, /* compressible= */ true); in AllocEmptyString() 220 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible); in AllocFromByteArray() 235 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible); in AllocFromCharArray() 249 const int32_t length_with_flag = String::GetFlaggedCount(string_length, compressible); in AllocFromString()
|
D | string.cc | 82 const int32_t length_with_flag = String::GetFlaggedCount(length, compressible); in DoReplace() 121 const int32_t length_with_flag = String::GetFlaggedCount(length_this + length_arg, compressible); in DoConcat() 161 int32_t length_with_flag = String::GetFlaggedCount(utf16_length, compressible); in AllocFromUtf16() 198 const int32_t length_with_flag = String::GetFlaggedCount(utf16_length, compressible); in AllocFromModifiedUtf8()
|
D | string.h | 223 ALWAYS_INLINE static int32_t GetFlaggedCount(int32_t length, bool compressible) { in GetFlaggedCount() function
|
/art/runtime/jni/ |
D | jni_internal_test.cc | 965 ASSERT_EQ(mirror::String::GetFlaggedCount(4, /* compressible= */ true), in TEST_F() 969 ASSERT_EQ(mirror::String::GetFlaggedCount(2, /* compressible= */ false), in TEST_F() 1578 ASSERT_EQ(mirror::String::GetFlaggedCount(kPageSize - 1u, /* compressible= */ true), in TEST_F() 1590 ASSERT_EQ(mirror::String::GetFlaggedCount(kPageSize - 1u, /* compressible= */ true), in TEST_F() 1604 ASSERT_EQ(mirror::String::GetFlaggedCount(kPageSize - 2u, /* compressible= */ false), in TEST_F() 1620 ASSERT_EQ(mirror::String::GetFlaggedCount(kPageSize - 2u, /* compressible= */ true), in TEST_F() 1637 ASSERT_EQ(mirror::String::GetFlaggedCount(kPageSize - 3u, /* compressible= */ true), in TEST_F() 1651 ASSERT_EQ(mirror::String::GetFlaggedCount(kPageSize - 4u, /* compressible= */ false), in TEST_F()
|
/art/runtime/ |
D | string_builder_append.cc | 271 length_with_flag_ = mirror::String::GetFlaggedCount(length, compressible); in CalculateLengthWithFlag()
|
/art/compiler/optimizing/ |
D | intrinsics_arm64.cc | 1809 __ Cmp(temp, Operand(mirror::String::GetFlaggedCount(const_string_length, is_compressed))); in VisitStringEquals()
|
D | intrinsics_arm_vixl.cc | 996 __ Cmp(temp, Operand(mirror::String::GetFlaggedCount(const_string_length, is_compressed))); in VisitStringEquals()
|