Lines Matching refs:format
40 #define LOGD(format, ...) fprintf(stdout, "[%.06f] " format "\n", GetCurTime(), ##__VA_ARGS__)
41 #define LOG(format, ...) fprintf(stdout, "[%.06f] " format "\n", GetCurTime(), ##__VA_ARGS__)
44 #define LOG(format, ...) fprintf(stdout, format "\n", ##__VA_ARGS__)
47 #define LOGE(format, ...) fprintf(stdout, "\n%s:%d: " format "\n", __FILE__, __LINE__, ##__VA_ARGS__)
49 #define PANIC(format, ...) do { \
50 LOGE(format, ##__VA_ARGS__); \