Searched refs:format (Results 1 - 25 of 692) 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/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);
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/qcom/display/msm8996/sdm/libs/utils/
H A Dformats.cpp36 bool IsUBWCFormat(LayerBufferFormat format) { argument
37 switch (format) {
51 bool Is10BitFormat(LayerBufferFormat format) { argument
52 switch (format) {
/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/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...]
/hardware/qcom/gps/msm8994/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/msm8996/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/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/ti/omap3/omx/system/src/openmax_il/common/inc/
H A DOMX_TI_Debug.h44 *! that is, newest first. The date format is dd-Mon-yyyy.
90 Output format is:
285 * format, list - debug message
290 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \
294 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
297 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \
302 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
306 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
312 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \
317 format OMX_DBG_F
[all...]
/hardware/libhardware/include/hardware/
H A Daudio_alsaops.h33 * format the audio_format_t to convert
35 * Logs a fatal error if format is not a valid convertible audio_format_t.
37 static inline enum pcm_format pcm_format_from_audio_format(audio_format_t format) argument
39 switch (format) {
61 LOG_ALWAYS_FATAL("pcm_format_from_audio_format: invalid audio format %#x", format);
68 * format the pcm_format to convert
70 * Logs a fatal error if format is not a valid convertible pcm_format.
72 static inline audio_format_t audio_format_from_pcm_format(enum pcm_format format) argument
74 switch (format) {
[all...]
/hardware/bsp/intel/peripheral/libupm/examples/python/
H A Dm24lr64e.py39 print "Read byte: ", format(byte, '02x')
44 print "Wrote inverted byte: ", format(byte, '02x')
48 print "Read byte: ", format(byte, '02x')
/hardware/intel/common/libmix/mix_common/src/
H A Dmixlog.h16 const gchar *func, gint line, const gchar *format, ...);
38 #define mix_log(comp, level, format, ...) \
39 mix_log_func(comp, level, __FILE__, __FUNCTION__, __LINE__, format, ##__VA_ARGS__)
43 #define mix_log(comp, level, format, ...)
/hardware/intel/img/hwcomposer/moorefield_hdmi/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/ti/omap4-aah/kernel-headers-ti/linux/
H A Dbvsurfgeom.h24 enum ocdformat format; member in struct:bvsurfgeom
/hardware/intel/common/libva/va/
H A Dva_compat.c35 int format,
40 return vaCreateSurfaces(dpy, format, width, height, surfaces, num_surfaces,
31 vaCreateSurfaces_0_32_0( VADisplay dpy, int width, int height, int format, int num_surfaces, VASurfaceID *surfaces ) argument

Completed in 7862 milliseconds

1234567891011>>