Lines Matching refs:tempBuf
2049 char tempBuf[2];
2221 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2229 tempBuf[0] = (char)(tmpSourceChar >> 8);
2230 tempBuf[1] = (char)(tmpSourceChar);
2232 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2642 char tempBuf[2];
2733 tempBuf[0] = (char)(mySourceChar + 0x80);
2734 tempBuf[1] = (char)(trailByte + 0x80);
2735 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3233 char tempBuf[3];
3353 tempBuf[0] = (char) (0x80+(tempState-CNS_11643_0));
3354 tempBuf[1] = (char) (mySourceChar);
3355 tempBuf[2] = (char) trailByte;
3360 tempBuf[0] = (char) (mySourceChar);
3361 tempBuf[1] = (char) trailByte;
3364 targetUniChar = ucnv_MBCSSimpleGetNextUChar(cnv, tempBuf, tempBufLen, FALSE);