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

  /external/icu/icu4c/source/common/
ucnv_u16.cpp 295 * and the preceding, unmatched lead surrogate was put into toUBytes[]
298 cnv->toUBytes[0]=(uint8_t)cnv->toUnicodeStatus;
303 uint8_t *p=cnv->toUBytes;
350 /* unmatched lead surrogate, handle here for consistent toUBytes[] */
359 * we need to put it into a special place because toUBytes[] will be
444 cnv->toUBytes[0]=(uint8_t)(c>>8);
445 cnv->toUBytes[1]=(uint8_t)c;
482 cnv->toUBytes[cnv->toULength++]=*source++;
513 pArgs->converter->toUBytes[0]=*s++;
541 uint8_t *bytes=pArgs->converter->toUBytes;
    [all...]
ucnv_u32.cpp 54 unsigned char *toUBytes = args->converter->toUBytes;
74 toUBytes[i++] = (char) *(mySource++);
134 unsigned char *toUBytes = args->converter->toUBytes;
155 toUBytes[i++] = (char) *(mySource++);
440 uprv_memcpy(args->converter->toUBytes, mySource, length);
458 uprv_memcpy(args->converter->toUBytes, mySource, 4);
516 unsigned char *toUBytes = args->converter->toUBytes;
    [all...]
ucnv_u8.cpp 73 unsigned char *toUBytes = cnv->toUBytes;
101 toUBytes[0] = (char)ch;
110 toUBytes[i] = (char) (ch2 = *mySource);
191 unsigned char *toUBytes = cnv->toUBytes;
218 toUBytes[0] = (char)ch;
227 toUBytes[i] = (char) (ch2 = *mySource);
583 cnv->toUBytes[0] = myByte;
595 cnv->toUBytes[0] = myByte
    [all...]
ucnvhz.cpp 201 args->converter->toUBytes[0] = UCNV_TILDE;
202 args->converter->toUBytes[1] = mySourceChar;
222 args->converter->toUBytes[0] = UCNV_TILDE;
232 args->converter->toUBytes[1] = mySourceChar;
313 args->converter->toUBytes[0] = (uint8_t)(mySourceChar >> 8);
314 args->converter->toUBytes[1] = (uint8_t)mySourceChar;
318 args->converter->toUBytes[0] = (uint8_t)mySourceChar;
ucnvscsu.cpp 379 cnv->toUBytes[0]=b;
384 /* store the first byte of a multibyte sequence in toUBytes[] */
385 cnv->toUBytes[0]=b;
390 cnv->toUBytes[1]=b;
444 cnv->toUBytes[1]=b;
456 cnv->toUBytes[1]=b;
467 cnv->toUBytes[1]=b;
505 cnv->toUBytes[0]=b;
516 cnv->toUBytes[0]=b;
522 cnv->toUBytes[0]=b
    [all...]
ucnv_bld.h 40 /* at most 8 bytes per character in toUBytes[] (UTF-8 uses up to 6) */
189 int8_t toULength; /* number of bytes in toUBytes */
190 uint8_t toUBytes[UCNV_MAX_CHAR_LEN-1];/* more "toU status"; keeps the bytes of the current character */
197 * - keeps a lead surrogate between buffers (similar to toUBytes[])
ucnv2022.cpp     [all...]
ucnvlat1.cpp 411 utf8->toUnicodeStatus=utf8->toUBytes[0]=b=*source++;
560 /* callback(illegal); copy the current bytes to toUBytes[] */
562 cnv->toUBytes[0]=c;
600 cnv->toUBytes[0]=b;
ucnvmbcs.cpp     [all...]
ucnv_ct.cpp 497 mySourceChar = args->converter->toUBytes[0];
503 tmpState = findStateFromEscSeq(mySource, mySourceLimit, args->converter->toUBytes, args->converter->toULength, err);
507 args->converter->toUBytes[args->converter->toULength++] = *mySource++;
ucnv_ext.cpp 291 (const char *)cnv->toUBytes, firstLength,
312 s=(const char *)cnv->toUBytes;
433 uprv_memcpy(cnv->toUBytes, cnv->preToU, cnv->preToUFirstLength);
    [all...]
ucnv_lmb.cpp     [all...]
ucnv_u7.cpp 249 bytes=cnv->toUBytes;
    [all...]
ucnvbocu.cpp     [all...]
ucnvisci.cpp     [all...]
ucnv.cpp     [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetCompoundText.java 242 private static byte findStateFromEscSeq(ByteBuffer source, byte[] toUBytes, int toUBytesLength) {
254 if (toUBytes[n] != escSeqCompoundText[i][n]) {

Completed in 592 milliseconds