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 51 unsigned char *toUBytes = args->converter->toUBytes;
71 toUBytes[i++] = (char) *(mySource++);
131 unsigned char *toUBytes = args->converter->toUBytes;
152 toUBytes[i++] = (char) *(mySource++);
437 uprv_memcpy(args->converter->toUBytes, mySource, length);
455 uprv_memcpy(args->converter->toUBytes, mySource, 4);
513 unsigned char *toUBytes = args->converter->toUBytes;
    [all...]
ucnv_u8.c 95 unsigned char *toUBytes = cnv->toUBytes;
123 toUBytes[0] = (char)ch;
132 toUBytes[i] = (char) (ch2 = *mySource);
225 unsigned char *toUBytes = cnv->toUBytes;
252 toUBytes[0] = (char)ch;
261 toUBytes[i] = (char) (ch2 = *mySource);
628 cnv->toUBytes[0] = myByte;
639 cnv->toUBytes[0] = myByte
    [all...]
ucnv_bld.h 37 /* at most 8 bytes per character in toUBytes[] (UTF-8 uses up to 6) */
181 int8_t toULength; /* number of bytes in toUBytes */
182 uint8_t toUBytes[UCNV_MAX_CHAR_LEN-1];/* more "toU status"; keeps the bytes of the current character */
189 * - keeps a lead surrogate between buffers (similar to toUBytes[])

Completed in 197 milliseconds