Home | History | Annotate | Download | only in cintltst

Lines Matching refs:limit

95 static void Xreplace(UReplaceable* rep, int32_t start, int32_t limit,
98 int32_t newLen = Xlength(rep) + limit - start + textLength;
102 u_strcpy(newText + start + textLength, x->text + limit);
108 static void Xcopy(UReplaceable* rep, int32_t start, int32_t limit, int32_t dest) {
110 int32_t newLen = Xlength(rep) + limit - start;
113 u_strncpy(newText + dest, x->text + start, limit - start);
114 u_strcpy(newText + dest + limit - start, x->text + dest);
120 static void Xextract(UReplaceable* rep, int32_t start, int32_t limit, UChar* dst) {
122 int32_t len = limit - start;
495 int32_t limit;
529 limit = 5;
530 utrans_transUChars(hex, buf, NULL, 128, 0, &limit, &status);
680 int32_t limit;
694 limit = u_strlen(buf);
695 utrans_transUChars(trans, buf, NULL, CAP, 0, &limit, &status);
715 pos.limit = pos.contextLimit = u_strlen(buf);
717 utrans_transUChars(trans, buf, NULL, CAP, pos.start, &pos.limit, &status);
737 limit = u_strlen(from);
738 utrans_trans(trans, (UReplaceable*)xrepPtr, &xrepVtable, 0, &limit, &status);
760 pos.limit = pos.contextLimit = u_strlen(from);
762 utrans_trans(trans, (UReplaceable*)xrepPtr, &xrepVtable, pos.start, &pos.limit, &status);