Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 3 of 3) sorted by relevance

/RevoEX-2.3/build/tools/makeChjp/
Dmain.c138 …unsigned char tmp[dst_size + 1]; // For saving temporarily during conversion; in the end, copy to… in ConvertHexCharToChar() local
150 tmp[dst_size] = '\0'; in ConvertHexCharToChar()
154 tmp[i] = 0x00; in ConvertHexCharToChar()
160 tmp[i] += 0; in ConvertHexCharToChar()
165 tmp[i] += (*p - '0') << 4 * j; in ConvertHexCharToChar()
167 tmp[i] += (*p - 'a' + 10) << 4 * j; in ConvertHexCharToChar()
169 tmp[i] += (*p - 'A' + 10) << 4 * j; in ConvertHexCharToChar()
175 strcpy(dst, tmp); in ConvertHexCharToChar()
192 int i, tmp; in OutputIntForBin() local
196 tmp = val >> i * 8; in OutputIntForBin()
[all …]
/RevoEX-2.3/build/demos/nwc24demo/src/MsgList/
DMsgList.c239 u64 tmp = num; in Print16Digits() local
243 buf[15-i] = (char)((tmp % 10) + 0x30); in Print16Digits()
244 tmp /= 10; in Print16Digits()
/RevoEX-2.3/build/demos/nwc24demo/src/ChannelJump/
DChannelJump.c233 s32 tmp, count; in main() local
351 tmp = KPADRead( 0, &Kpad_s[0][0], KPAD_MAX_READ_BUFS); in main()