Lines Matching refs:reqLength
276 reqLength=0; in idnaref_toASCII() local
356 reqLength = b1Len; in idnaref_toASCII()
358 reqLength = b1Len; in idnaref_toASCII()
389 reqLength = b2Len+ACE_PREFIX_LENGTH; in idnaref_toASCII()
391 if(reqLength > destCapacity){ in idnaref_toASCII()
406 if(reqLength > MAX_LABEL_LENGTH){ in idnaref_toASCII()
421 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_toASCII()
450 reqLength=0; in idnaref_toUnicode() local
589 reqLength = b2Len; in idnaref_toUnicode()
619 reqLength = srcLength; in idnaref_toUnicode()
647 reqLength = srcLength; in idnaref_toUnicode()
650 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_toUnicode()
705 int32_t reqLength = 0; in idnaref_IDNToASCII() local
763 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII()
766 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToASCII()
769 reqLength = tempLen; in idnaref_IDNToASCII()
773 if(reqLength < destCapacity){ in idnaref_IDNToASCII()
774 dest[reqLength] = FULL_STOP; in idnaref_IDNToASCII()
776 reqLength++; in idnaref_IDNToASCII()
812 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII()
815 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToASCII()
818 reqLength = tempLen; in idnaref_IDNToASCII()
822 if(reqLength < destCapacity){ in idnaref_IDNToASCII()
823 dest[reqLength] = FULL_STOP; in idnaref_IDNToASCII()
825 reqLength++; in idnaref_IDNToASCII()
842 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_IDNToASCII()
860 int32_t reqLength = 0; in idnaref_IDNToUnicode() local
917 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode()
920 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToUnicode()
923 reqLength = tempLen; in idnaref_IDNToUnicode()
926 if(reqLength < destCapacity){ in idnaref_IDNToUnicode()
927 dest[reqLength] = FULL_STOP; in idnaref_IDNToUnicode()
929 reqLength++; in idnaref_IDNToUnicode()
969 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode()
972 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToUnicode()
975 reqLength = tempLen; in idnaref_IDNToUnicode()
979 if(reqLength < destCapacity){ in idnaref_IDNToUnicode()
980 dest[reqLength] = FULL_STOP; in idnaref_IDNToUnicode()
982 reqLength++; in idnaref_IDNToUnicode()
998 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_IDNToUnicode()