Lines Matching refs:oldLength
597 int32 oldLength = Length(); in Append() local
599 memset(fPrivateData + oldLength, c, count); in Append()
2413 int32 oldLength = Length(); in _OpenAtBy() local
2419 oldLength - offset); in _OpenAtBy()
2420 return _Resize(oldLength + length); in _OpenAtBy()
2427 int32 oldLength = Length(); in _ShrinkAtBy() local
2432 oldLength - offset - length); in _ShrinkAtBy()
2433 return _Resize(oldLength - length); in _ShrinkAtBy()
2466 int32 oldLength = Length(); in _DoAppend() local
2467 if (_MakeWritable(oldLength + length, true) == B_OK) { in _DoAppend()
2468 strncpy(fPrivateData + oldLength, string, length); in _DoAppend()
2479 int32 oldLength = Length(); in _DoPrepend() local
2480 if (_MakeWritable(oldLength + length, true) == B_OK) { in _DoPrepend()
2481 memmove(fPrivateData + length, fPrivateData, oldLength); in _DoPrepend()
2493 int32 oldLength = Length(); in _DoInsert() local
2494 if (_MakeWritable(oldLength + length, true) == B_OK) { in _DoInsert()
2496 oldLength - offset); in _DoInsert()