Searched refs:FMT (Results 1 - 25 of 31) sorted by relevance

12

/linux-master/net/dns_resolver/
H A Dinternal.h43 #define kdebug(FMT, ...) \
46 printk(KERN_DEBUG "[%-6.6s] "FMT"\n", \
50 #define kenter(FMT, ...) kdebug("==> %s("FMT")", __func__, ##__VA_ARGS__)
51 #define kleave(FMT, ...) kdebug("<== %s()"FMT"", __func__, ##__VA_ARGS__)
/linux-master/crypto/asymmetric_keys/
H A Dverify_pefile.h28 #define kenter(FMT, ...) \
29 pr_devel("==> %s("FMT")\n", __func__, ##__VA_ARGS__)
30 #define kleave(FMT, ...) \
31 pr_devel("<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
H A Dpkcs7_parser.h12 #define kenter(FMT, ...) \
13 pr_devel("==> %s("FMT")\n", __func__, ##__VA_ARGS__)
14 #define kleave(FMT, ...) \
15 pr_devel("<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
/linux-master/drivers/gpu/drm/amd/display/dc/dcn30/
H A Ddcn30_opp.h34 SRI(FMT_422_CONTROL, FMT, id)
/linux-master/drivers/gpu/drm/armada/
H A Darmada_fb.c28 #define FMT(drm, fmt, mod) \ macro
33 FMT(RGB565, 565, CFG_SWAPRB);
34 FMT(BGR565, 565, 0);
35 FMT(ARGB1555, 1555, CFG_SWAPRB);
36 FMT(ABGR1555, 1555, 0);
37 FMT(RGB888, 888PACK, CFG_SWAPRB);
38 FMT(BGR888, 888PACK, 0);
39 FMT(XRGB8888, X888, CFG_SWAPRB);
40 FMT(XBGR8888, X888, 0);
41 FMT(ARGB888
52 #undef FMT macro
[all...]
/linux-master/drivers/gpu/drm/msm/disp/
H A Dmdp_format.c65 #define FMT(name, a, r, g, b, e0, e1, e2, e3, alpha, tight, c, cnt, fp, cs, yuv) { \ macro
89 FMT(ARGB8888, 8, 8, 8, 8, 1, 0, 2, 3, true, true, 4, 4,
91 FMT(ABGR8888, 8, 8, 8, 8, 2, 0, 1, 3, true, true, 4, 4,
93 FMT(RGBA8888, 8, 8, 8, 8, 3, 1, 0, 2, true, true, 4, 4,
95 FMT(BGRA8888, 8, 8, 8, 8, 3, 2, 0, 1, true, true, 4, 4,
97 FMT(XRGB8888, 8, 8, 8, 8, 1, 0, 2, 3, false, true, 4, 4,
99 FMT(XBGR8888, 8, 8, 8, 8, 2, 0, 1, 3, false, true, 4, 4,
101 FMT(RGBX8888, 8, 8, 8, 8, 3, 1, 0, 2, false, true, 4, 4,
103 FMT(BGRX8888, 8, 8, 8, 8, 3, 2, 0, 1, false, true, 4, 4,
105 FMT(RGB88
[all...]
/linux-master/fs/netfs/
H A Dinternal.h340 #define dbgprintk(FMT, ...) \
341 printk("[%-6.6s] "FMT"\n", current->comm, ##__VA_ARGS__)
343 #define kenter(FMT, ...) dbgprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
344 #define kleave(FMT, ...) dbgprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
345 #define kdebug(FMT, ...) dbgprintk(FMT, ##__VA_ARGS__)
348 #define _enter(FMT, ...) kenter(FMT, ##__VA_ARGS_
[all...]
/linux-master/fs/cachefiles/
H A Dinternal.h422 #define cachefiles_io_error(___cache, FMT, ...) \
424 pr_err("I/O Error: " FMT"\n", ##__VA_ARGS__); \
429 #define cachefiles_io_error_obj(object, FMT, ...) \
434 cachefiles_io_error(___cache, FMT " [o=%08x]", ##__VA_ARGS__, \
447 #define dbgprintk(FMT, ...) \
448 printk(KERN_DEBUG "[%-6.6s] "FMT"\n", current->comm, ##__VA_ARGS__)
450 #define kenter(FMT, ...) dbgprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
451 #define kleave(FMT, ...) dbgprintk("<== %s()"FMT"", __func_
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dce/
H A Ddce_opp.h44 SRI(FMT_DYNAMIC_EXP_CNTL, FMT, id), \
45 SRI(FMT_BIT_DEPTH_CONTROL, FMT, id), \
46 SRI(FMT_CONTROL, FMT, id), \
47 SRI(FMT_DITHER_RAND_R_SEED, FMT, id), \
48 SRI(FMT_DITHER_RAND_G_SEED, FMT, id), \
49 SRI(FMT_DITHER_RAND_B_SEED, FMT, id), \
50 SRI(FMT_CLAMP_CNTL, FMT, id), \
51 SRI(FMT_CLAMP_COMPONENT_R, FMT, id), \
52 SRI(FMT_CLAMP_COMPONENT_G, FMT, id), \
53 SRI(FMT_CLAMP_COMPONENT_B, FMT, i
[all...]
/linux-master/security/keys/
H A Dinternal.h26 #define kenter(FMT, ...) \
27 printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
28 #define kleave(FMT, ...) \
29 printk(KERN_DEBUG "<== %s()"FMT"\n", __func__, ##__VA_ARGS__)
30 #define kdebug(FMT, ...) \
31 printk(KERN_DEBUG " "FMT"\n", ##__VA_ARGS__)
33 #define kenter(FMT, ...) \
34 no_printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)
35 #define kleave(FMT, ...) \
36 no_printk(KERN_DEBUG "<== %s()"FMT"\
[all...]
/linux-master/tools/lib/perf/tests/
H A Dtest-evsel.c300 #define FMT(_fmt) PERF_FORMAT_ ## _fmt macro
301 #define FMT_TIME (FMT(TOTAL_TIME_ENABLED) | FMT(TOTAL_TIME_RUNNING))
306 FMT(ID),
307 FMT(LOST),
308 FMT_TIME | FMT(ID),
309 FMT_TIME | FMT(LOST),
310 FMT_TIME | FMT(ID) | FMT(LOST),
311 FMT(I
314 #undef FMT macro
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn10/
H A Ddcn10_opp.h37 SRI(FMT_BIT_DEPTH_CONTROL, FMT, id), \
38 SRI(FMT_CONTROL, FMT, id), \
39 SRI(FMT_DITHER_RAND_R_SEED, FMT, id), \
40 SRI(FMT_DITHER_RAND_G_SEED, FMT, id), \
41 SRI(FMT_DITHER_RAND_B_SEED, FMT, id), \
42 SRI(FMT_CLAMP_CNTL, FMT, id), \
43 SRI(FMT_DYNAMIC_EXP_CNTL, FMT, id), \
44 SRI(FMT_MAP420_MEMORY_CONTROL, FMT, id), \
/linux-master/net/rxrpc/
H A Dar-internal.h1321 #define dbgprintk(FMT,...) \
1322 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
1324 #define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
1325 #define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
1326 #define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
1330 #define _enter(FMT,...) kenter(FMT,##__VA_ARGS_
[all...]
/linux-master/drivers/gpu/drm/amd/display/dc/dcn201/
H A Ddcn201_opp.h39 SRI(FMT_422_CONTROL, FMT, id)
/linux-master/drivers/media/platform/amlogic/meson-ge2d/
H A Dge2d.c100 #define FMT(_fourcc, _alpha, _depth, _map) \ macro
111 /* FOURCC Alpha HW FMT HW MAP */
112 FMT(V4L2_PIX_FMT_XRGB32, false, 32, BGRA8888),
113 FMT(V4L2_PIX_FMT_RGB32, true, 32, BGRA8888),
114 FMT(V4L2_PIX_FMT_ARGB32, true, 32, BGRA8888),
115 FMT(V4L2_PIX_FMT_RGBX32, false, 32, ABGR8888),
116 FMT(V4L2_PIX_FMT_RGBA32, true, 32, ABGR8888),
117 FMT(V4L2_PIX_FMT_BGRX32, false, 32, RGBA8888),
118 FMT(V4L2_PIX_FMT_BGRA32, true, 32, RGBA8888),
119 FMT(V4L2_PIX_FMT_BGR3
[all...]
/linux-master/fs/afs/
H A Dinternal.h1715 #define dbgprintk(FMT,...) \
1716 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
1718 #define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
1719 #define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
1720 #define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
1724 #define _enter(FMT,...) kenter(FMT,##__VA_ARGS_
[all...]
/linux-master/arch/x86/tools/
H A Drelocs.c33 #define FMT PRIu64 macro
35 #define FMT PRIu32 macro
420 die("Seek to %" FMT " failed: %s\n", ehdr.e_shoff, strerror(errno));
447 die("Seek to %" FMT " failed: %s\n",
481 die("malloc of %" FMT " bytes for strtab failed\n",
485 die("Seek to %" FMT " failed: %s\n",
508 die("malloc of %" FMT " bytes for xsymtab failed\n",
512 die("Seek to %" FMT " failed: %s\n",
528 die("malloc of %" FMT " bytes for symtab failed\n",
532 die("Seek to %" FMT " faile
[all...]
/linux-master/arch/s390/tools/
H A Drelocs.c52 #define FMT PRIu64 macro
166 die("Seek to %" FMT " failed: %s\n", ehdr.e_shoff, strerror(errno));
192 die("Seek to %" FMT " failed: %s\n", ehdr.e_shoff, strerror(errno));
231 die("malloc of %" FMT " bytes for relocs failed\n", sec->shdr.sh_size);
234 die("Seek to %" FMT " failed: %s\n", sec->shdr.sh_offset, strerror(errno));
/linux-master/drivers/mmc/core/
H A Dsdio_cis.c337 #define FMT(type) "%s: queuing " type " CIS tuple 0x%02x [%*ph] (%u bytes)\n" macro
343 pr_debug_ratelimited(FMT("vendor"),
348 pr_warn_ratelimited(FMT("unknown"),
/linux-master/arch/m68k/fpsp040/
H A Dsasin.S98 movel %d0,-(%sp) | ...push SIGN(X) IN SGL-FMT
H A Dstanh.S150 fmoves %d0,%fp1 | ...-SIGN(X)*2 IN SGL FMT
155 fmoves %d0,%fp0 | ...SGN IN SGL FMT
H A Dstwotox.S235 fmovel N(%a6),%fp1 | ...N --> FLOATING FMT
338 fmovel N(%a6),%fp1 | ...N --> FLOATING FMT
H A Dssinh.S122 movel %d0,-(%sp) | ...EXTENDED FMT
/linux-master/kernel/
H A Dcred.c24 #define kdebug(FMT, ...) \
25 printk("[%-5.5s%5u] " FMT "\n", \
28 #define kdebug(FMT, ...) \
31 no_printk("[%-5.5s%5u] " FMT "\n", \
/linux-master/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_opp.h49 SRI(FMT_422_CONTROL, FMT, id), \

Completed in 217 milliseconds

12