Home | History | Annotate | Download | only in common

Lines Matching refs:tempBuf

2061     char tempBuf[2];
2233 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2241 tempBuf[0] = (char)(tmpSourceChar >> 8);
2242 tempBuf[1] = (char)(tmpSourceChar);
2244 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2654 char tempBuf[2];
2745 tempBuf[0] = (char)(mySourceChar + 0x80);
2746 tempBuf[1] = (char)(trailByte + 0x80);
2747 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3247 char tempBuf[3];
3367 tempBuf[0] = (char) (0x80+(tempState-CNS_11643_0));
3368 tempBuf[1] = (char) (mySourceChar);
3369 tempBuf[2] = (char) trailByte;
3375 tempBuf[0] = (char) (mySourceChar);
3376 tempBuf[1] = (char) trailByte;
3379 targetUniChar = ucnv_MBCSSimpleGetNextUChar(cnv, tempBuf, tempBufLen, FALSE);