Home | History | Annotate | Download | only in common

Lines Matching defs:tempBuf

2027     char tempBuf[2];
2199 _2022ToSJIS((uint8_t)mySourceChar, trailByte, tempBuf);
2207 tempBuf[0] = (char)(tmpSourceChar >> 8);
2208 tempBuf[1] = (char)(tmpSourceChar);
2210 targetUniChar = ucnv_MBCSSimpleGetNextUChar(myData->myConverterArray[cs], tempBuf, 2, FALSE);
2620 char tempBuf[2];
2711 tempBuf[0] = (char)(mySourceChar + 0x80);
2712 tempBuf[1] = (char)(trailByte + 0x80);
2713 targetUniChar = ucnv_MBCSSimpleGetNextUChar(sharedData, tempBuf, 2, useFallback);
3211 char tempBuf[3];
3331 tempBuf[0] = (char) (0x80+(tempState-CNS_11643_0));
3332 tempBuf[1] = (char) (mySourceChar);
3333 tempBuf[2] = (char) trailByte;
3338 tempBuf[0] = (char) (mySourceChar);
3339 tempBuf[1] = (char) trailByte;
3342 targetUniChar = ucnv_MBCSSimpleGetNextUChar(cnv, tempBuf, tempBufLen, FALSE);