Home
last modified time | relevance | path

Searched refs:format (Results 1 – 25 of 1105) sorted by relevance

12345678910>>...45

/hardware/qcom/sm8150/display/libdebug/
Ddebug_handler.h35 #define DLOG(method, format, ...) \ argument
36 display::DebugHandler::Get()->method(__CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__)
38 #define DLOG_IF(tag, method, format, ...) \ argument
40 DLOG(method, format, ##__VA_ARGS__); \
43 #define DLOGE_IF(tag, format, ...) DLOG_IF(tag, Error, format, ##__VA_ARGS__) argument
44 #define DLOGW_IF(tag, format, ...) DLOG_IF(tag, Warning, format, ##__VA_ARGS__) argument
45 #define DLOGI_IF(tag, format, ...) DLOG_IF(tag, Info, format, ##__VA_ARGS__) argument
46 #define DLOGD_IF(tag, format, ...) DLOG_IF(tag, Debug, format, ##__VA_ARGS__) argument
47 #define DLOGV_IF(tag, format, ...) DLOG_IF(tag, Verbose, format, ##__VA_ARGS__) argument
49 #define DLOGE(format, ...) DLOG(Error, format, ##__VA_ARGS__) argument
[all …]
/hardware/qcom/sdm845/display/libdebug/
Ddebug_handler.h35 #define DLOG(method, format, ...) \ argument
36 display::DebugHandler::Get()->method(__CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__)
38 #define DLOG_IF(tag, method, format, ...) \ argument
40 DLOG(method, format, ##__VA_ARGS__); \
43 #define DLOGE_IF(tag, format, ...) DLOG_IF(tag, Error, format, ##__VA_ARGS__) argument
44 #define DLOGW_IF(tag, format, ...) DLOG_IF(tag, Warning, format, ##__VA_ARGS__) argument
45 #define DLOGI_IF(tag, format, ...) DLOG_IF(tag, Info, format, ##__VA_ARGS__) argument
46 #define DLOGD_IF(tag, format, ...) DLOG_IF(tag, Debug, format, ##__VA_ARGS__) argument
47 #define DLOGV_IF(tag, format, ...) DLOG_IF(tag, Verbose, format, ##__VA_ARGS__) argument
49 #define DLOGE(format, ...) DLOG(Error, format, ##__VA_ARGS__) argument
[all …]
/hardware/libhardware/modules/camera/3_4/
Dstream_format.cpp38 StreamFormat::StreamFormat(int format, uint32_t width, uint32_t height) in StreamFormat() argument
41 v4l2_pixel_format_(StreamFormat::HalToV4L2PixelFormat(format)), in StreamFormat()
46 StreamFormat::StreamFormat(const v4l2_format& format) in StreamFormat() argument
47 : type_(format.type), in StreamFormat()
49 v4l2_pixel_format_(format.fmt.pix.pixelformat), in StreamFormat()
50 width_(format.fmt.pix.width), in StreamFormat()
51 height_(format.fmt.pix.height), in StreamFormat()
52 bytes_per_line_(format.fmt.pix.bytesperline) {} in StreamFormat()
54 StreamFormat::StreamFormat(const arc::SupportedFormat& format) in StreamFormat() argument
56 v4l2_pixel_format_(format.fourcc), in StreamFormat()
[all …]
/hardware/qcom/display/msm8998/libdrmutils/
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, ...) \ argument
54 drm_utils::DRMLogger::Get()->method(format, ##__VA_ARGS__); \
57 #define DRM_LOG_CONTEXT(method, format, ...) \ argument
58 DRM_LOG(method, __CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__);
60 #define DRM_LOGE(format, ...) DRM_LOG_CONTEXT(Error, format, ##__VA_ARGS__) argument
61 #define DRM_LOGW(format, ...) DRM_LOG_CONTEXT(Warning, format, ##__VA_ARGS__) argument
[all …]
/hardware/qcom/display/msm8909/libdrmutils/
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, ...) \ argument
54 drm_utils::DRMLogger::Get()->method(format, ##__VA_ARGS__); \
57 #define DRM_LOG_CONTEXT(method, format, ...) \ argument
58 DRM_LOG(method, __CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__);
60 #define DRM_LOGE(format, ...) DRM_LOG_CONTEXT(Error, format, ##__VA_ARGS__) argument
61 #define DRM_LOGW(format, ...) DRM_LOG_CONTEXT(Warning, format, ##__VA_ARGS__) argument
[all …]
/hardware/qcom/display/msm8909w_3100/libdrmutils/
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, ...) \ argument
54 drm_utils::DRMLogger::Get()->method(format, ##__VA_ARGS__); \
57 #define DRM_LOG_CONTEXT(method, format, ...) \ argument
58 DRM_LOG(method, __CLASS__ "::%s: " format, __FUNCTION__, ##__VA_ARGS__);
60 #define DRM_LOGE(format, ...) DRM_LOG_CONTEXT(Error, format, ##__VA_ARGS__) argument
61 #define DRM_LOGW(format, ...) DRM_LOG_CONTEXT(Warning, format, ##__VA_ARGS__) argument
[all …]
/hardware/qcom/display/msm8996/sdm/include/utils/
Ddebug.h38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \ argument
41 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__) argument
42 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__) argument
43 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__) argument
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__) argument
45 #define DLOGV_IF(tag, format, ...) DLOG(tag, Verbose, format, ##__VA_ARGS__) argument
47 #define DLOGE(format, ...) DLOGE_IF(kTagNone, format, ##__VA_ARGS__) argument
48 #define DLOGD(format, ...) DLOGD_IF(kTagNone, format, ##__VA_ARGS__) argument
49 #define DLOGW(format, ...) DLOGW_IF(kTagNone, format, ##__VA_ARGS__) argument
50 #define DLOGI(format, ...) DLOGI_IF(kTagNone, format, ##__VA_ARGS__) argument
[all …]
/hardware/qcom/display/msm8909w_3100/sdm/include/utils/
Ddebug.h38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \ argument
41 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__) argument
42 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__) argument
43 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__) argument
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__) argument
45 #define DLOGV_IF(tag, format, ...) DLOG(tag, Verbose, format, ##__VA_ARGS__) argument
47 #define DLOGE(format, ...) DLOGE_IF(kTagNone, format, ##__VA_ARGS__) argument
48 #define DLOGD(format, ...) DLOGD_IF(kTagNone, format, ##__VA_ARGS__) argument
49 #define DLOGW(format, ...) DLOGW_IF(kTagNone, format, ##__VA_ARGS__) argument
50 #define DLOGI(format, ...) DLOGI_IF(kTagNone, format, ##__VA_ARGS__) argument
[all …]
/hardware/qcom/display/msm8998/sdm/include/utils/
Ddebug.h38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \ argument
41 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__) argument
42 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__) argument
43 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__) argument
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__) argument
45 #define DLOGV_IF(tag, format, ...) DLOG(tag, Verbose, format, ##__VA_ARGS__) argument
47 #define DLOGE(format, ...) DLOGE_IF(kTagNone, format, ##__VA_ARGS__) argument
48 #define DLOGD(format, ...) DLOGD_IF(kTagNone, format, ##__VA_ARGS__) argument
49 #define DLOGW(format, ...) DLOGW_IF(kTagNone, format, ##__VA_ARGS__) argument
50 #define DLOGI(format, ...) DLOGI_IF(kTagNone, format, ##__VA_ARGS__) argument
[all …]
/hardware/qcom/display/msm8909/sdm/include/utils/
Ddebug.h39 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \ argument
42 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__) argument
43 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__) argument
44 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__) argument
45 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__) argument
46 #define DLOGV_IF(tag, format, ...) DLOG(tag, Verbose, format, ##__VA_ARGS__) argument
48 #define DLOGE(format, ...) DLOGE_IF(kTagNone, format, ##__VA_ARGS__) argument
49 #define DLOGD(format, ...) DLOGD_IF(kTagNone, format, ##__VA_ARGS__) argument
50 #define DLOGW(format, ...) DLOGW_IF(kTagNone, format, ##__VA_ARGS__) argument
51 #define DLOGI(format, ...) DLOGI_IF(kTagNone, format, ##__VA_ARGS__) argument
[all …]
/hardware/ti/am57x/libhwcomposer/
Dformat.h28 static inline std::string HAL_FMT(uint32_t format) in HAL_FMT() argument
30 switch (format) { in HAL_FMT()
43 static inline std::string DRM_FMT(uint32_t format) in DRM_FMT() argument
45 switch (format) { in DRM_FMT()
54 bool is_valid_format(uint32_t format);
55 bool is_rgb_format(uint32_t format);
56 bool is_bgr_format(uint32_t format);
57 bool is_nv12_format(uint32_t format);
58 bool is_opaque_format(uint32_t format);
59 uint32_t get_format_bpp(uint32_t format);
[all …]
Dformat.cpp26 bool is_valid_format(uint32_t format) in is_valid_format() argument
28 switch (format) { in is_valid_format()
53 bool is_rgb_format(uint32_t format) in is_rgb_format() argument
55 switch (format) { in is_rgb_format()
65 bool is_bgr_format(uint32_t format) in is_bgr_format() argument
67 switch (format) { in is_bgr_format()
76 bool is_nv12_format(uint32_t format) in is_nv12_format() argument
78 switch (format) { in is_nv12_format()
88 bool is_opaque_format(uint32_t format) in is_opaque_format() argument
90 switch (format) { in is_opaque_format()
[all …]
/hardware/qcom/sdm845/display/libdrmutils/
Ddrm_logger.h40 #define DRM_LOGE(format, ...) DLOGE(format, ##__VA_ARGS__) argument
41 #define DRM_LOGW(format, ...) DLOGW_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
42 #define DRM_LOGI(format, ...) DLOGI_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
43 #define DRM_LOGD(format, ...) DLOGD_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
44 #define DRM_LOGV(format, ...) DLOGV_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
/hardware/qcom/sm8150/display/libdrmutils/
Ddrm_logger.h40 #define DRM_LOGE(format, ...) DLOGE(format, ##__VA_ARGS__) argument
41 #define DRM_LOGW(format, ...) DLOGW_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
42 #define DRM_LOGI(format, ...) DLOGI_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
43 #define DRM_LOGD(format, ...) DLOGD_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
44 #define DRM_LOGV(format, ...) DLOGV_IF(DRM_LOG_TAG, format, ##__VA_ARGS__) argument
/hardware/google/av/media/eco/include/eco/
DECODebug.h46 #define ECOLOGV(format, args...) ALOGD_IF((gECOLogLevel & ECO_MSGLEVEL_VERBOSE), format, ##args) argument
47 #define ECOLOGD(format, args...) ALOGD_IF((gECOLogLevel & ECO_MSGLEVEL_DEBUG), format, ##args) argument
48 #define ECOLOGI(format, args...) ALOGI(format, ##args) argument
49 #define ECOLOGW(format, args...) ALOGW(format, ##args) argument
50 #define ECOLOGE(format, args...) ALOGE(format, ##args) argument
57 errorCode, String8::format("%s:%d: %s", __FUNCTION__, __LINE__, errorString))
62 String8::format("%s:%d: " errorString, __FUNCTION__, __LINE__, __VA_ARGS__))
/hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/include/
Dplatform_lib_macros.h49 #define TS_PRINTF(format, x...) \ argument
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) argument
62 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
63 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
64 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
65 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/include/
Dplatform_lib_macros.h49 #define TS_PRINTF(format, x...) \ argument
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) argument
62 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
63 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
64 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
65 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/sdm845/gps/msm8998/utils/platform_lib_abstractions/loc_pla/include/
Dplatform_lib_macros.h49 #define TS_PRINTF(format, x...) \ argument
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) argument
62 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
63 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
64 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
65 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/sdm845/gps/msm8960/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
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) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/sdm845/gps/msm8994/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
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) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/sdm845/gps/msm8084/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
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) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/gps/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
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) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/sdm845/gps/msm8909/utils/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
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) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/sdm845/gps/msm8996/utils/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
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) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
/hardware/qcom/gps/msm8960/platform_lib_abstractions/
Dplatform_lib_macros.h34 #define TS_PRINTF(format, x...) \ argument
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) argument
53 #define ALOGW(format, x...) TS_PRINTF("W/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
54 #define ALOGI(format, x...) TS_PRINTF("I/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
55 #define ALOGD(format, x...) TS_PRINTF("D/%s (%d): " format , LOG_TAG, getpid(), ##x) argument
56 #define ALOGV(format, x...) TS_PRINTF("V/%s (%d): " format , LOG_TAG, getpid(), ##x) argument

12345678910>>...45