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

  /external/icu4c/common/
ucnv_u32.c 52 unsigned char *toUBytes = args->converter->toUBytes;
72 toUBytes[i++] = (char) *(mySource++);
132 unsigned char *toUBytes = args->converter->toUBytes;
153 toUBytes[i++] = (char) *(mySource++);
438 uprv_memcpy(args->converter->toUBytes, mySource, length);
456 uprv_memcpy(args->converter->toUBytes, mySource, 4);
514 unsigned char *toUBytes = args->converter->toUBytes;
    [all...]
ucnv_u8.c 98 unsigned char *toUBytes = cnv->toUBytes;
126 toUBytes[0] = (char)ch;
135 toUBytes[i] = (char) (ch2 = *mySource);
228 unsigned char *toUBytes = cnv->toUBytes;
255 toUBytes[0] = (char)ch;
264 toUBytes[i] = (char) (ch2 = *mySource);
631 cnv->toUBytes[0] = myByte;
642 cnv->toUBytes[0] = myByte
    [all...]
ucnv_bld.h 38 /* at most 8 bytes per character in toUBytes[] (UTF-8 uses up to 6) */
182 int8_t toULength; /* number of bytes in toUBytes */
183 uint8_t toUBytes[UCNV_MAX_CHAR_LEN-1];/* more "toU status"; keeps the bytes of the current character */
190 * - keeps a lead surrogate between buffers (similar to toUBytes[])

Completed in 38 milliseconds