Home
last modified time | relevance | path

Searched refs:length2 (Results 1 – 2 of 2) sorted by relevance

/art/runtime/mirror/
Dstring.cc139 int32_t length2 = string2->GetLength(); in AllocFromStrings() local
143 const int32_t length_with_flag = String::GetFlaggedCount(length + length2, compressible); in AllocFromStrings()
153 memcpy(new_value + length, string2->GetValueCompressed(), length2 * sizeof(uint8_t)); in AllocFromStrings()
164 for (int i = 0; i < length2; ++i) { in AllocFromStrings()
168 memcpy(new_value + length, string2->GetValue(), length2 * sizeof(uint16_t)); in AllocFromStrings()
/art/runtime/base/unix_file/
Dfd_file.cc449 int64_t length2 = other->GetLength(); in Compare() local
450 if (length != length2) { in Compare()
451 return length < length2 ? -1 : 1; in Compare()