Searched refs:format (Results 1 - 25 of 902) sorted by relevance

1234567891011>>

/hardware/intel/common/libmix/mix_video/src/
H A Dmixvideolog.h14 #define LOG_V(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_VERBOSE, format, ##__VA_ARGS__)
15 #define LOG_I(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_INFO, format, ##__VA_ARGS__)
16 #define LOG_W(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_WARNING, format, ##__VA_ARGS__)
17 #define LOG_E(format, ...) mix_log(MIX_VIDEO_COMP, MIX_LOG_LEVEL_ERROR, format, ##__VA_ARGS__)
19 #define LOG_V(format, ...)
20 #define LOG_I(format,
[all...]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
H A Dvbp_trace.h23 extern void vbp_trace_util(const char* cat, const char* fun, int line, const char* format, ...);
25 #define VBP_TRACE_UTIL(cat, format, ...) \
26 vbp_trace_util(cat, __FUNCTION__, __LINE__, format, ##__VA_ARGS__)
29 #define ETRACE(format, ...) VBP_TRACE_UTIL("ERROR: ", format, ##__VA_ARGS__)
30 #define WTRACE(format, ...) VBP_TRACE_UTIL("WARNING: ", format, ##__VA_ARGS__)
31 #define ITRACE(format, ...) VBP_TRACE_UTIL("INFO: ", format, ##__VA_ARGS__)
32 #define VTRACE(format,
[all...]
H A Dvbp_trace.c14 void vbp_trace_util(const char* cat, const char* fun, int line, const char* format, ...) argument
16 if (NULL == cat || NULL == fun || NULL == format)
21 va_start(args, format);
22 vprintf(format, args);
/hardware/qcom/display/msm8909/libdrmutils/
H A Ddrm_logger.h40 virtual void Error(const char *format, ...) = 0;
41 virtual void Warning(const char *format, ...) = 0;
42 virtual void Info(const char *format, ...) = 0;
43 virtual void Debug(const char *format, ...) = 0;
52 #define DRM_LOG(method, format, ...) \
54 drm_utils::DRMLogger::Get()->method(format, ##__VA_ARGS__); \
57 #define DRM_LOG_CONTEXT(method, format, ...) \
58 DRM_LOG(method, __CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__);
60 #define DRM_LOGE(format, ...) DRM_LOG_CONTEXT(Error, format, ##__VA_ARGS_
[all...]
/hardware/qcom/display/msm8909/sdm/include/utils/
H A Dformats.h37 bool IsUBWCFormat(LayerBufferFormat format);
38 bool Is10BitFormat(LayerBufferFormat format);
39 const char *GetFormatString(const LayerBufferFormat &format);
40 BufferLayout GetBufferLayout(LayerBufferFormat format);
H A Ddebug.h39 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
42 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__)
43 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__)
44 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__)
45 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS_
[all...]
/hardware/qcom/display/msm8909w_3100/libdrmutils/
H A Ddrm_logger.h40 virtual void Error(const char *format, ...) = 0;
41 virtual void Warning(const char *format, ...) = 0;
42 virtual void Info(const char *format, ...) = 0;
43 virtual void Debug(const char *format, ...) = 0;
52 #define DRM_LOG(method, format, ...) \
54 drm_utils::DRMLogger::Get()->method(format, ##__VA_ARGS__); \
57 #define DRM_LOG_CONTEXT(method, format, ...) \
58 DRM_LOG(method, __CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__);
60 #define DRM_LOGE(format, ...) DRM_LOG_CONTEXT(Error, format, ##__VA_ARGS_
[all...]
/hardware/qcom/display/msm8909w_3100/sdm/include/utils/
H A Dformats.h37 bool IsUBWCFormat(LayerBufferFormat format);
38 bool Is10BitFormat(LayerBufferFormat format);
39 const char *GetFormatString(const LayerBufferFormat &format);
40 BufferLayout GetBufferLayout(LayerBufferFormat format);
H A Ddebug.h38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
41 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__)
42 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__)
43 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__)
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS_
[all...]
/hardware/qcom/display/msm8998/libdrmutils/
H A Ddrm_logger.h40 virtual void Error(const char *format, ...) = 0;
41 virtual void Warning(const char *format, ...) = 0;
42 virtual void Info(const char *format, ...) = 0;
43 virtual void Debug(const char *format, ...) = 0;
52 #define DRM_LOG(method, format, ...) \
54 drm_utils::DRMLogger::Get()->method(format, ##__VA_ARGS__); \
57 #define DRM_LOG_CONTEXT(method, format, ...) \
58 DRM_LOG(method, __CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__);
60 #define DRM_LOGE(format, ...) DRM_LOG_CONTEXT(Error, format, ##__VA_ARGS_
[all...]
/hardware/qcom/display/msm8998/sdm/include/utils/
H A Dformats.h37 bool IsUBWCFormat(LayerBufferFormat format);
38 bool Is10BitFormat(LayerBufferFormat format);
39 const char *GetFormatString(const LayerBufferFormat &format);
40 BufferLayout GetBufferLayout(LayerBufferFormat format);
H A Ddebug.h38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
41 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__)
42 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__)
43 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__)
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS_
[all...]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/include/
H A Dviddec_debug.h11 // #define DEB(format, args...)
13 #define DEB_FNAME(format, args...) OS_PRINT("%s: %s[%d]:: " format, __FILE__, __FUNCTION__ , __LINE__ , ## args )
14 #define CDEB(a, format, args...) if(a != 0) {DEB(format, ##args);}
16 #define DEB(format, args...)
18 #define CDEB(a, format, args...)
19 #define DEB_FNAME(format, args...)
24 #define DEB(format, args...)
26 #define CDEB(a, format, arg
[all...]
/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dformats.h37 bool IsUBWCFormat(LayerBufferFormat format);
38 bool Is10BitFormat(LayerBufferFormat format);
39 const char *GetFormatString(const LayerBufferFormat &format);
H A Ddebug.h38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \
41 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__)
42 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__)
43 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__)
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS_
[all...]
/hardware/intel/common/libmix/videodecoder/
H A DVideoDecoderTrace.cpp23 void TraceVideoDecoder(const char* cat, const char* fun, int line, const char* format, ...) argument
25 if (NULL == cat || NULL == fun || NULL == format)
30 va_start(args, format);
31 vprintf(format, args);
H A DVideoDecoderTrace.h33 extern void TraceVideoDecoder(const char* cat, const char* fun, int line, const char* format, ...);
34 #define VIDEO_DECODER_TRACE(cat, format, ...) \
35 TraceVideoDecoder(cat, __FUNCTION__, __LINE__, format, ##__VA_ARGS__)
37 #define ETRACE(format, ...) VIDEO_DECODER_TRACE("ERROR: ", format, ##__VA_ARGS__)
38 #define WTRACE(format, ...) VIDEO_DECODER_TRACE("WARNING: ", format, ##__VA_ARGS__)
39 #define ITRACE(format, ...) VIDEO_DECODER_TRACE("INFO: ", format, ##__VA_ARGS__)
40 #define VTRACE(format,
[all...]
/hardware/libhardware/modules/camera/3_4/
H A Dstream_format.cpp38 StreamFormat::StreamFormat(int format, uint32_t width, uint32_t height) argument
41 v4l2_pixel_format_(StreamFormat::HalToV4L2PixelFormat(format)),
47 StreamFormat::StreamFormat(const v4l2_format& format) argument
48 : type_(format.type),
50 v4l2_pixel_format_(format.fmt.pix.pixelformat),
51 width_(format.fmt.pix.width),
52 height_(format.fmt.pix.height),
53 bytes_per_line_(format.fmt.pix.bytesperline),
54 min_buffer_size_(format.fmt.pix.sizeimage) {}
56 StreamFormat::StreamFormat(const arc::SupportedFormat& format) argument
[all...]
/hardware/intel/img/hwcomposer/merrifield/include/
H A DDisplayQuery.h25 static bool isVideoFormat(uint32_t format);
26 static int getOverlayLumaStrideAlignment(uint32_t format);
/hardware/intel/img/hwcomposer/moorefield_hdmi/include/
H A DDisplayQuery.h25 static bool isVideoFormat(uint32_t format);
26 static int getOverlayLumaStrideAlignment(uint32_t format);
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/
H A DTngDisplayQuery.cpp28 bool DisplayQuery::isVideoFormat(uint32_t format) argument
30 switch (format) {
33 // Expand format to support the case: Software decoder + HW rendering
42 int DisplayQuery::getOverlayLumaStrideAlignment(uint32_t format) argument
45 switch (format) {
/hardware/qcom/gps/msm8084/platform_lib_abstractions/
H A Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
52 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x)
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x)
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x)
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TA
[all...]
/hardware/qcom/gps/msm8909/utils/platform_lib_abstractions/
H A Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
52 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x)
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x)
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x)
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TA
[all...]
/hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/include/
H A Dplatform_lib_macros.h49 #define TS_PRINTF(format, x...) \
58 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
61 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x)
62 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x)
63 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x)
64 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TA
[all...]
/hardware/qcom/gps/msm8960/platform_lib_abstractions/
H A Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \
43 fprintf(stdout,"%02d:%02d:%02d.%06ld]" format "\n", hh, mm, ss, tv.tv_usec,##x); \
52 #define ALOGE(format, x...) TS_PRINTF("E/%s (%d): " format , LOG_TAG, getpid(), ##x)
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x)
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x)
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TA
[all...]

Completed in 605 milliseconds

1234567891011>>