Home | History | Annotate | Download | only in common

Lines Matching defs:destLength

188     int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount;
205 srcCPCount=destLength=0;
219 if(destLength<destCapacity) {
220 dest[destLength]=
225 ++destLength;
252 if(destLength<destCapacity) {
253 dest[destLength]=
258 ++destLength;
277 basicLength=destLength;
279 if(destLength<destCapacity) {
280 dest[destLength]=DELIMITER;
282 ++destLength;
288 * destLength is the number of chars that have been output
350 if(destLength<destCapacity) {
351 dest[destLength]=digitToBasic(t+(q-t)%(BASE-t), 0);
353 ++destLength;
357 if(destLength<destCapacity) {
358 dest[destLength]=digitToBasic(q, (UBool)(cpBuffer[j]<0));
360 ++destLength;
371 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t,
410 destLength=basicLength=destCPCount=j;
411 U_ASSERT(destLength>=0);
525 if(dest!=NULL && ((destLength+cpLength)<=destCapacity)) {
547 U16_FWD_N(dest, codeUnitIndex, destLength, i-codeUnitIndex);
551 if(codeUnitIndex<destLength) {
554 (destLength-codeUnitIndex)*U_SIZEOF_UCHAR);
558 destLength-codeUnitIndex);
577 destLength+=cpLength;
578 U_ASSERT(destLength>=0);
582 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);