Searched defs:charErrorBuffer (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Ducnv_bld.h208 int8_t charErrorBufferLength; /* number of valid bytes in charErrorBuffer */
211 int8_t UCharErrorBufferLength; /* number of valid UChars in charErrorBuffer */
216 uint8_t charErrorBuffer[UCNV_ERROR_BUFFER_LENGTH]; /* codepage output from Error functions */ member in struct:UConverter
H A Ducnvbocu.c565 uint8_t *charErrorBuffer; local
575 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
579 *charErrorBuffer++=(uint8_t)(diff>>16);
581 *charErrorBuffer++=(uint8_t)(diff>>8);
583 *charErrorBuffer=(uint8_t)diff;
789 uint8_t *charErrorBuffer; local
799 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
803 *charErrorBuffer
[all...]
H A Ducnvmbcs.c3455 cnv->charErrorBuffer[0]=(char)value;
4529 uint8_t *charErrorBuffer; local
4539 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
4543 *charErrorBuffer++=(uint8_t)(value>>16);
4545 *charErrorBuffer++=(uint8_t)(value>>8);
4547 *charErrorBuffer=(uint8_t)value;
4618 cnv->charErrorBuffer[0]=(uint8_t)si_value[1];
4631 cnv->charErrorBuffer[0]=(uint8_t)si_value[0];
4633 cnv->charErrorBuffer[
[all...]
/external/icu4c/common/
H A Ducnv_bld.h209 int8_t charErrorBufferLength; /* number of valid bytes in charErrorBuffer */
212 int8_t UCharErrorBufferLength; /* number of valid UChars in charErrorBuffer */
217 uint8_t charErrorBuffer[UCNV_ERROR_BUFFER_LENGTH]; /* codepage output from Error functions */ member in struct:UConverter
H A Ducnvbocu.cpp570 uint8_t *charErrorBuffer; local
580 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
584 *charErrorBuffer++=(uint8_t)(diff>>16);
586 *charErrorBuffer++=(uint8_t)(diff>>8);
588 *charErrorBuffer=(uint8_t)diff;
794 uint8_t *charErrorBuffer; local
804 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
808 *charErrorBuffer
[all...]
H A Ducnvmbcs.c3457 cnv->charErrorBuffer[0]=(char)value;
4532 uint8_t *charErrorBuffer; local
4542 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
4546 *charErrorBuffer++=(uint8_t)(value>>16);
4548 *charErrorBuffer++=(uint8_t)(value>>8);
4550 *charErrorBuffer=(uint8_t)value;
4621 cnv->charErrorBuffer[0]=(uint8_t)siBytes[1];
4634 cnv->charErrorBuffer[0]=(uint8_t)siBytes[0];
4636 cnv->charErrorBuffer[
[all...]

Completed in 733 milliseconds