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

  /external/icu/icu4c/source/common/
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...]
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[])

Completed in 145 milliseconds