Home
last modified time | relevance | path

Searched defs:fmt (Results 126 – 150 of 57454) sorted by relevance

12345678910>>...2299

/dports/math/octave/octave-6.4.0/scripts/general/
H A Dnum2str.m96 fmt = arg; variable
98 fmt = sprintf ("%%%d.%dg", arg+7, arg); variable
115 fmt = sprintf ("%%%d.%dg", ndgt+7, ndgt); variable
122 fmt = sprintf ("%%%d.0f", ndgt); variable
126 fmt = "%3d"; variable
134 fmt = [deblank(repmat (fmt, 1, nc)), "\n"]; variable
141 fmt = [deblank(arg) "%-+" arg(2:end) "i"]; variable
143 fmt = sprintf ("%%%d.%dg%%-+%d.%dgi", arg+7, arg, arg+7, arg); variable
161 fmt = sprintf ("%%%d.%dg%%-+%d.%dgi", ndgt+7, ndgt, ndgt+7, ndgt); variable
167 fmt = sprintf ("%%%d.0f%%-+%d.0fi", ndgt, ndgt); variable
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/perf/util/
H A Ddebug.h18 #define pr_fmt(fmt) fmt argument
21 #define pr_err(fmt, ...) \ argument
23 #define pr_warning(fmt, ...) \ argument
25 #define pr_info(fmt, ...) \ argument
27 #define pr_debug(fmt, ...) \ argument
29 #define pr_debugN(n, fmt, ...) \ argument
31 #define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__) argument
32 #define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__) argument
33 #define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__) argument
36 #define pr_debug2_peo(fmt, ...) { \ argument
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/tools/perf/util/
H A Ddebug.h18 #define pr_fmt(fmt) fmt argument
21 #define pr_err(fmt, ...) \ argument
23 #define pr_warning(fmt, ...) \ argument
25 #define pr_info(fmt, ...) \ argument
27 #define pr_debug(fmt, ...) \ argument
29 #define pr_debugN(n, fmt, ...) \ argument
31 #define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__) argument
32 #define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__) argument
33 #define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__) argument
36 #define pr_debug2_peo(fmt, ...) { \ argument
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/tools/perf/util/
H A Ddebug.h18 #define pr_fmt(fmt) fmt argument
21 #define pr_err(fmt, ...) \ argument
23 #define pr_warning(fmt, ...) \ argument
25 #define pr_info(fmt, ...) \ argument
27 #define pr_debug(fmt, ...) \ argument
29 #define pr_debugN(n, fmt, ...) \ argument
31 #define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__) argument
32 #define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__) argument
33 #define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__) argument
36 #define pr_debug2_peo(fmt, ...) { \ argument
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/drm/
H A Ddrm_print.h415 #define drm_info(drm, fmt, ...) \ argument
418 #define drm_notice(drm, fmt, ...) \ argument
421 #define drm_warn(drm, fmt, ...) \ argument
424 #define drm_err(drm, fmt, ...) \ argument
447 #define drm_dbg(drm, fmt, ...) \ argument
483 #define DRM_INFO(fmt, ...) \ argument
485 #define DRM_NOTE(fmt, ...) \ argument
487 #define DRM_WARN(fmt, ...) \ argument
497 #define DRM_ERROR(fmt, ...) \ argument
503 #define DRM_DEBUG(fmt, ...) \ argument
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/include/drm/
H A Ddrm_print.h415 #define drm_info(drm, fmt, ...) \ argument
418 #define drm_notice(drm, fmt, ...) \ argument
421 #define drm_warn(drm, fmt, ...) \ argument
424 #define drm_err(drm, fmt, ...) \ argument
447 #define drm_dbg(drm, fmt, ...) \ argument
483 #define DRM_INFO(fmt, ...) \ argument
485 #define DRM_NOTE(fmt, ...) \ argument
487 #define DRM_WARN(fmt, ...) \ argument
497 #define DRM_ERROR(fmt, ...) \ argument
503 #define DRM_DEBUG(fmt, ...) \ argument
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/drm/
H A Ddrm_print.h415 #define drm_info(drm, fmt, ...) \ argument
418 #define drm_notice(drm, fmt, ...) \ argument
421 #define drm_warn(drm, fmt, ...) \ argument
424 #define drm_err(drm, fmt, ...) \ argument
447 #define drm_dbg(drm, fmt, ...) \ argument
483 #define DRM_INFO(fmt, ...) \ argument
485 #define DRM_NOTE(fmt, ...) \ argument
487 #define DRM_WARN(fmt, ...) \ argument
497 #define DRM_ERROR(fmt, ...) \ argument
503 #define DRM_DEBUG(fmt, ...) \ argument
[all …]
/dports/astro/opencpn/OpenCPN-5.2.4/libs/garmin/jeeps/
H A Dgps_wx_logging.h11 void static inline _wxLogError(const char* fmt...) { in _wxLogError()
19 void static inline _wxLogWarning(const char* fmt...) { in _wxLogWarning()
27 void static inline _wxLogMessage(const char* fmt...) { in _wxLogMessage()
35 void static inline _wxLogDebug(const char* fmt...) { in _wxLogDebug()
56 #define GPS_Error(fmt, ...) _wxLogError(fmt, ## __VA_ARGS__) argument
57 #define GPS_Warning(fmt, ...) _wxLogWarning(fmt, ## __VA_ARGS__) argument
59 #define GPS_Diag(fmt, ...) _wxLogDebug(fmt, ## __VA_ARGS__) argument
63 #define GPS_Error(fmt, ...) _wxLogError(fmt, __VA_ARGS__) argument
64 #define GPS_Warning(fmt, ...) _wxLogWarning(fmt, __VA_ARGS__) argument
65 #define GPS_User(fmt, ...) _wxLogMessage(fmt, __VA_ARGS__) argument
[all …]
/dports/devel/py-yappi/yappi-1.3.3/yappi/
H A Ddebug.h6 #define ydprintf(fmt, args...) fprintf(stderr, "[&] [yappi-dbg] " fmt "\n", ## args) argument
8 #define ydprintf(fmt, ...) fprintf(stderr, "[&] [yappi-dbg] " fmt "\n", __VA_ARGS__) argument
12 #define ydprintf(fmt, args...) argument
14 #define ydprintf(fmt, ...) argument
19 #define yerr(fmt, args...) fprintf(stderr, "[*] [yappi-err] " fmt "\n", ## args) argument
20 #define yinfo(fmt, args...) fprintf(stderr, "[+] [yappi-info] " fmt "\n", ## args) argument
21 #define yprint(fmt, args...) fprintf(stderr, fmt, ## args) argument
23 #define yerr(fmt, ...) fprintf(stderr, "[*] [yappi-err] " fmt "\n", __VA_ARGS__) argument
24 #define yinfo(fmt, ...) fprintf(stderr, "[+] [yappi-info] " fmt "\n", __VA_ARGS__) argument
25 #define yprint(fmt, ...) fprintf(stderr, fmt, __VA_ARGS__) argument
/dports/multimedia/libv4l/linux-5.13-rc2/net/mac80211/
H A Ddebug.h128 #define sdata_err(sdata, fmt, ...) \ argument
133 #define ht_dbg(sdata, fmt, ...) \ argument
141 #define ocb_dbg(sdata, fmt, ...) \ argument
145 #define ibss_dbg(sdata, fmt, ...) \ argument
149 #define ps_dbg(sdata, fmt, ...) \ argument
153 #define ps_dbg_hw(hw, fmt, ...) \ argument
161 #define mpl_dbg(sdata, fmt, ...) \ argument
177 #define mcsa_dbg(sdata, fmt, ...) \ argument
181 #define mps_dbg(sdata, fmt, ...) \ argument
185 #define tdls_dbg(sdata, fmt, ...) \ argument
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/mac80211/
H A Ddebug.h128 #define sdata_err(sdata, fmt, ...) \ argument
133 #define ht_dbg(sdata, fmt, ...) \ argument
141 #define ocb_dbg(sdata, fmt, ...) \ argument
145 #define ibss_dbg(sdata, fmt, ...) \ argument
149 #define ps_dbg(sdata, fmt, ...) \ argument
153 #define ps_dbg_hw(hw, fmt, ...) \ argument
161 #define mpl_dbg(sdata, fmt, ...) \ argument
177 #define mcsa_dbg(sdata, fmt, ...) \ argument
181 #define mps_dbg(sdata, fmt, ...) \ argument
185 #define tdls_dbg(sdata, fmt, ...) \ argument
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/mac80211/
H A Ddebug.h128 #define sdata_err(sdata, fmt, ...) \ argument
133 #define ht_dbg(sdata, fmt, ...) \ argument
141 #define ocb_dbg(sdata, fmt, ...) \ argument
145 #define ibss_dbg(sdata, fmt, ...) \ argument
149 #define ps_dbg(sdata, fmt, ...) \ argument
153 #define ps_dbg_hw(hw, fmt, ...) \ argument
161 #define mpl_dbg(sdata, fmt, ...) \ argument
177 #define mcsa_dbg(sdata, fmt, ...) \ argument
181 #define mps_dbg(sdata, fmt, ...) \ argument
185 #define tdls_dbg(sdata, fmt, ...) \ argument
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/ash/src/vk/
H A Dconst_debugs.rs31 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
46 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
60 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
75 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
90 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
105 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
197 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
203 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
209 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
215 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/ash/src/vk/
H A Dconst_debugs.rs31 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
46 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
60 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
75 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
90 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
105 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
197 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
203 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
209 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
215 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/wireless/marvell/libertas_tf/
H A Ddeb_defs.h49 #define LBTF_DEB_LL(grp, grpnam, fmt, args...) \ argument
53 #define LBTF_DEB_LL(grp, grpnam, fmt, args...) do {} while (0) argument
58 #define lbtf_deb_enter_args(grp, fmt, args...) \ argument
62 #define lbtf_deb_leave_args(grp, fmt, args...) \ argument
66 #define lbtf_deb_net(fmt, args...) LBTF_DEB_LL(LBTF_DEB_NET, " net", fmt, ##args) argument
73 #define lbtf_deb_11d(fmt, args...) LBTF_DEB_LL(LBTF_DEB_11D, " 11d", fmt, ##args) argument
77 #define lbtf_deb_cmd(fmt, args...) LBTF_DEB_LL(LBTF_DEB_CMD, " cmd", fmt, ##args) argument
78 #define lbtf_deb_rx(fmt, args...) LBTF_DEB_LL(LBTF_DEB_RX, " rx", fmt, ##args) argument
79 #define lbtf_deb_tx(fmt, args...) LBTF_DEB_LL(LBTF_DEB_TX, " tx", fmt, ##args) argument
80 #define lbtf_deb_fw(fmt, args...) LBTF_DEB_LL(LBTF_DEB_FW, " fw", fmt, ##args) argument
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/wireless/marvell/libertas_tf/
H A Ddeb_defs.h49 #define LBTF_DEB_LL(grp, grpnam, fmt, args...) \ argument
53 #define LBTF_DEB_LL(grp, grpnam, fmt, args...) do {} while (0) argument
58 #define lbtf_deb_enter_args(grp, fmt, args...) \ argument
62 #define lbtf_deb_leave_args(grp, fmt, args...) \ argument
66 #define lbtf_deb_net(fmt, args...) LBTF_DEB_LL(LBTF_DEB_NET, " net", fmt, ##args) argument
73 #define lbtf_deb_11d(fmt, args...) LBTF_DEB_LL(LBTF_DEB_11D, " 11d", fmt, ##args) argument
77 #define lbtf_deb_cmd(fmt, args...) LBTF_DEB_LL(LBTF_DEB_CMD, " cmd", fmt, ##args) argument
78 #define lbtf_deb_rx(fmt, args...) LBTF_DEB_LL(LBTF_DEB_RX, " rx", fmt, ##args) argument
79 #define lbtf_deb_tx(fmt, args...) LBTF_DEB_LL(LBTF_DEB_TX, " tx", fmt, ##args) argument
80 #define lbtf_deb_fw(fmt, args...) LBTF_DEB_LL(LBTF_DEB_FW, " fw", fmt, ##args) argument
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/wireless/marvell/libertas_tf/
H A Ddeb_defs.h49 #define LBTF_DEB_LL(grp, grpnam, fmt, args...) \ argument
53 #define LBTF_DEB_LL(grp, grpnam, fmt, args...) do {} while (0) argument
58 #define lbtf_deb_enter_args(grp, fmt, args...) \ argument
62 #define lbtf_deb_leave_args(grp, fmt, args...) \ argument
66 #define lbtf_deb_net(fmt, args...) LBTF_DEB_LL(LBTF_DEB_NET, " net", fmt, ##args) argument
73 #define lbtf_deb_11d(fmt, args...) LBTF_DEB_LL(LBTF_DEB_11D, " 11d", fmt, ##args) argument
77 #define lbtf_deb_cmd(fmt, args...) LBTF_DEB_LL(LBTF_DEB_CMD, " cmd", fmt, ##args) argument
78 #define lbtf_deb_rx(fmt, args...) LBTF_DEB_LL(LBTF_DEB_RX, " rx", fmt, ##args) argument
79 #define lbtf_deb_tx(fmt, args...) LBTF_DEB_LL(LBTF_DEB_TX, " tx", fmt, ##args) argument
80 #define lbtf_deb_fw(fmt, args...) LBTF_DEB_LL(LBTF_DEB_FW, " fw", fmt, ##args) argument
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/linux/
H A Dprintk.h91 const char *fmt; member
301 #define pr_fmt(fmt) fmt argument
312 #define pr_emerg(fmt, ...) \ argument
322 #define pr_alert(fmt, ...) \ argument
332 #define pr_crit(fmt, ...) \ argument
342 #define pr_err(fmt, ...) \ argument
352 #define pr_warn(fmt, ...) \ argument
372 #define pr_info(fmt, ...) \ argument
384 #define pr_cont(fmt, ...) \ argument
398 #define pr_devel(fmt, ...) \ argument
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/include/linux/
H A Dprintk.h91 const char *fmt; member
301 #define pr_fmt(fmt) fmt argument
312 #define pr_emerg(fmt, ...) \ argument
322 #define pr_alert(fmt, ...) \ argument
332 #define pr_crit(fmt, ...) \ argument
342 #define pr_err(fmt, ...) \ argument
352 #define pr_warn(fmt, ...) \ argument
372 #define pr_info(fmt, ...) \ argument
384 #define pr_cont(fmt, ...) \ argument
398 #define pr_devel(fmt, ...) \ argument
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/linux/
H A Dprintk.h91 const char *fmt; member
301 #define pr_fmt(fmt) fmt argument
312 #define pr_emerg(fmt, ...) \ argument
322 #define pr_alert(fmt, ...) \ argument
332 #define pr_crit(fmt, ...) \ argument
342 #define pr_err(fmt, ...) \ argument
352 #define pr_warn(fmt, ...) \ argument
372 #define pr_info(fmt, ...) \ argument
384 #define pr_cont(fmt, ...) \ argument
398 #define pr_devel(fmt, ...) \ argument
[all …]
/dports/devel/acsccid/acsccid-1.1.8/src/
H A Ddebug.h53 #define DEBUG_CRITICAL(fmt) if (LogLevel & DEBUG_LEVEL_CRITICAL) Log1(PCSC_LOG_CRITICAL, fmt) argument
55 #define DEBUG_CRITICAL2(fmt, data) if (LogLevel & DEBUG_LEVEL_CRITICAL) Log2(PCSC_LOG_CRITICAL, fmt… argument
64 #define DEBUG_INFO1(fmt) if (LogLevel & DEBUG_LEVEL_INFO) Log1(PCSC_LOG_INFO, fmt) argument
66 #define DEBUG_INFO2(fmt, data) if (LogLevel & DEBUG_LEVEL_INFO) Log2(PCSC_LOG_INFO, fmt, data) argument
68 #define DEBUG_INFO3(fmt, data1, data2) if (LogLevel & DEBUG_LEVEL_INFO) Log3(PCSC_LOG_INFO, fmt, da… argument
77 #define DEBUG_PERIODIC(fmt) if (LogLevel & DEBUG_LEVEL_PERIODIC) Log1(PCSC_LOG_DEBUG, fmt) argument
79 #define DEBUG_PERIODIC2(fmt, data) if (LogLevel & DEBUG_LEVEL_PERIODIC) Log2(PCSC_LOG_DEBUG, fmt, d… argument
81 #define DEBUG_PERIODIC3(fmt, data1, data2) if (LogLevel & DEBUG_LEVEL_PERIODIC) Log3(PCSC_LOG_DEBUG… argument
84 #define DEBUG_COMM(fmt) if (LogLevel & DEBUG_LEVEL_COMM) Log1(PCSC_LOG_DEBUG, fmt) argument
86 #define DEBUG_COMM2(fmt, data) if (LogLevel & DEBUG_LEVEL_COMM) Log2(PCSC_LOG_DEBUG, fmt, data) argument
[all …]
/dports/audio/spotify-qt/spotify-qt-3.7/lib/include/lib/
H A Dformat.hpp15 class fmt class
24 static std::string format(const Format &fmt) in format()
37 static std::string format(const Format &fmt, const Arg &arg, Args &&... args) in format()
68 static std::string collect(const Format &fmt, const std::string &arg) in collect()
85 static std::string collect(const Format &fmt, const Arg &arg) in collect()
97 static std::string collect(const Format &fmt, const char *arg) in collect()
109 static std::string collect(const Format &fmt, bool arg) in collect()
121 static std::string collect(const Format &fmt, const nlohmann::json &arg) in collect()
133 static auto collect(const Format &fmt, const ghc::filesystem::path &arg) -> std::string in collect()
/dports/www/firefox/firefox-99.0/third_party/rust/ash/src/vk/
H A Dconst_debugs.rs7 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
22 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
36 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
51 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
66 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
72 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
78 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
93 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
108 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
198 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { in fmt() method
[all …]
/dports/devel/awscli/awscli-1.20.61/awscli/customizations/ecs/
H A Dexceptions.py17 fmt = 'An unspecified error occurred' variable in ECSError
26 fmt = \ variable in MissingPropertyError
31 fmt = "Error: Unable to load file at {file_path}: {error}" variable in FileLoadError
35 fmt = "Error: {resource} '{name}' must support 'ECS' compute platform" variable in InvalidPlatformError
39 fmt = ("Error: deployment group '{dg_name}' does not target " variable in InvalidProperyError
44 fmt = "Error: Service '{service}' not found in cluster '{cluster}'" variable in InvalidServiceError
48 fmt = "Failed to {action}:\n{error}" variable in ServiceClientError
/dports/graphics/box/box-0.4.0/libs/g/
H A Dformatter.c39 BoxGFmt *fmt = stack->fmt; in _Add_Char() local
59 BoxGFmt *fmt = stack->fmt; in BoxGFmt_Get_Buffer() local
66 BoxGFmt *fmt = stack->fmt; in BoxGFmt_Clear_Buffer() local
71 BoxGFmt *fmt = stack->fmt; in _Draw() local
78 BoxGFmt *fmt = stack->fmt; in _Save() local
83 BoxGFmt *fmt = stack->fmt; in _Restore() local
87 static void _Subscript(BoxGFmt *fmt, BoxGFmtStack *stack) { in _Subscript()
96 BoxGFmt *fmt = stack->fmt; in _Text_Formatter() local
196 void BoxGFmt_Init(BoxGFmt *fmt) { in BoxGFmt_Init()
206 void *BoxGFmt_Get_Private(BoxGFmt *fmt) { in BoxGFmt_Get_Private()
[all …]

12345678910>>...2299