HomeSort by relevance Sort by last modified time
    Searched refs:charErrorBuffer (Results 1 - 14 of 14) 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 513 cnv->charErrorBuffer[0]=MINUS;
563 cnv->charErrorBuffer[0]=MINUS;
593 cnv->charErrorBuffer[0]=toBase64[(c>>4)&0x3f];
616 cnv->charErrorBuffer[0]=toBase64[(c>>2)&0x3f];
624 cnv->charErrorBuffer[0]=toBase64[(c>>8)&0x3f];
625 cnv->charErrorBuffer[1]=toBase64[(c>>2)&0x3f];
648 cnv->charErrorBuffer[0]=toBase64[c&0x3f];
656 cnv->charErrorBuffer[0]=toBase64[(c>>6)&0x3f];
657 cnv->charErrorBuffer[1]=toBase64[c&0x3f];
686 cnv->charErrorBuffer[cnv->charErrorBufferLength++]=toBase64[bits]
    [all...]
ucnvbocu.c 565 uint8_t *charErrorBuffer;
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;
799 charErrorBuffer=(uint8_t *)cnv->charErrorBuffer;
803 *charErrorBuffer++=(uint8_t)(diff>>16)
    [all...]
ucnvhz.c 48 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 208 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 */
ucnv2022.c 438 converter->charErrorBuffer[0] = 0x1b;
439 converter->charErrorBuffer[1] = 0x24;
440 converter->charErrorBuffer[2] = 0x29;
441 converter->charErrorBuffer[3] = 0x43;
607 cnv->charErrorBuffer[0] = 0x1b;
608 cnv->charErrorBuffer[1] = 0x25;
609 cnv->charErrorBuffer[2] = 0x42;
679 converter->charErrorBuffer[0] = 0x1b;
680 converter->charErrorBuffer[1] = 0x28;
681 converter->charErrorBuffer[2] = 0x42
    [all...]
ucnv_cnv.c 76 t=(char *)cnv->charErrorBuffer;
ucnv_u32.c 296 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
401 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
781 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
895 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
    [all...]
ucnv_u8.c 383 cnv->charErrorBuffer[0] = (uint8_t) ((ch & 0x3f) | 0x80);
442 cnv->charErrorBuffer[cnv->charErrorBufferLength++] = *tempPtr;
506 cnv->charErrorBuffer[0] = (uint8_t) ((ch & 0x3f) | 0x80);
579 cnv->charErrorBuffer[cnv->charErrorBufferLength++] = *tempPtr;
    [all...]
ucnvisci.c     [all...]
ucnvmbcs.c     [all...]
ucnvscsu.c     [all...]
ucnv_lmb.c     [all...]
ucnv.c     [all...]

Completed in 901 milliseconds