Lines Matching defs:thisSize
619 int thisSize = GetLength();
620 int newSize = thisSize + strlen(string);
623 errno_t retMem = memcpy_s(newString.string_, newSize + 1, string_, thisSize);
627 errno_t ret = strcpy_s(newString.string_ + thisSize, newSize + 1 - thisSize, string);
641 int thisSize = GetLength();
642 int newSize = thisSize + other.GetLength();
645 (void)memcpy_s(newString.string_, newSize + 1, string_, thisSize);
646 errno_t ret = strcpy_s(newString.string_ + thisSize, newSize + 1 - thisSize, other.string_);