Home | History | Annotate | Download | only in common

Lines Matching refs:destLength

185     int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount;
202 srcCPCount=destLength=0;
216 if(destLength<destCapacity) {
217 dest[destLength]=
222 ++destLength;
249 if(destLength<destCapacity) {
250 dest[destLength]=
255 ++destLength;
274 basicLength=destLength;
276 if(destLength<destCapacity) {
277 dest[destLength]=DELIMITER;
279 ++destLength;
285 * destLength is the number of chars that have been output
347 if(destLength<destCapacity) {
348 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0);
350 ++destLength;
354 if(destLength<destCapacity) {
355 dest[destLength]=digitToBasic(q, (UBool)(cpBuffer[j]<0));
357 ++destLength;
368 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);
376 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t,
407 destLength=basicLength=destCPCount=j;
521 if((destLength+cpLength)<=destCapacity) {
543 UTF_FWD_N(dest, codeUnitIndex, destLength, i-codeUnitIndex);
547 if(codeUnitIndex<destLength) {
550 (destLength-codeUnitIndex)*U_SIZEOF_UCHAR);
554 destLength-codeUnitIndex);
573 destLength+=cpLength;
577 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);