Lines Matching refs:reqLength

263             reqLength=0;  in idnaref_toASCII()  local
343 reqLength = b1Len; in idnaref_toASCII()
345 reqLength = b1Len; in idnaref_toASCII()
376 reqLength = b2Len+ACE_PREFIX_LENGTH; in idnaref_toASCII()
378 if(reqLength > destCapacity){ in idnaref_toASCII()
393 if(reqLength > MAX_LABEL_LENGTH){ in idnaref_toASCII()
408 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_toASCII()
437 reqLength=0; in idnaref_toUnicode() local
576 reqLength = b2Len; in idnaref_toUnicode()
606 reqLength = srcLength; in idnaref_toUnicode()
634 reqLength = srcLength; in idnaref_toUnicode()
637 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_toUnicode()
692 int32_t reqLength = 0; in idnaref_IDNToASCII() local
750 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII()
753 uprv_memmove(dest+reqLength, b1, b1Len * U_SIZEOF_UCHAR); in idnaref_IDNToASCII()
756 reqLength = tempLen; in idnaref_IDNToASCII()
760 if(reqLength < destCapacity){ in idnaref_IDNToASCII()
761 dest[reqLength] = FULL_STOP; in idnaref_IDNToASCII()
763 reqLength++; in idnaref_IDNToASCII()
799 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToASCII()
802 uprv_memmove(dest+reqLength, b1, b1Len * U_SIZEOF_UCHAR); in idnaref_IDNToASCII()
805 reqLength = tempLen; in idnaref_IDNToASCII()
809 if(reqLength < destCapacity){ in idnaref_IDNToASCII()
810 dest[reqLength] = FULL_STOP; in idnaref_IDNToASCII()
812 reqLength++; in idnaref_IDNToASCII()
829 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_IDNToASCII()
847 int32_t reqLength = 0; in idnaref_IDNToUnicode() local
904 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode()
907 uprv_memmove(dest+reqLength, b1, b1Len * U_SIZEOF_UCHAR); in idnaref_IDNToUnicode()
910 reqLength = tempLen; in idnaref_IDNToUnicode()
913 if(reqLength < destCapacity){ in idnaref_IDNToUnicode()
914 dest[reqLength] = FULL_STOP; in idnaref_IDNToUnicode()
916 reqLength++; in idnaref_IDNToUnicode()
956 int32_t tempLen = (reqLength + b1Len ); in idnaref_IDNToUnicode()
959 uprv_memmove(dest+reqLength, b1, b1Len * U_SIZEOF_UCHAR); in idnaref_IDNToUnicode()
962 reqLength = tempLen; in idnaref_IDNToUnicode()
966 if(reqLength < destCapacity){ in idnaref_IDNToUnicode()
967 dest[reqLength] = FULL_STOP; in idnaref_IDNToUnicode()
969 reqLength++; in idnaref_IDNToUnicode()
985 return u_terminateUChars(dest, destCapacity, reqLength, status); in idnaref_IDNToUnicode()