• Home
  • Raw
  • Download

Lines Matching refs:reqLength

41     int32_t reqLength = 0;  in u_strFromUTF32()  local
68 reqLength++; in u_strFromUTF32()
77 reqLength+=UTF_CHAR_LENGTH(ch); in u_strFromUTF32()
90 reqLength++; in u_strFromUTF32()
100 reqLength+=UTF_CHAR_LENGTH(ch); in u_strFromUTF32()
104 reqLength += (int32_t)(pDest - dest); in u_strFromUTF32()
106 *pDestLength = reqLength; in u_strFromUTF32()
110 u_terminateUChars(dest,destCapacity,reqLength,pErrorCode); in u_strFromUTF32()
126 int32_t reqLength=0; in u_strToUTF32() local
157 ++reqLength; in u_strToUTF32()
174 ++reqLength; in u_strToUTF32()
178 reqLength+=(int32_t)(pDest - (uint32_t *)dest); in u_strToUTF32()
180 *pDestLength = reqLength; in u_strToUTF32()
184 u_terminateUChar32s(dest,destCapacity,reqLength,pErrorCode); in u_strToUTF32()
341 int32_t reqLength = 0; in u_strFromUTF8WithSub() local
419 reqLength++; in u_strFromUTF8WithSub()
429 ++reqLength; in u_strFromUTF8WithSub()
438 ++reqLength; in u_strFromUTF8WithSub()
447 ++reqLength; in u_strFromUTF8WithSub()
460 reqLength += U16_LENGTH(ch); in u_strFromUTF8WithSub()
540 reqLength++; in u_strFromUTF8WithSub()
591 reqLength++; in u_strFromUTF8WithSub()
601 reqLength++; in u_strFromUTF8WithSub()
611 reqLength++; in u_strFromUTF8WithSub()
621 reqLength++; in u_strFromUTF8WithSub()
634 reqLength+=UTF_CHAR_LENGTH(ch); in u_strFromUTF8WithSub()
639 reqLength+=(int32_t)(pDest - dest); in u_strFromUTF8WithSub()
646 *pDestLength = reqLength; in u_strFromUTF8WithSub()
650 u_terminateUChars(dest,destCapacity,reqLength,pErrorCode); in u_strFromUTF8WithSub()
679 int32_t reqLength = 0; in u_strFromUTF8Lenient() local
731 reqLength = 1; in u_strFromUTF8Lenient()
752 ++reqLength; in u_strFromUTF8Lenient()
757 ++reqLength; in u_strFromUTF8Lenient()
763 ++reqLength; in u_strFromUTF8Lenient()
769 reqLength += 2; in u_strFromUTF8Lenient()
776 ++reqLength; in u_strFromUTF8Lenient()
873 reqLength+=(int32_t)(pDest - dest); in u_strFromUTF8Lenient()
876 *pDestLength = reqLength; in u_strFromUTF8Lenient()
880 u_terminateUChars(dest,destCapacity,reqLength,pErrorCode); in u_strFromUTF8Lenient()
916 int32_t reqLength=0; in u_strToUTF8WithSub() local
943 reqLength = 1; in u_strToUTF8WithSub()
951 reqLength = 2; in u_strToUTF8WithSub()
960 reqLength = 3; in u_strToUTF8WithSub()
984 reqLength = length; in u_strToUTF8WithSub()
991 ++reqLength; in u_strToUTF8WithSub()
993 reqLength+=2; in u_strToUTF8WithSub()
995 reqLength+=3; in u_strToUTF8WithSub()
998 reqLength+=4; in u_strToUTF8WithSub()
1000 reqLength+=U8_LENGTH(subchar); in u_strToUTF8WithSub()
1086 reqLength = 1; in u_strToUTF8WithSub()
1094 reqLength = 2; in u_strToUTF8WithSub()
1103 reqLength = 3; in u_strToUTF8WithSub()
1126 reqLength = length; in u_strToUTF8WithSub()
1134 ++reqLength; in u_strToUTF8WithSub()
1136 reqLength+=2; in u_strToUTF8WithSub()
1138 reqLength+=3; in u_strToUTF8WithSub()
1141 reqLength+=4; in u_strToUTF8WithSub()
1143 reqLength+=U8_LENGTH(subchar); in u_strToUTF8WithSub()
1153 reqLength+=(int32_t)(pDest - (uint8_t *)dest); in u_strToUTF8WithSub()
1160 *pDestLength = reqLength; in u_strToUTF8WithSub()
1164 u_terminateChars((char*)dest,destCapacity,reqLength,pErrorCode); in u_strToUTF8WithSub()