Lines Matching refs:reqLength
265 reqLength=0; in idnaref_toASCII() local
345 reqLength = b1Len; in idnaref_toASCII()
347 reqLength = b1Len; in idnaref_toASCII()
378 reqLength = b2Len+ACE_PREFIX_LENGTH; in idnaref_toASCII()
380 if(reqLength > destCapacity){ in idnaref_toASCII()
395 if(reqLength > MAX_LABEL_LENGTH){ in idnaref_toASCII()
410 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_toASCII()
439 reqLength=0; in idnaref_toUnicode() local
578 reqLength = b2Len; in idnaref_toUnicode()
608 reqLength = srcLength; in idnaref_toUnicode()
636 reqLength = srcLength; in idnaref_toUnicode()
639 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_toUnicode()
694 int32_t reqLength = 0; in idnaref_IDNToASCII() local
752 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII()
755 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToASCII()
758 reqLength = tempLen; in idnaref_IDNToASCII()
762 if(reqLength < destCapacity){ in idnaref_IDNToASCII()
763 dest[reqLength] = FULL_STOP; in idnaref_IDNToASCII()
765 reqLength++; in idnaref_IDNToASCII()
801 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII()
804 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToASCII()
807 reqLength = tempLen; in idnaref_IDNToASCII()
811 if(reqLength < destCapacity){ in idnaref_IDNToASCII()
812 dest[reqLength] = FULL_STOP; in idnaref_IDNToASCII()
814 reqLength++; in idnaref_IDNToASCII()
831 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_IDNToASCII()
849 int32_t reqLength = 0; in idnaref_IDNToUnicode() local
906 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode()
909 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToUnicode()
912 reqLength = tempLen; in idnaref_IDNToUnicode()
915 if(reqLength < destCapacity){ in idnaref_IDNToUnicode()
916 dest[reqLength] = FULL_STOP; in idnaref_IDNToUnicode()
918 reqLength++; in idnaref_IDNToUnicode()
958 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode()
961 u_memmove(dest+reqLength, b1, b1Len); in idnaref_IDNToUnicode()
964 reqLength = tempLen; in idnaref_IDNToUnicode()
968 if(reqLength < destCapacity){ in idnaref_IDNToUnicode()
969 dest[reqLength] = FULL_STOP; in idnaref_IDNToUnicode()
971 reqLength++; in idnaref_IDNToUnicode()
987 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_IDNToUnicode()