Lines Matching refs:firstLength
401 uint32_t firstLength = first->GetLength();
403 if (secondLength >= firstLength) {
407 CopyChars(buf + firstLength, buf, firstLength);
410 buf += firstLength;
411 maxLength -= firstLength;
413 length -= firstLength;
418 buf[firstLength] = static_cast<Char>(second->At<false>(0));
420 CopyChars(buf + firstLength, second->GetDataUtf8(), secondLength);
422 WriteToFlat(second, buf + firstLength, maxLength - firstLength);
425 maxLength = firstLength;