Home
last modified time | relevance | path

Searched refs:targetLimit (Results 1 – 25 of 108) sorted by relevance

12345

/third_party/node/deps/icu-small/source/common/
Ducnv_u32.cpp53 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE() local
58 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
67 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
96 if (myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
116 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) { in T_UConverter_toUnicode_UTF32_BE()
133 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC() local
139 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
148 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
178 if (myTarget < targetLimit) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
201 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
[all …]
Ducnv_u7.cpp216 const UChar *targetLimit; in _UTF7ToUnicodeWithOffsets() local
240 targetLimit=pArgs->targetLimit; in _UTF7ToUnicodeWithOffsets()
268 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets()
297 if(source<sourceLimit && target>=targetLimit) { in _UTF7ToUnicodeWithOffsets()
314 if(target<targetLimit) { in _UTF7ToUnicodeWithOffsets()
466 uint8_t *target, *targetLimit; in _UTF7FromUnicodeWithOffsets() local
485 targetLimit=(uint8_t *)pArgs->targetLimit; in _UTF7FromUnicodeWithOffsets()
504 targetCapacity=(int32_t)(targetLimit-target); in _UTF7FromUnicodeWithOffsets()
520 if(target<targetLimit) { in _UTF7FromUnicodeWithOffsets()
550 if(source<sourceLimit && target>=targetLimit) { in _UTF7FromUnicodeWithOffsets()
[all …]
Ducnv_u8.cpp72 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8() local
79 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
91 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
147 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8()
171 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8()
190 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8_OFFSETS_LOGIC() local
197 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
208 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
265 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
289 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
[all …]
Ducnv_cnv.cpp57 char **target, const char *targetLimit, in ucnv_fromUWriteBytes() argument
66 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
72 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
97 UChar **target, const UChar *targetLimit, in ucnv_toUWriteUChars() argument
106 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
112 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
137 UChar **target, const UChar *targetLimit, in ucnv_toUWriteCodePoint() argument
146 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
153 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
Ducnv.cpp1118 char **target, const char *targetLimit, in ucnv_outputOverflowFromUnicode() argument
1136 if(t==targetLimit) { in ucnv_outputOverflowFromUnicode()
1171 char **target, const char *targetLimit, in ucnv_fromUnicode() argument
1221 if (sourceLimit<s || targetLimit<t || in ucnv_fromUnicode()
1223 ((size_t)(targetLimit-t)>(size_t)0x7fffffff && targetLimit>t) || in ucnv_fromUnicode()
1232 ucnv_outputOverflowFromUnicode(cnv, target, targetLimit, &offsets, err) in ucnv_fromUnicode()
1259 args.targetLimit=targetLimit; in ucnv_fromUnicode()
1564 UChar **target, const UChar *targetLimit, in ucnv_outputOverflowToUnicode() argument
1582 if(t==targetLimit) { in ucnv_outputOverflowToUnicode()
1617 UChar **target, const UChar *targetLimit, in ucnv_toUnicode() argument
[all …]
Ducnvbocu.cpp409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets()
458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets()
667 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicode()
707 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicode()
961 const UChar *targetLimit; in _Bocu1ToUnicodeWithOffsets() local
976 targetLimit=pArgs->targetLimit; in _Bocu1ToUnicodeWithOffsets()
996 if(count>0 && byteIndex>0 && target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1004 count=(int32_t)(pArgs->targetLimit-target); in _Bocu1ToUnicodeWithOffsets()
1034 if(target>=targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1136 if(target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Ducnv_u32.cpp53 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE() local
58 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
67 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
96 if (myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
116 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) { in T_UConverter_toUnicode_UTF32_BE()
133 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC() local
139 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
148 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
178 if (myTarget < targetLimit) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
201 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
[all …]
Ducnv_u7.cpp216 const UChar *targetLimit; in _UTF7ToUnicodeWithOffsets() local
240 targetLimit=pArgs->targetLimit; in _UTF7ToUnicodeWithOffsets()
268 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets()
297 if(source<sourceLimit && target>=targetLimit) { in _UTF7ToUnicodeWithOffsets()
314 if(target<targetLimit) { in _UTF7ToUnicodeWithOffsets()
466 uint8_t *target, *targetLimit; in _UTF7FromUnicodeWithOffsets() local
485 targetLimit=(uint8_t *)pArgs->targetLimit; in _UTF7FromUnicodeWithOffsets()
504 targetCapacity=(int32_t)(targetLimit-target); in _UTF7FromUnicodeWithOffsets()
520 if(target<targetLimit) { in _UTF7FromUnicodeWithOffsets()
550 if(source<sourceLimit && target>=targetLimit) { in _UTF7FromUnicodeWithOffsets()
[all …]
Ducnv_u8.cpp72 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8() local
79 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
91 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
147 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8()
171 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8()
190 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8_OFFSETS_LOGIC() local
197 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
208 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
265 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
289 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
[all …]
Ducnv_cnv.cpp57 char **target, const char *targetLimit, in ucnv_fromUWriteBytes() argument
66 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
72 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
97 UChar **target, const UChar *targetLimit, in ucnv_toUWriteUChars() argument
106 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
112 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
137 UChar **target, const UChar *targetLimit, in ucnv_toUWriteCodePoint() argument
146 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
153 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
Ducnv.cpp1118 char **target, const char *targetLimit, in ucnv_outputOverflowFromUnicode() argument
1136 if(t==targetLimit) { in ucnv_outputOverflowFromUnicode()
1171 char **target, const char *targetLimit, in ucnv_fromUnicode() argument
1221 if (sourceLimit<s || targetLimit<t || in ucnv_fromUnicode()
1223 ((size_t)(targetLimit-t)>(size_t)0x7fffffff && targetLimit>t) || in ucnv_fromUnicode()
1232 ucnv_outputOverflowFromUnicode(cnv, target, targetLimit, &offsets, err) in ucnv_fromUnicode()
1259 args.targetLimit=targetLimit; in ucnv_fromUnicode()
1564 UChar **target, const UChar *targetLimit, in ucnv_outputOverflowToUnicode() argument
1582 if(t==targetLimit) { in ucnv_outputOverflowToUnicode()
1617 UChar **target, const UChar *targetLimit, in ucnv_toUnicode() argument
[all …]
Ducnvbocu.cpp409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets()
458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets()
667 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicode()
707 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicode()
961 const UChar *targetLimit; in _Bocu1ToUnicodeWithOffsets() local
976 targetLimit=pArgs->targetLimit; in _Bocu1ToUnicodeWithOffsets()
996 if(count>0 && byteIndex>0 && target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1004 count=(int32_t)(pArgs->targetLimit-target); in _Bocu1ToUnicodeWithOffsets()
1034 if(target>=targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1136 if(target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
[all …]
/third_party/icu/icu4c/source/common/
Ducnv_u32.cpp53 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE() local
58 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
67 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
96 if (myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
116 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) { in T_UConverter_toUnicode_UTF32_BE()
133 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC() local
139 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
148 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
178 if (myTarget < targetLimit) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
201 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
[all …]
Ducnv_u7.cpp216 const UChar *targetLimit; in _UTF7ToUnicodeWithOffsets() local
240 targetLimit=pArgs->targetLimit; in _UTF7ToUnicodeWithOffsets()
268 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets()
297 if(source<sourceLimit && target>=targetLimit) { in _UTF7ToUnicodeWithOffsets()
314 if(target<targetLimit) { in _UTF7ToUnicodeWithOffsets()
466 uint8_t *target, *targetLimit; in _UTF7FromUnicodeWithOffsets() local
485 targetLimit=(uint8_t *)pArgs->targetLimit; in _UTF7FromUnicodeWithOffsets()
504 targetCapacity=(int32_t)(targetLimit-target); in _UTF7FromUnicodeWithOffsets()
520 if(target<targetLimit) { in _UTF7FromUnicodeWithOffsets()
550 if(source<sourceLimit && target>=targetLimit) { in _UTF7FromUnicodeWithOffsets()
[all …]
Ducnv_u8.cpp72 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8() local
79 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
91 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
147 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8()
171 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8()
190 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8_OFFSETS_LOGIC() local
197 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
208 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
265 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
289 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
[all …]
Ducnv_cnv.cpp57 char **target, const char *targetLimit, in ucnv_fromUWriteBytes() argument
66 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
72 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
97 UChar **target, const UChar *targetLimit, in ucnv_toUWriteUChars() argument
106 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
112 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
137 UChar **target, const UChar *targetLimit, in ucnv_toUWriteCodePoint() argument
146 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
153 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
Ducnv.cpp1118 char **target, const char *targetLimit, in ucnv_outputOverflowFromUnicode() argument
1136 if(t==targetLimit) { in ucnv_outputOverflowFromUnicode()
1171 char **target, const char *targetLimit, in ucnv_fromUnicode() argument
1221 if (sourceLimit<s || targetLimit<t || in ucnv_fromUnicode()
1223 ((size_t)(targetLimit-t)>(size_t)0x7fffffff && targetLimit>t) || in ucnv_fromUnicode()
1232 ucnv_outputOverflowFromUnicode(cnv, target, targetLimit, &offsets, err) in ucnv_fromUnicode()
1259 args.targetLimit=targetLimit; in ucnv_fromUnicode()
1564 UChar **target, const UChar *targetLimit, in ucnv_outputOverflowToUnicode() argument
1582 if(t==targetLimit) { in ucnv_outputOverflowToUnicode()
1617 UChar **target, const UChar *targetLimit, in ucnv_toUnicode() argument
[all …]
Ducnvbocu.cpp409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets()
458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets()
667 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicode()
707 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicode()
961 const UChar *targetLimit; in _Bocu1ToUnicodeWithOffsets() local
976 targetLimit=pArgs->targetLimit; in _Bocu1ToUnicodeWithOffsets()
996 if(count>0 && byteIndex>0 && target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1004 count=(int32_t)(pArgs->targetLimit-target); in _Bocu1ToUnicodeWithOffsets()
1034 if(target>=targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1136 if(target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/
Ducnv_u32.cpp53 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE() local
58 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
67 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
96 if (myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE()
116 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) { in T_UConverter_toUnicode_UTF32_BE()
133 const UChar *targetLimit = args->targetLimit; in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC() local
139 if (args->converter->toULength > 0 && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
148 while (mySource < sourceLimit && myTarget < targetLimit) { in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
178 if (myTarget < targetLimit) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
201 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in T_UConverter_toUnicode_UTF32_BE_OFFSET_LOGIC()
[all …]
Ducnv_u7.cpp216 const UChar *targetLimit; in _UTF7ToUnicodeWithOffsets() local
240 targetLimit=pArgs->targetLimit; in _UTF7ToUnicodeWithOffsets()
268 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets()
297 if(source<sourceLimit && target>=targetLimit) { in _UTF7ToUnicodeWithOffsets()
314 if(target<targetLimit) { in _UTF7ToUnicodeWithOffsets()
466 uint8_t *target, *targetLimit; in _UTF7FromUnicodeWithOffsets() local
485 targetLimit=(uint8_t *)pArgs->targetLimit; in _UTF7FromUnicodeWithOffsets()
504 targetCapacity=(int32_t)(targetLimit-target); in _UTF7FromUnicodeWithOffsets()
520 if(target<targetLimit) { in _UTF7FromUnicodeWithOffsets()
550 if(source<sourceLimit && target>=targetLimit) { in _UTF7FromUnicodeWithOffsets()
[all …]
Ducnv_u8.cpp72 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8() local
79 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
91 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8()
147 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8()
171 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8()
190 const UChar *targetLimit = args->targetLimit; in ucnv_toUnicode_UTF8_OFFSETS_LOGIC() local
197 if (cnv->toULength > 0 && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
208 while (mySource < sourceLimit && myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
265 if (myTarget < targetLimit) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
289 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) in ucnv_toUnicode_UTF8_OFFSETS_LOGIC()
[all …]
Ducnv_cnv.cpp57 char **target, const char *targetLimit, in ucnv_fromUWriteBytes() argument
66 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
72 while(length>0 && t<targetLimit) { in ucnv_fromUWriteBytes()
97 UChar **target, const UChar *targetLimit, in ucnv_toUWriteUChars() argument
106 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
112 while(length>0 && t<targetLimit) { in ucnv_toUWriteUChars()
137 UChar **target, const UChar *targetLimit, in ucnv_toUWriteCodePoint() argument
146 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
153 if(t<targetLimit) { in ucnv_toUWriteCodePoint()
Ducnv.cpp1118 char **target, const char *targetLimit, in ucnv_outputOverflowFromUnicode() argument
1136 if(t==targetLimit) { in ucnv_outputOverflowFromUnicode()
1171 char **target, const char *targetLimit, in ucnv_fromUnicode() argument
1221 if (sourceLimit<s || targetLimit<t || in ucnv_fromUnicode()
1223 ((size_t)(targetLimit-t)>(size_t)0x7fffffff && targetLimit>t) || in ucnv_fromUnicode()
1232 ucnv_outputOverflowFromUnicode(cnv, target, targetLimit, &offsets, err) in ucnv_fromUnicode()
1259 args.targetLimit=targetLimit; in ucnv_fromUnicode()
1564 UChar **target, const UChar *targetLimit, in ucnv_outputOverflowToUnicode() argument
1582 if(t==targetLimit) { in ucnv_outputOverflowToUnicode()
1617 UChar **target, const UChar *targetLimit, in ucnv_toUnicode() argument
[all …]
Ducnvbocu.cpp409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets()
458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets()
667 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicode()
707 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicode()
961 const UChar *targetLimit; in _Bocu1ToUnicodeWithOffsets() local
976 targetLimit=pArgs->targetLimit; in _Bocu1ToUnicodeWithOffsets()
996 if(count>0 && byteIndex>0 && target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1004 count=(int32_t)(pArgs->targetLimit-target); in _Bocu1ToUnicodeWithOffsets()
1034 if(target>=targetLimit) { in _Bocu1ToUnicodeWithOffsets()
1136 if(target<targetLimit) { in _Bocu1ToUnicodeWithOffsets()
[all …]
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetUTF8.java68 int targetLimit = target.arrayOffset() + target.limit(); in decodeLoop() local
128 if (targetIndex >= targetLimit) { in decodeLoop()
146 if (targetIndex >= targetLimit) { in decodeLoop()
158 if (targetIndex >= targetLimit) { in decodeLoop()
190 int targetLimit = target.limit(); in decodeLoop() local
252 if (targetIndex >= targetLimit) { in decodeLoop()
272 if (targetIndex >= targetLimit) { in decodeLoop()
284 if (targetIndex >= targetLimit) { in decodeLoop()
346 int targetLimit = target.arrayOffset() + target.limit(); in encodeLoop() local
357 cr = encodeFourBytes(sourceArray, targetArray, sourceLimit, targetLimit, in encodeLoop()
[all …]

12345