Lines Matching refs:srcLimit
45 const UChar32 *srcLimit; in u_strFromUTF32WithSub() local
84 srcLimit = src; in u_strFromUTF32WithSub()
87 while(*++srcLimit != 0) {} in u_strFromUTF32WithSub()
90 srcLimit = (src!=NULL)?(src + srcLength):NULL; in u_strFromUTF32WithSub()
94 while(src < srcLimit) { in u_strFromUTF32WithSub()
159 const UChar *srcLimit; in u_strToUTF32WithSub() local
198 srcLimit = src; in u_strToUTF32WithSub()
201 while(*++srcLimit != 0) {} in u_strToUTF32WithSub()
204 srcLimit = (src!=NULL)?(src + srcLength):NULL; in u_strToUTF32WithSub()
208 while(src < srcLimit) { in u_strToUTF32WithSub()
212 } else if(U16_IS_SURROGATE_LEAD(ch) && src < srcLimit && U16_IS_TRAIL(ch2 = *src)) { in u_strToUTF32WithSub()