HomeSort by relevance Sort by last modified time
    Searched refs:myTarget (Results 1 - 12 of 12) sorted by null

  /external/icu4c/samples/cal/
uprint.c 34 char *myTarget;
43 myTarget = buf;
58 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
63 fwrite(buf, sizeof(char), myTarget - buf, f);
66 myTarget = buf;
  /external/icu4c/samples/date/
uprint.c 35 char *myTarget;
44 myTarget = buf;
59 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
64 fwrite(buf, sizeof(char), myTarget - buf, f);
67 myTarget = buf;
  /external/icu4c/common/
ucnv_u32.c 48 UChar *myTarget = args->target;
55 if (args->converter->toUnicodeStatus && myTarget < targetLimit) {
64 while (mySource < sourceLimit && myTarget < targetLimit) {
87 *(myTarget++) = (UChar) ch;
91 *(myTarget++) = U16_LEAD(ch);
93 if (myTarget < targetLimit) {
94 *(myTarget++) = (UChar)ch;
113 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err)) {
118 args->target = myTarget;
127 UChar *myTarget = args->target
    [all...]
ucnv_u8.c 92 UChar *myTarget = args->target;
101 if (cnv->toUnicodeStatus && myTarget < targetLimit)
113 while (mySource < sourceLimit && myTarget < targetLimit)
118 *(myTarget++) = (UChar) ch;
173 *(myTarget++) = (UChar) ch;
179 *(myTarget++) = (UChar) ((ch >> HALF_SHIFT) + SURROGATE_HIGH_START);
181 if (myTarget < targetLimit)
183 *(myTarget++) = (UChar)ch;
205 if (mySource < sourceLimit && myTarget >= targetLimit && U_SUCCESS(*err))
211 args->target = myTarget;
    [all...]
ucnvhz.c 158 UChar *myTarget = args->target;
174 if(myTarget < args->targetLimit){
187 args->offsets[myTarget - args->target]=(int32_t)(mySource - args->source - 2);
189 *(myTarget++)=(UChar)mySourceChar;
202 args->target = myTarget;
233 args->target = myTarget;
298 args->offsets[myTarget - args->target]=(int32_t)(mySource - args->source - 1-(myData->isStateDBCS));
301 *(myTarget++)=(UChar)targetUniChar;
328 args->target = myTarget;
337 char *myTarget = args->target
    [all...]
unistr_cnv.cpp 377 UChar *array, *myTarget;
399 myTarget = array + length();
400 ucnv_toUnicode(converter, &myTarget, array + getCapacity(),
404 setLength((int32_t)(myTarget - array));
ucnv2022.c     [all...]
ucnv_ct.c 464 UChar *myTarget = args->target;
489 if(myTarget < args->targetLimit){
526 if (myTarget < args->targetLimit) {
527 *myTarget++ = 0x00ff&(*mySource++);
540 subArgs.target = myTarget;
549 myTarget = subArgs.target;
569 args->target = myTarget;
ucnv.c     [all...]
  /external/icu4c/extra/uconv/
uwmsg.c 45 char *myTarget;
53 myTarget = buf;
68 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
73 fwrite(buf, sizeof(char), myTarget - buf, f);
76 myTarget = buf;
  /external/icu4c/io/
ustdio.c 317 char *myTarget = charBuffer;
353 &myTarget,
366 u_UCharsToChars(mySource, myTarget, convertChars);
368 myTarget += convertChars;
370 numConverted = (int32_t)(myTarget - charBuffer);
381 myTarget = charBuffer;
405 UChar *myTarget;
457 myTarget = f->fUCBuffer + dataSize;
463 &myTarget,
472 u_charsToUChars(mySource, myTarget, bytesRead)
    [all...]
  /external/icu4c/test/perf/convperf/
convperf.h 58 UChar* myTarget = target;
59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
104 char* myTarget = target;
105 ucnv_fromUnicode(conv,&myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);

Completed in 123 milliseconds