Lines Matching defs:destLength
188 int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount;
209 srcCPCount=destLength=0;
222 if(destLength<destCapacity) {
223 dest[destLength]=
228 ++destLength;
250 if(destLength<destCapacity) {
251 dest[destLength]=
256 ++destLength;
275 basicLength=destLength;
277 if(destLength<destCapacity) {
278 dest[destLength]=DELIMITER;
280 ++destLength;
286 * destLength is the number of chars that have been output
348 if(destLength<destCapacity) {
349 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0);
351 ++destLength;
355 if(destLength<destCapacity) {
356 dest[destLength]=digitToBasic(q, (UBool)(cpBuffer[j]<0));
358 ++destLength;
369 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);
378 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t,
413 destLength=basicLength=destCPCount=j;
414 U_ASSERT(destLength>=0);
528 if(dest!=nullptr && ((destLength+cpLength)<=destCapacity)) {
550 U16_FWD_N(dest, codeUnitIndex, destLength, i-codeUnitIndex);
554 if(codeUnitIndex<destLength) {
557 (destLength-codeUnitIndex)*U_SIZEOF_UCHAR);
561 destLength-codeUnitIndex);
580 destLength+=cpLength;
581 U_ASSERT(destLength>=0);
585 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);