Lines Matching refs:tmp
138 …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()
197 fwrite(&tmp, 1, 1 ,fp); in OutputIntForBin()
198 val = val - (tmp << i * 8); in OutputIntForBin()