Home | History | Annotate | Download | only in i18n

Lines Matching full:prev

90  * code points. Lexical order is preserved if "prev" is always moved
93 * Additionally, "prev" is moved from anywhere in the Unihan
99 u_writeIdenticalLevelRun(UChar32 prev, const UChar *s, int32_t length, icu::ByteSink &sink) {
117 if(prev<0x4e00 || prev>=0xa000) {
118 prev=(prev&~0x7f)-SLOPE_REACH_NEG_1;
124 prev=0x9fff-SLOPE_REACH_POS_2;
131 prev=0;
133 p=u_writeDiff(c-prev, p);
134 prev=c;
139 return prev;