Searched refs:charErrorBuffer (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/third_party/icu/source/common/
H A Ducnv_cb.c107 /* Overflowed the target. Now, we'll write into the charErrorBuffer.
118 newTarget = (char *)(args->converter->charErrorBuffer + errBuffLen);
120 newTargetLimit = (char *)(args->converter->charErrorBuffer +
121 sizeof(args->converter->charErrorBuffer));
149 newTarget - (char*)args->converter->charErrorBuffer);
H A Ducnv_u7.c527 cnv->charErrorBuffer[0]=MINUS;
577 cnv->charErrorBuffer[0]=MINUS;
607 cnv->charErrorBuffer[0]=toBase64[(c>>4)&0x3f];
630 cnv->charErrorBuffer[0]=toBase64[(c>>2)&0x3f];
638 cnv->charErrorBuffer[0]=toBase64[(c>>8)&0x3f];
639 cnv->charErrorBuffer[1]=toBase64[(c>>2)&0x3f];
662 cnv->charErrorBuffer[0]=toBase64[c&0x3f];
670 cnv->charErrorBuffer[0]=toBase64[(c>>6)&0x3f];
671 cnv->charErrorBuffer[1]=toBase64[c&0x3f];
701 cnv->charErrorBuffer[cn
[all...]
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 Ducnvhz.c49 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \
422 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) targetUniChar;
426 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] =(char) (targetUniChar >> 8);
427 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) targetUniChar;
439 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) targetUniChar;
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 Ducnv2022.cpp461 converter->charErrorBuffer[0] = 0x1b;
462 converter->charErrorBuffer[1] = 0x24;
463 converter->charErrorBuffer[2] = 0x29;
464 converter->charErrorBuffer[3] = 0x43;
614 cnv->charErrorBuffer[0] = 0x1b;
615 cnv->charErrorBuffer[1] = 0x25;
616 cnv->charErrorBuffer[2] = 0x42;
686 converter->charErrorBuffer[0] = 0x1b;
687 converter->charErrorBuffer[1] = 0x28;
688 converter->charErrorBuffer[
[all...]
H A Ducnv_cnv.c76 t=(char *)cnv->charErrorBuffer;
H A Ducnv_u32.c297 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
402 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
782 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
896 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
H A Ducnv_u8.c395 cnv->charErrorBuffer[0] = (uint8_t) ((ch & 0x3f) | 0x80);
454 cnv->charErrorBuffer[cnv->charErrorBufferLength++] = *tempPtr;
518 cnv->charErrorBuffer[0] = (uint8_t) ((ch & 0x3f) | 0x80);
591 cnv->charErrorBuffer[cnv->charErrorBufferLength++] = *tempPtr;
H A Ducnvisci.c846 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
848 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
862 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] =\
870 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
874 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
877 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
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...]
H A Ducnv_ct.c445 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = tmpTargetBuffer[i];
H A Ducnvscsu.c1446 p=(uint8_t *)cnv->charErrorBuffer;
1883 p=(uint8_t *)cnv->charErrorBuffer;
/external/icu/icu4c/source/common/
H A Ducnv_cb.c107 /* Overflowed the target. Now, we'll write into the charErrorBuffer.
118 newTarget = (char *)(args->converter->charErrorBuffer + errBuffLen);
120 newTargetLimit = (char *)(args->converter->charErrorBuffer +
121 sizeof(args->converter->charErrorBuffer));
149 newTarget - (char*)args->converter->charErrorBuffer);
H A Ducnv_u7.c527 cnv->charErrorBuffer[0]=MINUS;
577 cnv->charErrorBuffer[0]=MINUS;
607 cnv->charErrorBuffer[0]=toBase64[(c>>4)&0x3f];
630 cnv->charErrorBuffer[0]=toBase64[(c>>2)&0x3f];
638 cnv->charErrorBuffer[0]=toBase64[(c>>8)&0x3f];
639 cnv->charErrorBuffer[1]=toBase64[(c>>2)&0x3f];
662 cnv->charErrorBuffer[0]=toBase64[c&0x3f];
670 cnv->charErrorBuffer[0]=toBase64[(c>>6)&0x3f];
671 cnv->charErrorBuffer[1]=toBase64[c&0x3f];
701 cnv->charErrorBuffer[cn
[all...]
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 Ducnvhz.c49 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \
422 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) targetUniChar;
426 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] =(char) (targetUniChar >> 8);
427 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) targetUniChar;
439 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = (char) targetUniChar;
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 Ducnv2022.cpp444 converter->charErrorBuffer[0] = 0x1b;
445 converter->charErrorBuffer[1] = 0x24;
446 converter->charErrorBuffer[2] = 0x29;
447 converter->charErrorBuffer[3] = 0x43;
619 cnv->charErrorBuffer[0] = 0x1b;
620 cnv->charErrorBuffer[1] = 0x25;
621 cnv->charErrorBuffer[2] = 0x42;
691 converter->charErrorBuffer[0] = 0x1b;
692 converter->charErrorBuffer[1] = 0x28;
693 converter->charErrorBuffer[
[all...]
H A Ducnv_cnv.c76 t=(char *)cnv->charErrorBuffer;
H A Ducnv_u32.c297 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
402 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
782 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
896 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
H A Ducnv_u8.c386 cnv->charErrorBuffer[0] = (uint8_t) ((ch & 0x3f) | 0x80);
445 cnv->charErrorBuffer[cnv->charErrorBufferLength++] = *tempPtr;
509 cnv->charErrorBuffer[0] = (uint8_t) ((ch & 0x3f) | 0x80);
582 cnv->charErrorBuffer[cnv->charErrorBufferLength++] = *tempPtr;
H A Ducnvisci.c846 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
848 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
862 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] =\
870 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
874 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
877 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = \
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...]
H A Ducnv_ct.c445 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = tmpTargetBuffer[i];

Completed in 212 milliseconds

12