Home | History | Annotate | Download | only in common

Lines Matching refs:limit32

1463     int32_t  limit32 = pinIndex(limit, length);
1465 if(start32>limit32) {
1485 if (limit32 < ut->chunkNativeLimit) {
1487 if (U8_IS_SINGLE(buf[limit32]) || U8_IS_LEAD(buf[limit32]) || limit32==0) {
1490 limit32--;
1497 (const char *)ut->context+start32, limit32-start32,
1499 utf8TextAccess(ut, limit32, TRUE);
1846 int32_t limit32 = pinIndex(limit, length);
1853 if (limit32<length && U16_IS_TRAIL(rep->charAt(limit32)) &&
1854 U_IS_SUPPLEMENTARY(rep->char32At(limit32))){
1855 limit32--;
1858 length=limit32-start32;
1860 limit32 = start32 + destCapacity;
1863 rep->extractBetween(start32, limit32, buffer);
1864 repTextAccess(ut, limit32, TRUE);
1891 int32_t limit32 = pinIndex(limit, oldLength);
1899 if (limit32<oldLength && U16_IS_LEAD(rep->charAt(limit32-1)) &&
1900 U16_IS_TRAIL(rep->charAt(limit32)))
1902 limit32++;
1907 rep->handleReplaceBetween(start32, limit32, replStr);
1919 int32_t newIndexPos = limit32 + lengthDelta;
1946 int32_t limit32 = pinIndex(limit, length);
1953 int32_t segLength=limit32-start32;
1954 rep->copy(start32, limit32, destIndex32);
1957 limit32+=segLength;
1959 rep->handleReplaceBetween(start32, limit32, UnicodeString());
1962 rep->copy(start32, limit32, destIndex32);
1977 int32_t nativeIterIndex = destIndex32 + limit32 - start32;
2125 int32_t limit32 = limit<length ? us->getChar32Start((int32_t)limit) : length;
2127 length=limit32-start32;
2162 int32_t limit32 = pinIndex(limit, oldLength);
2166 if (limit32 < oldLength) {
2167 limit32 = us->getChar32Start(limit32);
2171 us->replace(start32, limit32-start32, src, length);
2182 ut->chunkOffset = limit32 + lengthDelta;
2200 int32_t limit32 = pinIndex(limit, length);
2203 if( start32>limit32 || (start32<destIndex32 && destIndex32<limit32)) {
2210 int32_t segLength=limit32-start32;
2211 us->copy(start32, limit32, destIndex32);
2218 us->copy(start32, limit32, destIndex32);
2225 ut->chunkLength += limit32-start32;
2231 ut->chunkOffset = destIndex32+limit32-start32;
2489 int32_t limit32;
2500 limit32 = pinIndex(limit, strLength);
2502 limit32 = pinIndex(limit, INT32_MAX);
2505 for (si=start32; si<limit32; si++) {
2523 di = limit32 - start32;
2524 si = limit32;
2746 int32_t limit32 = pinIndex(limit, length);
2755 while (srci<limit32) {