HomeSort by relevance Sort by last modified time
    Searched defs:targetLimit (Results 1 - 25 of 25) sorted by null

  /external/icu4c/common/unicode/
ucnv_err.h 199 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
215 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
  /external/icu4c/common/
unistr_cnv.cpp 165 char *targetLimit = (char *)U_MAX_PTR(target);
166 // U_MAX_PTR(target) returns a targetLimit that is at most 0x7fffffff
168 capacity = (int32_t)(targetLimit - target);
ucnv_u32.c 50 const UChar *targetLimit = args->targetLimit;
55 if (args->converter->toUnicodeStatus && myTarget < targetLimit) {
64 while (mySource < sourceLimit && myTarget < targetLimit) {
93 if (myTarget < targetLimit) {
113 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) {
130 const UChar *targetLimit = args->targetLimit;
136 if (args->converter->toUnicodeStatus && myTarget < targetLimit) {
145 while (mySource < sourceLimit && myTarget < targetLimit) {
    [all...]
ucnv_u7.c 210 const UChar *targetLimit;
234 targetLimit=pArgs->targetLimit;
262 targetCapacity=(int32_t)(targetLimit-target);
291 if(source<sourceLimit && target>=targetLimit) {
308 if(target<targetLimit) {
460 uint8_t *target, *targetLimit;
479 targetLimit=(uint8_t *)pArgs->targetLimit;
497 targetCapacity=(int32_t)(targetLimit-target)
    [all...]
ucnv_u8.c 94 const UChar *targetLimit = args->targetLimit;
101 if (cnv->toUnicodeStatus && myTarget < targetLimit)
113 while (mySource < sourceLimit && myTarget < targetLimit)
181 if (myTarget < targetLimit)
205 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
224 const UChar *targetLimit = args->targetLimit;
231 if (cnv->toUnicodeStatus && myTarget < targetLimit)
242 while (mySource < sourceLimit && myTarget < targetLimit)
    [all...]
ucnvbocu.c 404 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
453 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target);
653 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
693 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target);
939 const UChar *targetLimit;
954 targetLimit=pArgs->targetLimit;
974 if(count>0 && byteIndex>0 && target<targetLimit) {
982 count=(int32_t)(pArgs->targetLimit-target);
    [all...]
ucnv_ct.c 332 const uint8_t *targetLimit = (const uint8_t *) args->targetLimit;
350 if((sourceChar = cnv->fromUChar32)!=0 && target< targetLimit) {
355 if(target < targetLimit){
434 if (target < targetLimit) {
489 if(myTarget < args->targetLimit){
526 if (myTarget < args->targetLimit) {
ucnvscsu.c 235 const UChar *targetLimit;
252 targetLimit=pArgs->targetLimit;
289 while(source<sourceLimit && target<targetLimit && (b=*source)>=0x20) {
309 if(target<targetLimit) {
334 if(target>=targetLimit) {
417 if(target<targetLimit) {
477 while(source+1<sourceLimit && target<targetLimit && (uint8_t)((b=*source)-UC0)>(Urs-UC0)) {
491 if(target>=targetLimit) {
589 const UChar *targetLimit;
    [all...]
ucnv.c     [all...]
ucnvisci.c     [all...]
ucnv2022.c 407 uint8_t **target, const char *targetLimit,
413 ucnv_fromUWriteBytes(cnv, bytes, length, &targetChars, targetLimit,
    [all...]
ucnvmbcs.c     [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
ucnv_err.h 192 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
208 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ucnv_err.h 192 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
208 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
  /external/webkit/Source/WebCore/icu/unicode/
ucnv_err.h 192 const char *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
208 const UChar *targetLimit; /**< Pointer to the limit (end + 1) of target buffer. @stable ICU 2.0 */
  /external/icu4c/test/perf/convperf/
convperf.h 30 UChar* targetLimit;
42 targetLimit = NULL;
48 targetLimit = target + reqdLen;
59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
75 char* targetLimit;
88 targetLimit = NULL;
94 targetLimit = target + reqdLen;
105 ucnv_fromUnicode(conv,&myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
  /external/webkit/Source/WebCore/platform/text/
TextCodecICU.cpp 251 int TextCodecICU::decodeToBuffer(UChar* target, UChar* targetLimit, const char*& source, const char* sourceLimit, int32_t* offsets, bool flush, UErrorCode& err)
255 ucnv_toUnicode(m_converterICU, &target, targetLimit, &source, sourceLimit, offsets, flush, &err);
460 char* targetLimit = target + ConversionBufferSize;
462 ucnv_fromUnicode(m_converterICU, &target, targetLimit, &source, sourceLimit, 0, true, &err);
  /external/icu4c/samples/ucnv/
convsamp.cpp 302 UChar *targetLimit;
337 targetLimit = uBuf + uBufSize;
339 ucnv_toUnicode(conv, &target, targetLimit,
883 UChar *targetLimit;
927 targetLimit = uBuf + uBufSize;
929 ucnv_toUnicode( conv, &target, targetLimit,
988 char *targetLimit;
1033 targetLimit = buf + bufSize;
1035 ucnv_fromUnicode( conv, &target, targetLimit,
  /external/icu4c/test/cintltst/
cintltst.c 492 char *newString,*targetLimit,*target;
511 targetLimit = newString+sizeof(char) * 8 * (length +1);
513 ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,TRUE,&errorCode);
ncnvtst.c     [all...]
ccapitst.c 457 int32_t targetLimit=0, sourceLimit=0, i=0, targetCapacity=0;
463 targetLimit=0;
465 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", NULL, targetLimit , (const char*)source, sourceLimit, &err);
468 targetLimit=targetCapacity+1;
469 target=(char*)malloc(sizeof(char) * targetLimit);
470 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
482 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source+1, -1, &err);
490 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, 0, &err);
497 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
504 targetLimit=0
    [all...]
nucnvtst.c     [all...]
  /external/icu4c/test/intltest/
convtest.cpp 789 UChar *target, *targetLimit, *resultLimit;
806 targetLimit=resultLimit;
811 targetLimit=target;
824 &target, targetLimit,
830 if(source>sourceLimit || target>targetLimit) {
834 if(target!=targetLimit) {
838 } else if(targetLimit==resultLimit) {
844 targetLimit=(resultLimit-target)>=step ? target+step : resultLimit;
    [all...]
  /external/icu4c/i18n/
rbt_pars.cpp     [all...]
  /external/icu4c/tools/genrb/
parse.c 295 UChar *targetLimit = NULL;
348 targetLimit = pTarget+size;
351 while (target < targetLimit)
410 if(target < targetLimit){
    [all...]

Completed in 1095 milliseconds