OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toUBytes
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/icu/source/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
[])
/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 87 milliseconds