/third_party/node/deps/icu-small/source/common/ |
D | ucnvlat1.cpp | 40 int32_t targetCapacity, length; in _Latin1ToUnicodeWithOffsets() local 48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets() 58 if(length<=targetCapacity) { in _Latin1ToUnicodeWithOffsets() 59 targetCapacity=length; in _Latin1ToUnicodeWithOffsets() 63 length=targetCapacity; in _Latin1ToUnicodeWithOffsets() 66 if(targetCapacity>=8) { in _Latin1ToUnicodeWithOffsets() 70 loops=count=targetCapacity>>3; in _Latin1ToUnicodeWithOffsets() 71 length=targetCapacity&=0x7; in _Latin1ToUnicodeWithOffsets() 101 while(targetCapacity>0) { in _Latin1ToUnicodeWithOffsets() 103 --targetCapacity; in _Latin1ToUnicodeWithOffsets() [all …]
|
D | ucnvbocu.cpp | 397 int32_t targetCapacity; in _Bocu1FromUnicodeWithOffsets() local 409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets() 424 if(c!=0 && targetCapacity>0) { in _Bocu1FromUnicodeWithOffsets() 432 if(targetCapacity>diff) { in _Bocu1FromUnicodeWithOffsets() 433 targetCapacity=diff; in _Bocu1FromUnicodeWithOffsets() 435 while(targetCapacity>0 && (c=*source)<0x3000) { in _Bocu1FromUnicodeWithOffsets() 443 --targetCapacity; in _Bocu1FromUnicodeWithOffsets() 451 --targetCapacity; in _Bocu1FromUnicodeWithOffsets() 458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets() 463 if(targetCapacity>0) { in _Bocu1FromUnicodeWithOffsets() [all …]
|
D | ucnv_u16.cpp | 59 uint32_t targetCapacity, length, sourceIndex; in _UTF16BEFromUnicodeWithOffsets() local 89 targetCapacity=(uint32_t)(pArgs->targetLimit-target); in _UTF16BEFromUnicodeWithOffsets() 95 if((c=(char16_t)cnv->fromUChar32)!=0 && U16_IS_TRAIL(trail=*source) && targetCapacity>=4) { in _UTF16BEFromUnicodeWithOffsets() 104 targetCapacity-=4; in _UTF16BEFromUnicodeWithOffsets() 118 if(count>targetCapacity) { in _UTF16BEFromUnicodeWithOffsets() 119 count=targetCapacity&~1; in _UTF16BEFromUnicodeWithOffsets() 122 targetCapacity-=count; in _UTF16BEFromUnicodeWithOffsets() 177 if(length>0 && targetCapacity>0) { in _UTF16BEFromUnicodeWithOffsets() 197 targetCapacity+=2*count; in _UTF16BEFromUnicodeWithOffsets() 242 targetCapacity=(uint32_t)(pArgs->targetLimit-(char *)target); in _UTF16BEFromUnicodeWithOffsets() [all …]
|
D | ucnvscsu.cpp | 1017 int32_t targetCapacity; in _SCSUFromUnicodeWithOffsets() local 1044 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _SCSUFromUnicodeWithOffsets() 1061 if(c!=0 && targetCapacity>0) { in _SCSUFromUnicodeWithOffsets() 1068 if(targetCapacity<=0) { in _SCSUFromUnicodeWithOffsets() 1082 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1090 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1103 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1141 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1167 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1238 if(c!=0 && targetCapacity>0) { in _SCSUFromUnicodeWithOffsets() [all …]
|
D | ucnvmbcs.cpp | 2190 int32_t targetCapacity, length; in ucnv_MBCSSingleToBMPWithOffsets() local 2205 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSSingleToBMPWithOffsets() 2223 if(length<targetCapacity) { in ucnv_MBCSSingleToBMPWithOffsets() 2224 targetCapacity=length; in ucnv_MBCSSingleToBMPWithOffsets() 2231 if(targetCapacity>=16) { in ucnv_MBCSSingleToBMPWithOffsets() 2234 loops=count=targetCapacity>>4; in ucnv_MBCSSingleToBMPWithOffsets() 2278 targetCapacity-=16*count; in ucnv_MBCSSingleToBMPWithOffsets() 2306 while(targetCapacity > 0 && source < sourceLimit) { in ucnv_MBCSSingleToBMPWithOffsets() 2314 --targetCapacity; in ucnv_MBCSSingleToBMPWithOffsets() 2327 --targetCapacity; in ucnv_MBCSSingleToBMPWithOffsets() [all …]
|
D | ucnv_u7.cpp | 222 int32_t length, targetCapacity; in _UTF7ToUnicodeWithOffsets() local 268 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets() 269 if(length>targetCapacity) { in _UTF7ToUnicodeWithOffsets() 270 length=targetCapacity; in _UTF7ToUnicodeWithOffsets() 469 int32_t length, targetCapacity, sourceIndex; in _UTF7FromUnicodeWithOffsets() local 504 targetCapacity=(int32_t)(targetLimit-target); in _UTF7FromUnicodeWithOffsets() 505 if(length>targetCapacity) { in _UTF7FromUnicodeWithOffsets() 506 length=targetCapacity; in _UTF7FromUnicodeWithOffsets() 906 int32_t length, targetCapacity; in _IMAPToUnicodeWithOffsets() local 953 targetCapacity=(int32_t)(targetLimit-target); in _IMAPToUnicodeWithOffsets() [all …]
|
D | ucnv.cpp | 2405 char *target, int32_t targetCapacity, in ucnv_internalConvert() argument 2425 return u_terminateChars(target, targetCapacity, 0, pErrorCode); in ucnv_internalConvert() 2432 if(targetCapacity>0) { in ucnv_internalConvert() 2434 targetLimit=target+targetCapacity; in ucnv_internalConvert() 2450 if(*pErrorCode==U_BUFFER_OVERFLOW_ERROR || targetCapacity==0) in ucnv_internalConvert() 2469 return u_terminateChars(target, targetCapacity, targetLength, pErrorCode); in ucnv_internalConvert() 2478 char *target, int32_t targetCapacity, in ucnv_convert() argument 2490 targetCapacity<0 || (targetCapacity>0 && target==nullptr) in ucnv_convert() 2498 return u_terminateChars(target, targetCapacity, 0, pErrorCode); in ucnv_convert() 2514 target, targetCapacity, in ucnv_convert() [all …]
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | ucnvlat1.cpp | 40 int32_t targetCapacity, length; in _Latin1ToUnicodeWithOffsets() local 48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets() 58 if(length<=targetCapacity) { in _Latin1ToUnicodeWithOffsets() 59 targetCapacity=length; in _Latin1ToUnicodeWithOffsets() 63 length=targetCapacity; in _Latin1ToUnicodeWithOffsets() 66 if(targetCapacity>=8) { in _Latin1ToUnicodeWithOffsets() 70 loops=count=targetCapacity>>3; in _Latin1ToUnicodeWithOffsets() 71 length=targetCapacity&=0x7; in _Latin1ToUnicodeWithOffsets() 101 while(targetCapacity>0) { in _Latin1ToUnicodeWithOffsets() 103 --targetCapacity; in _Latin1ToUnicodeWithOffsets() [all …]
|
D | ucnvbocu.cpp | 397 int32_t targetCapacity; in _Bocu1FromUnicodeWithOffsets() local 409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets() 424 if(c!=0 && targetCapacity>0) { in _Bocu1FromUnicodeWithOffsets() 432 if(targetCapacity>diff) { in _Bocu1FromUnicodeWithOffsets() 433 targetCapacity=diff; in _Bocu1FromUnicodeWithOffsets() 435 while(targetCapacity>0 && (c=*source)<0x3000) { in _Bocu1FromUnicodeWithOffsets() 443 --targetCapacity; in _Bocu1FromUnicodeWithOffsets() 451 --targetCapacity; in _Bocu1FromUnicodeWithOffsets() 458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets() 463 if(targetCapacity>0) { in _Bocu1FromUnicodeWithOffsets() [all …]
|
D | ucnv_u16.cpp | 59 uint32_t targetCapacity, length, sourceIndex; in _UTF16BEFromUnicodeWithOffsets() local 89 targetCapacity=(uint32_t)(pArgs->targetLimit-target); in _UTF16BEFromUnicodeWithOffsets() 95 if((c=(UChar)cnv->fromUChar32)!=0 && U16_IS_TRAIL(trail=*source) && targetCapacity>=4) { in _UTF16BEFromUnicodeWithOffsets() 104 targetCapacity-=4; in _UTF16BEFromUnicodeWithOffsets() 118 if(count>targetCapacity) { in _UTF16BEFromUnicodeWithOffsets() 119 count=targetCapacity&~1; in _UTF16BEFromUnicodeWithOffsets() 122 targetCapacity-=count; in _UTF16BEFromUnicodeWithOffsets() 177 if(length>0 && targetCapacity>0) { in _UTF16BEFromUnicodeWithOffsets() 197 targetCapacity+=2*count; in _UTF16BEFromUnicodeWithOffsets() 242 targetCapacity=(uint32_t)(pArgs->targetLimit-(char *)target); in _UTF16BEFromUnicodeWithOffsets() [all …]
|
D | ucnvscsu.cpp | 1017 int32_t targetCapacity; in _SCSUFromUnicodeWithOffsets() local 1044 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _SCSUFromUnicodeWithOffsets() 1061 if(c!=0 && targetCapacity>0) { in _SCSUFromUnicodeWithOffsets() 1068 if(targetCapacity<=0) { in _SCSUFromUnicodeWithOffsets() 1082 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1090 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1103 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1141 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1167 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1238 if(c!=0 && targetCapacity>0) { in _SCSUFromUnicodeWithOffsets() [all …]
|
D | ucnvmbcs.cpp | 2190 int32_t targetCapacity, length; in ucnv_MBCSSingleToBMPWithOffsets() local 2205 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSSingleToBMPWithOffsets() 2223 if(length<targetCapacity) { in ucnv_MBCSSingleToBMPWithOffsets() 2224 targetCapacity=length; in ucnv_MBCSSingleToBMPWithOffsets() 2231 if(targetCapacity>=16) { in ucnv_MBCSSingleToBMPWithOffsets() 2234 loops=count=targetCapacity>>4; in ucnv_MBCSSingleToBMPWithOffsets() 2278 targetCapacity-=16*count; in ucnv_MBCSSingleToBMPWithOffsets() 2306 while(targetCapacity > 0 && source < sourceLimit) { in ucnv_MBCSSingleToBMPWithOffsets() 2314 --targetCapacity; in ucnv_MBCSSingleToBMPWithOffsets() 2327 --targetCapacity; in ucnv_MBCSSingleToBMPWithOffsets() [all …]
|
D | ucnv_u7.cpp | 222 int32_t length, targetCapacity; in _UTF7ToUnicodeWithOffsets() local 268 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets() 269 if(length>targetCapacity) { in _UTF7ToUnicodeWithOffsets() 270 length=targetCapacity; in _UTF7ToUnicodeWithOffsets() 469 int32_t length, targetCapacity, sourceIndex; in _UTF7FromUnicodeWithOffsets() local 504 targetCapacity=(int32_t)(targetLimit-target); in _UTF7FromUnicodeWithOffsets() 505 if(length>targetCapacity) { in _UTF7FromUnicodeWithOffsets() 506 length=targetCapacity; in _UTF7FromUnicodeWithOffsets() 906 int32_t length, targetCapacity; in _IMAPToUnicodeWithOffsets() local 953 targetCapacity=(int32_t)(targetLimit-target); in _IMAPToUnicodeWithOffsets() [all …]
|
/third_party/icu/icu4c/source/common/ |
D | ucnvlat1.cpp | 40 int32_t targetCapacity, length; in _Latin1ToUnicodeWithOffsets() local 48 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets() 58 if(length<=targetCapacity) { in _Latin1ToUnicodeWithOffsets() 59 targetCapacity=length; in _Latin1ToUnicodeWithOffsets() 63 length=targetCapacity; in _Latin1ToUnicodeWithOffsets() 66 if(targetCapacity>=8) { in _Latin1ToUnicodeWithOffsets() 70 loops=count=targetCapacity>>3; in _Latin1ToUnicodeWithOffsets() 71 length=targetCapacity&=0x7; in _Latin1ToUnicodeWithOffsets() 101 while(targetCapacity>0) { in _Latin1ToUnicodeWithOffsets() 103 --targetCapacity; in _Latin1ToUnicodeWithOffsets() [all …]
|
D | ucnvbocu.cpp | 397 int32_t targetCapacity; in _Bocu1FromUnicodeWithOffsets() local 409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets() 424 if(c!=0 && targetCapacity>0) { in _Bocu1FromUnicodeWithOffsets() 432 if(targetCapacity>diff) { in _Bocu1FromUnicodeWithOffsets() 433 targetCapacity=diff; in _Bocu1FromUnicodeWithOffsets() 435 while(targetCapacity>0 && (c=*source)<0x3000) { in _Bocu1FromUnicodeWithOffsets() 443 --targetCapacity; in _Bocu1FromUnicodeWithOffsets() 451 --targetCapacity; in _Bocu1FromUnicodeWithOffsets() 458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets() 463 if(targetCapacity>0) { in _Bocu1FromUnicodeWithOffsets() [all …]
|
D | ucnv_u16.cpp | 59 uint32_t targetCapacity, length, sourceIndex; in _UTF16BEFromUnicodeWithOffsets() local 89 targetCapacity=(uint32_t)(pArgs->targetLimit-target); in _UTF16BEFromUnicodeWithOffsets() 95 if((c=(UChar)cnv->fromUChar32)!=0 && U16_IS_TRAIL(trail=*source) && targetCapacity>=4) { in _UTF16BEFromUnicodeWithOffsets() 104 targetCapacity-=4; in _UTF16BEFromUnicodeWithOffsets() 118 if(count>targetCapacity) { in _UTF16BEFromUnicodeWithOffsets() 119 count=targetCapacity&~1; in _UTF16BEFromUnicodeWithOffsets() 122 targetCapacity-=count; in _UTF16BEFromUnicodeWithOffsets() 177 if(length>0 && targetCapacity>0) { in _UTF16BEFromUnicodeWithOffsets() 197 targetCapacity+=2*count; in _UTF16BEFromUnicodeWithOffsets() 242 targetCapacity=(uint32_t)(pArgs->targetLimit-(char *)target); in _UTF16BEFromUnicodeWithOffsets() [all …]
|
D | ucnvscsu.cpp | 1017 int32_t targetCapacity; in _SCSUFromUnicodeWithOffsets() local 1044 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _SCSUFromUnicodeWithOffsets() 1061 if(c!=0 && targetCapacity>0) { in _SCSUFromUnicodeWithOffsets() 1068 if(targetCapacity<=0) { in _SCSUFromUnicodeWithOffsets() 1082 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1090 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1103 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1141 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1167 --targetCapacity; in _SCSUFromUnicodeWithOffsets() 1238 if(c!=0 && targetCapacity>0) { in _SCSUFromUnicodeWithOffsets() [all …]
|
D | ucnvmbcs.cpp | 2190 int32_t targetCapacity, length; in ucnv_MBCSSingleToBMPWithOffsets() local 2205 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in ucnv_MBCSSingleToBMPWithOffsets() 2223 if(length<targetCapacity) { in ucnv_MBCSSingleToBMPWithOffsets() 2224 targetCapacity=length; in ucnv_MBCSSingleToBMPWithOffsets() 2231 if(targetCapacity>=16) { in ucnv_MBCSSingleToBMPWithOffsets() 2234 loops=count=targetCapacity>>4; in ucnv_MBCSSingleToBMPWithOffsets() 2278 targetCapacity-=16*count; in ucnv_MBCSSingleToBMPWithOffsets() 2306 while(targetCapacity > 0 && source < sourceLimit) { in ucnv_MBCSSingleToBMPWithOffsets() 2314 --targetCapacity; in ucnv_MBCSSingleToBMPWithOffsets() 2327 --targetCapacity; in ucnv_MBCSSingleToBMPWithOffsets() [all …]
|
D | ucnv_u7.cpp | 222 int32_t length, targetCapacity; in _UTF7ToUnicodeWithOffsets() local 268 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets() 269 if(length>targetCapacity) { in _UTF7ToUnicodeWithOffsets() 270 length=targetCapacity; in _UTF7ToUnicodeWithOffsets() 469 int32_t length, targetCapacity, sourceIndex; in _UTF7FromUnicodeWithOffsets() local 504 targetCapacity=(int32_t)(targetLimit-target); in _UTF7FromUnicodeWithOffsets() 505 if(length>targetCapacity) { in _UTF7FromUnicodeWithOffsets() 506 length=targetCapacity; in _UTF7FromUnicodeWithOffsets() 906 int32_t length, targetCapacity; in _IMAPToUnicodeWithOffsets() local 953 targetCapacity=(int32_t)(targetLimit-target); in _IMAPToUnicodeWithOffsets() [all …]
|
D | ucnv.cpp | 2405 char *target, int32_t targetCapacity, in ucnv_internalConvert() argument 2425 return u_terminateChars(target, targetCapacity, 0, pErrorCode); in ucnv_internalConvert() 2432 if(targetCapacity>0) { in ucnv_internalConvert() 2434 targetLimit=target+targetCapacity; in ucnv_internalConvert() 2450 if(*pErrorCode==U_BUFFER_OVERFLOW_ERROR || targetCapacity==0) in ucnv_internalConvert() 2469 return u_terminateChars(target, targetCapacity, targetLength, pErrorCode); in ucnv_internalConvert() 2478 char *target, int32_t targetCapacity, in ucnv_convert() argument 2490 targetCapacity<0 || (targetCapacity>0 && target==NULL) in ucnv_convert() 2498 return u_terminateChars(target, targetCapacity, 0, pErrorCode); in ucnv_convert() 2514 target, targetCapacity, in ucnv_convert() [all …]
|
/third_party/icu/icu4c/source/tools/toolutil/ |
D | udbgutil.cpp | 383 …mParameterCallback(const USystemParams *param, char *target, int32_t targetCapacity, UErrorCode *s… 394 paramEmpty(const USystemParams * /* param */, char *target, int32_t targetCapacity, UErrorCode *sta… in paramEmpty() argument 396 return u_terminateChars(target, targetCapacity, 0, status); in paramEmpty() 400 paramStatic(const USystemParams *param, char *target, int32_t targetCapacity, UErrorCode *status) { in paramStatic() argument 401 if(param->paramStr==NULL) return paramEmpty(param,target,targetCapacity,status); in paramStatic() 405 uprv_strncpy(target,param->paramStr,uprv_min(len,targetCapacity)); in paramStatic() 407 return u_terminateChars(target, targetCapacity, len, status); in paramStatic() 412 static int32_t stringToStringBuffer(char *target, int32_t targetCapacity, const char *str, UErrorCo… in stringToStringBuffer() argument 418 uprv_strncpy(target,str,uprv_min(len,targetCapacity)); in stringToStringBuffer() 424 uprv_strncpy(target,s,uprv_min(len,targetCapacity)); in stringToStringBuffer() [all …]
|
/third_party/node/deps/icu-small/source/tools/toolutil/ |
D | udbgutil.cpp | 386 …mParameterCallback(const USystemParams *param, char *target, int32_t targetCapacity, UErrorCode *s… 397 paramEmpty(const USystemParams * /* param */, char *target, int32_t targetCapacity, UErrorCode *sta… in paramEmpty() argument 399 return u_terminateChars(target, targetCapacity, 0, status); in paramEmpty() 403 paramStatic(const USystemParams *param, char *target, int32_t targetCapacity, UErrorCode *status) { in paramStatic() argument 404 if(param->paramStr==nullptr) return paramEmpty(param,target,targetCapacity,status); in paramStatic() 408 uprv_strncpy(target,param->paramStr,uprv_min(len,targetCapacity)); in paramStatic() 410 return u_terminateChars(target, targetCapacity, len, status); in paramStatic() 415 static int32_t stringToStringBuffer(char *target, int32_t targetCapacity, const char *str, UErrorCo… in stringToStringBuffer() argument 421 uprv_strncpy(target,str,uprv_min(len,targetCapacity)); in stringToStringBuffer() 427 uprv_strncpy(target,s,uprv_min(len,targetCapacity)); in stringToStringBuffer() [all …]
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
D | udbgutil.cpp | 383 …mParameterCallback(const USystemParams *param, char *target, int32_t targetCapacity, UErrorCode *s… 394 paramEmpty(const USystemParams * /* param */, char *target, int32_t targetCapacity, UErrorCode *sta… in paramEmpty() argument 396 return u_terminateChars(target, targetCapacity, 0, status); in paramEmpty() 400 paramStatic(const USystemParams *param, char *target, int32_t targetCapacity, UErrorCode *status) { in paramStatic() argument 401 if(param->paramStr==NULL) return paramEmpty(param,target,targetCapacity,status); in paramStatic() 405 uprv_strncpy(target,param->paramStr,uprv_min(len,targetCapacity)); in paramStatic() 407 return u_terminateChars(target, targetCapacity, len, status); in paramStatic() 412 static int32_t stringToStringBuffer(char *target, int32_t targetCapacity, const char *str, UErrorCo… in stringToStringBuffer() argument 418 uprv_strncpy(target,str,uprv_min(len,targetCapacity)); in stringToStringBuffer() 424 uprv_strncpy(target,s,uprv_min(len,targetCapacity)); in stringToStringBuffer() [all …]
|
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetBOCU1.java | 240 int targetCapacity; field in CharsetBOCU1.CharsetEncoderBOCU 398 targetCapacity = target.limit() - target.position(); in encodeLoop() 411 if(c!=0 && targetCapacity>0){ in encodeLoop() 437 if(targetCapacity>diff){ in fastSingle() 438 targetCapacity = diff; in fastSingle() 440 while(targetCapacity>0 && (c=source.get(source.position()))<0x3000){ in fastSingle() 450 --targetCapacity; in fastSingle() 460 --targetCapacity; in fastSingle() 491 targetCapacity = target.limit()-target.position(); in regularLoop() 496 if(LoopAfterTrail || targetCapacity>0){ in regularLoop() [all …]
|
D | CharsetSCSU.java | 636 private int targetCapacity; field in CharsetSCSU.CharsetEncoderSCSU 659 targetCapacity = target.limit()-target.position(); in encodeLoop() 770 if(c!=0 && targetCapacity>0 && !AfterGetTrail){ in loop() 776 if(targetCapacity<=0 && !AfterGetTrail){ in loop() 793 --targetCapacity; in loop() 801 --targetCapacity; in loop() 815 --targetCapacity; in loop() 844 --targetCapacity; in loop() 875 --targetCapacity; in loop() 956 if(c!=0 && targetCapacity>0 && !AfterGetTrailUnicode){ in loop() [all …]
|