Searched refs:myLen (Results 1 – 2 of 2) sorted by relevance
201 const size_t myLen = size(); in append() local203 if (myLen == 0) { in append()210 if (myLen >= SIZE_MAX / sizeof(char16_t) - otherLen) { in append()216 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()219 memcpy(str+myLen, other, (otherLen+1)*sizeof(char16_t)); in append()228 const size_t myLen = size(); in append() local229 if (myLen == 0) { in append()236 if (myLen >= SIZE_MAX / sizeof(char16_t) - otherLen) { in append()242 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()245 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t)); in append()[all …]
345 const size_t myLen = bytes(); in real_append() local348 ->editResize(myLen+otherLen+1); in real_append()352 str += myLen; in real_append()