Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dstring.cc126 int32_t length2 = string2->GetLength(); in AllocFromStrings() local
130 const int32_t length_with_flag = String::GetFlaggedCount(length + length2, compressible); in AllocFromStrings()
140 memcpy(new_value + length, string2->GetValueCompressed(), length2 * sizeof(uint8_t)); in AllocFromStrings()
151 for (int i = 0; i < length2; ++i) { in AllocFromStrings()
155 memcpy(new_value + length, string2->GetValue(), length2 * sizeof(uint16_t)); in AllocFromStrings()
/art/libartbase/base/unix_file/
Dfd_file.cc619 int64_t length2 = other->GetLength(); in Compare() local
620 if (length != length2) { in Compare()
621 return length < length2 ? -1 : 1; in Compare()