Lines Matching refs:srcLimit
41 const UChar32 *srcLimit; in u_strFromUTF32WithSub() local
80 srcLimit = src; in u_strFromUTF32WithSub()
83 while(*++srcLimit != 0) {} in u_strFromUTF32WithSub()
86 srcLimit = src + srcLength; in u_strFromUTF32WithSub()
90 while(src < srcLimit) { in u_strFromUTF32WithSub()
155 const UChar *srcLimit; in u_strToUTF32WithSub() local
194 srcLimit = src; in u_strToUTF32WithSub()
197 while(*++srcLimit != 0) {} in u_strToUTF32WithSub()
200 srcLimit = src + srcLength; in u_strToUTF32WithSub()
204 while(src < srcLimit) { in u_strToUTF32WithSub()
208 } else if(U16_IS_SURROGATE_LEAD(ch) && src < srcLimit && U16_IS_TRAIL(ch2 = *src)) { in u_strToUTF32WithSub()