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 51 const UChar *targetLimit = args->targetLimit;
56 if (args->converter->toUnicodeStatus && myTarget < targetLimit) {
65 while (mySource < sourceLimit && myTarget < targetLimit) {
94 if (myTarget < targetLimit) {
114 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) {
131 const UChar *targetLimit = args->targetLimit;
137 if (args->converter->toUnicodeStatus && myTarget < targetLimit) {
146 while (mySource < sourceLimit && myTarget < targetLimit) {
    [all...]
ucnv_u7.c 211 const UChar *targetLimit;
235 targetLimit=pArgs->targetLimit;
263 targetCapacity=(int32_t)(targetLimit-target);
292 if(source<sourceLimit && target>=targetLimit) {
309 if(target<targetLimit) {
461 uint8_t *target, *targetLimit;
480 targetLimit=(uint8_t *)pArgs->targetLimit;
499 targetCapacity=(int32_t)(targetLimit-target)
    [all...]
ucnv_u8.c 97 const UChar *targetLimit = args->targetLimit;
104 if (cnv->toUnicodeStatus && myTarget < targetLimit)
116 while (mySource < sourceLimit && myTarget < targetLimit)
184 if (myTarget < targetLimit)
208 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
227 const UChar *targetLimit = args->targetLimit;
234 if (cnv->toUnicodeStatus && myTarget < targetLimit)
245 while (mySource < sourceLimit && myTarget < targetLimit)
    [all...]
ucnvbocu.cpp 409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target);
658 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
698 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target);
944 const UChar *targetLimit;
959 targetLimit=pArgs->targetLimit;
    [all...]
ucnv_ct.c 333 const uint8_t *targetLimit = (const uint8_t *) args->targetLimit;
351 if((sourceChar = cnv->fromUChar32)!=0 && target< targetLimit) {
356 if(target < targetLimit){
435 if (target < targetLimit) {
490 if(myTarget < args->targetLimit){
530 if (myTarget < args->targetLimit) {
ucnvscsu.c 236 const UChar *targetLimit;
253 targetLimit=pArgs->targetLimit;
290 while(source<sourceLimit && target<targetLimit && (b=*source)>=0x20) {
310 if(target<targetLimit) {
335 if(target>=targetLimit) {
418 if(target<targetLimit) {
478 while(source+1<sourceLimit && target<targetLimit && (uint8_t)((b=*source)-UC0)>(Urs-UC0)) {
492 if(target>=targetLimit) {
590 const UChar *targetLimit;
    [all...]
ucnv.c     [all...]
ucnvisci.c 828 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err){ \
    [all...]
ucnv2022.cpp 413 uint8_t **target, const char *targetLimit,
419 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 297 UChar *targetLimit;
332 targetLimit = uBuf + uBufSize;
334 ucnv_toUnicode(conv, &target, targetLimit,
878 UChar *targetLimit;
922 targetLimit = uBuf + uBufSize;
924 ucnv_toUnicode( conv, &target, targetLimit,
983 char *targetLimit;
1028 targetLimit = buf + bufSize;
1030 ucnv_fromUnicode( conv, &target, targetLimit,
  /external/icu4c/test/cintltst/
cintltst.c 504 char *newString,*targetLimit,*target;
523 targetLimit = newString+sizeof(char) * 8 * (length +1);
525 ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,TRUE,&errorCode);
ncnvtst.c     [all...]
ccapitst.c 414 int32_t targetLimit=0, sourceLimit=0, i=0, targetCapacity=0;
420 targetLimit=0;
422 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", NULL, targetLimit , (const char*)source, sourceLimit, &err);
425 targetLimit=targetCapacity+1;
426 target=(char*)malloc(sizeof(char) * targetLimit);
427 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
439 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source+1, -1, &err);
447 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, 0, &err);
454 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err);
461 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.cpp 292 UChar *targetLimit = NULL;
345 targetLimit = pTarget+size;
348 while (target < targetLimit)
407 if(target < targetLimit){
    [all...]

Completed in 515 milliseconds