HomeSort by relevance Sort by last modified time
    Searched refs:charErrorBuffer (Results 1 - 15 of 15) sorted by null

  /external/icu4c/common/
ucnv_cb.c 107 /* 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);
ucnv_u7.c 527 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[cnv->charErrorBufferLength++]=toBase64[bits]
    [all...]
ucnvbocu.cpp 570 uint8_t *charErrorBuffer;
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;
804 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
808 *charErrorBuffer++=(uint8_t)(diff>>16)
    [all...]
ucnvhz.c 49 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;
ucnv_bld.h 209 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 */
ucnv2022.cpp 444 converter->charErrorBuffer[0] = 0x1b;
445 converter->charErrorBuffer[1] = 0x24;
446 converter->charErrorBuffer[2] = 0x29;
447 converter->charErrorBuffer[3] = 0x43;
613 cnv->charErrorBuffer[0] = 0x1b;
614 cnv->charErrorBuffer[1] = 0x25;
615 cnv->charErrorBuffer[2] = 0x42;
685 converter->charErrorBuffer[0] = 0x1b;
686 converter->charErrorBuffer[1] = 0x28;
687 converter->charErrorBuffer[2] = 0x42
    [all...]
ucnv_cnv.c 76 t=(char *)cnv->charErrorBuffer;
ucnv_u32.c 297 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];
    [all...]
ucnv_u8.c 386 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;
    [all...]
ucnvisci.c     [all...]
ucnvmbcs.c     [all...]
ucnv_ct.c 445 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = tmpTargetBuffer[i];
ucnvscsu.c     [all...]
ucnv_lmb.c     [all...]
ucnv.c     [all...]

Completed in 2332 milliseconds