Home | History | Annotate | Download | only in common

Lines Matching full:prev

171     int32_t prev, titleStart, titleLimit, idx, destIndex, length;
188 prev=0;
192 while(prev<srcLength) {
212 * In this implementation, segment [prev..index[ into 3 parts:
213 * a) uncased characters (copy as-is) [prev..titleStart[
217 if(prev<idx) {
218 /* find and copy uncased characters [prev..titleStart[ */
219 titleStart=titleLimit=prev;
227 * only uncased characters in [prev..index[
237 length=titleStart-prev;
240 uprv_memcpy(dest+destIndex, src+prev, length*U_SIZEOF_UCHAR);
286 prev=idx;