Lines Matching defs:temp
133 static void Convert_UString_to_AString(const UString &s, AString &temp)
142 ConvertUnicodeToUTF8(s, temp);
145 UnicodeStringToMultiByte2(temp, s, (UINT)codePage);
177 char temp[32];
178 ConvertInt64ToString(code, temp);
180 PrintErr_LF(temp);
192 char temp[32];
193 ConvertUInt64ToString(v, temp);
194 Print(temp);
316 char temp[32];
317 ConvertUInt32ToHex((UInt32)res, temp);
319 PrintErr_LF(temp);
722 Byte temp[8];
724 temp[i]= (Byte)(fileSize >> (8 * i));
725 if (WriteStream(outStream, temp, 8) != S_OK)