Lines Matching refs:MaxLength

73     static const size_t MaxLength = TMaxLength;  variable
75 static const size_t DefaultHead = (Base::Length - MaxLength) / 2;
109 NN_TASSERT_(0 <= length && length <= MaxLength); in CheckLength()
127 for (; i < MaxLength + 1; ++i)
154 if (0 <= length && length <= MaxLength) in SetLength()
182 && 0 <= m_Length && m_Length <= MaxLength in CheckState()
185 && MaxLength <= Base::Length in CheckState()
266 if (totalSize > MaxLength) in AppendHead()
274 … std::memmove(m_Buffer + MaxLength - this->GetLength(), m_Data, sizeof(Char) * originalLength); in AppendHead()
275 std::memcpy(m_Buffer + MaxLength - totalSize, s, sizeof(Char) * length); in AppendHead()
276 SetHead(MaxLength - totalSize); in AppendHead()
298 s32 length = CalculateLength(s, MaxLength - this->GetLength()); in AppendHead()
308 … std::memmove(m_Buffer + MaxLength - this->GetLength(), m_Data, sizeof(Char) * originalLength); in AppendHead()
309 std::memcpy(m_Buffer + MaxLength - totalSize, s, sizeof(Char) * length); in AppendHead()
310 SetHead(MaxLength - totalSize); in AppendHead()
334 if (GetHeadIndex() > Base::Length - MaxLength) in AppendTail()
354 if (GetHeadIndex() > Base::Length - MaxLength) in AppendTail()
381 if (GetHeadIndex() > Base::Length - MaxLength) in AppendTailAsHex()
407 if (GetHeadIndex() > Base::Length - MaxLength) in AppendTail()
535 static const size_t MaxLength = TMaxLength; variable
539 Char m_Buffer[MaxLength];
543 for (size_t i = 0; i < MaxLength; ++i) in CopyFrom()
573 if (size > MaxLength) in LightFixedLengthString()
575 size = MaxLength; in LightFixedLengthString()
577 NN_TASSERT_(size <= MaxLength); in LightFixedLengthString()
579 if (size < MaxLength) in LightFixedLengthString()
588 for (; i < MaxLength; ++i) in GetLength()
600 NN_TASSERT_(i < MaxLength);