/linux/tools/testing/selftests/sched_ext/ |
H A D | scx_test.h | 82 #define SCX_ERR(__fmt, ...) \ argument 85 fprintf(stderr, __fmt"\n", ##__VA_ARGS__); \ 88 #define SCX_FAIL(__fmt, ...) \ argument 90 SCX_ERR(__fmt, ##__VA_ARGS__); \ 94 #define SCX_FAIL_IF(__cond, __fmt, ...) \ argument 97 SCX_FAIL(__fmt, ##__VA_ARGS__); \
|
/linux/tools/sched_ext/include/scx/ |
H A D | common.h | 29 #define SCX_BUG(__fmt, ...) \ argument 36 fprintf(stderr, __fmt __VA_OPT__(,) __VA_ARGS__); \ 42 #define SCX_BUG_ON(__cond, __fmt, ...) \ argument 45 SCX_BUG((__fmt) __VA_OPT__(,) __VA_ARGS__); \
|
/linux/drivers/scsi/csiostor/ |
H A D | csio_hw.h | 611 #define csio_info(__hw, __fmt, ...) \ argument 612 dev_info(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__) 614 #define csio_fatal(__hw, __fmt, ...) \ argument 615 dev_crit(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__) 617 #define csio_err(__hw, __fmt, ...) \ argument 618 dev_err(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__) 620 #define csio_warn(__hw, __fmt, ...) \ argument 621 dev_warn(&(__hw)->pdev->dev, __fmt, ##__VA_ARGS__) 624 #define csio_dbg(__hw, __fmt, ...) \ argument 625 csio_info((__hw), __fmt, ##__VA_ARGS__); [all …]
|
/linux/drivers/media/i2c/ |
H A D | mt9v111.c | 896 struct v4l2_mbus_framefmt *__fmt; in mt9v111_set_format() local 939 __fmt = __mt9v111_get_pad_format(mt9v111, sd_state, format->pad, in mt9v111_set_format() 943 if (__fmt->code == new_fmt.code && in mt9v111_set_format() 944 __fmt->width == new_fmt.width && in mt9v111_set_format() 945 __fmt->height == new_fmt.height) in mt9v111_set_format() 949 __fmt->code = new_fmt.code; in mt9v111_set_format() 950 __fmt->width = new_fmt.width; in mt9v111_set_format() 951 __fmt->height = new_fmt.height; in mt9v111_set_format() 957 __func__, __fmt->code, __fmt->width, __fmt->height); in mt9v111_set_format() 960 format->format = *__fmt; in mt9v111_set_format()
|
/linux/drivers/gpu/drm/display/ |
H A D | drm_dp_tunnel.c | 59 #define __tun_prn(__tunnel, __level, __type, __fmt, ...) \ argument 61 "[DPTUN %s][%s] " __fmt, \ 66 #define tun_dbg(__tunnel, __fmt, ...) \ argument 67 __tun_prn(__tunnel, dbg, _kms, __fmt, ## __VA_ARGS__) 69 #define tun_dbg_stat(__tunnel, __err, __fmt, ...) do { \ argument 71 __tun_prn(__tunnel, dbg, _kms, __fmt " (Failed, err: %pe)\n", \ 74 __tun_prn(__tunnel, dbg, _kms, __fmt " (Ok)\n", \ 78 #define tun_dbg_atomic(__tunnel, __fmt, ...) \ argument 79 __tun_prn(__tunnel, dbg, _atomic, __fmt, ## __VA_ARGS__) 81 #define tun_grp_dbg(__group, __fmt, ...) \ argument [all …]
|
/linux/drivers/media/pci/ivtv/ |
H A D | ivtv-alsa-main.c | 22 #define IVTV_DEBUG_ALSA_INFO(__fmt, __arg...) \ argument 25 printk(KERN_INFO pr_fmt("%s: alsa:" __fmt), \
|
/linux/drivers/media/platform/samsung/exynos4-is/ |
H A D | fimc-isp-video.c | 386 const struct fimc_fmt *__fmt; in __isp_video_try_fmt() local 388 __fmt = fimc_isp_find_format(&pixm->pixelformat, NULL, 2); in __isp_video_try_fmt() 391 *fmt = __fmt; in __isp_video_try_fmt() 395 pixm->num_planes = __fmt->memplanes; in __isp_video_try_fmt() 396 pixm->pixelformat = __fmt->fourcc; in __isp_video_try_fmt()
|
/linux/security/apparmor/include/ |
H A D | lib.h | 32 #define dbg_printk(__fmt, __args...) pr_debug(__fmt, ##__args) argument
|
/linux/include/media/ |
H A D | v4l2-common.h | 48 #define dev_dbg_lvl(__dev, __level, __debug, __fmt, __arg...) \ argument 51 dev_printk(KERN_DEBUG, __dev, __fmt, ##__arg); \
|
/linux/tools/testing/selftests/tpm2/ |
H A D | tpm2.py | 296 def __fmt(self): member in Public 311 return struct.pack(self.__fmt(), 322 return struct.calcsize(self.__fmt())
|
/linux/include/linux/ |
H A D | fs.h | 3586 #define DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed) \ argument 3589 __simple_attr_check_format(__fmt, 0ull); \ 3590 return simple_attr_open(inode, file, __get, __set, __fmt); \ 3601 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument 3602 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false) 3604 #define DEFINE_SIMPLE_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \ argument 3605 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
|
/linux/arch/powerpc/platforms/cell/spufs/ |
H A D | file.c | 141 #define DEFINE_SPUFS_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument 144 __simple_attr_check_format(__fmt, 0ull); \ 145 return spufs_attr_open(inode, file, __get, __set, __fmt); \ 1207 #define DEFINE_SPUFS_ATTRIBUTE(__name, __get, __set, __fmt, __acquire) \ argument 1230 DEFINE_SPUFS_SIMPLE_ATTRIBUTE(__name, __##__get, __set, __fmt);
|
/linux/drivers/scsi/bfa/ |
H A D | bfa_fcs_lport.c | 5519 #define __fc_pid_match(__c0, __c1, __fmt) \ argument 5520 (((__fmt) == FC_RSCN_FORMAT_FABRIC) || \ 5521 (((__fmt) == FC_RSCN_FORMAT_DOMAIN) && \ 5523 (((__fmt) == FC_RSCN_FORMAT_AREA) && \
|