Lines Matching refs:tempBuf
2063 char tempBuf[2];
2235 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2243 tempBuf[0] = (char)(tmpSourceChar >> 8);
2244 tempBuf[1] = (char)(tmpSourceChar);
2246 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2656 char tempBuf[2];
2747 tempBuf[0] = (char)(mySourceChar + 0x80);
2748 tempBuf[1] = (char)(trailByte + 0x80);
2749 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3249 char tempBuf[3];
3369 tempBuf[0] = (char) (0x80+(tempState-CNS_11643_0));
3370 tempBuf[1] = (char) (mySourceChar);
3371 tempBuf[2] = (char) trailByte;
3377 tempBuf[0] = (char) (mySourceChar);
3378 tempBuf[1] = (char) trailByte;
3381 targetUniChar = ucnv_MBCSSimpleGetNextUChar(cnv, tempBuf, tempBufLen, FALSE);