Searched refs:tmp (Results 1 – 3 of 3) sorted by relevance
138 …unsigned char tmp[dst_size + 1]; // For saving temporarily during conversion; in the end, copy to… in ConvertHexCharToChar() local150 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() local196 tmp = val >> i * 8; in OutputIntForBin()[all …]
239 u64 tmp = num; in Print16Digits() local243 buf[15-i] = (char)((tmp % 10) + 0x30); in Print16Digits()244 tmp /= 10; in Print16Digits()
233 s32 tmp, count; in main() local351 tmp = KPADRead( 0, &Kpad_s[0][0], KPAD_MAX_READ_BUFS); in main()