Lines Matching full:or

18 		signed char		%d or %hhx
19 unsigned char %u or %x
20 char %u or %x
21 short int %d or %hx
22 unsigned short int %u or %x
23 int %d or %x
24 unsigned int %u or %x
25 long %ld or %lx
26 unsigned long %lu or %lx
27 long long %lld or %llx
28 unsigned long long %llu or %llx
29 size_t %zu or %zx
30 ssize_t %zd or %zx
31 s8 %d or %hhx
32 u8 %u or %x
33 s16 %d or %hx
34 u16 %u or %x
35 s32 %d or %x
36 u32 %u or %x
37 s64 %lld or %llx
38 u64 %llu or %llx
41 If <type> is architecture-dependent for its size (e.g., cycles_t, tcflag_t) or
53 unsupported specifier or length qualifier results in a WARN and early
76 %p abcdef12 or 00000000abcdef12
84 When possible, use specialised modifiers such as %pS or %pB (described below)
93 e.g. procfs or sysfs (using e.g. seq_printf(), not printk()) read by a
94 userspace process, use the %pK modifier described below instead of %p or %px.
121 format. They result in the symbol name with (S) or without (s)
150 either kernel memory (k) or user memory (u). The subsequent ``s`` specifier
160 %pK 01234567 or 0123456789abcdef
167 userspace from e.g. procfs or sysfs, not for dmesg. Please refer to the
176 %px 01234567 or 0123456789abcdef
179 consider whether or not you are leaking sensitive information about the
181 equivalent to %lx (or %lu). %px is preferred because it is more uniquely
211 %pr [mem 0x60000000-0x6fffffff flags 0x2200] or
212 [mem 0x60000000 flags 0x2200] or
215 %pR [mem 0x60000000-0x6fffffff pref] or
216 [mem 0x60000000 pref] or
221 printed resource with (R) or without (r) a decoded flags member. If start is
231 %pa[p] 0x01234567 or 0x0123456789abcdef
244 %pra [range 0x0000000060000000-0x000000006fffffff] or
257 %pad 0x01234567 or 0x0123456789abcdef
327 specifiers result in a printed address with (M) or without (m) byte
350 specifiers result in a printed address with (i4) or without (I4) leading
354 host, network, big or little endian order addresses respectively. Where
369 specifiers result in a printed address with (I6) or without (i6)
383 %pIS 1.2.3.4 or 0001:0002:0003:0004:0005:0006:0007:0008
384 %piS 001.002.003.004 or 00010002000300040005000600070008
385 %pISc 1.2.3.4 or 1:2:3:4:5:6:7:8
386 %pISpc 1.2.3.4:12345 or [1:2:3:4:5:6:7:8]:12345
390 type AF_INET or AF_INET6. A pointer to a valid struct sockaddr,
391 specified through ``IS`` or ``iS``, can be passed to this format specifier.
400 case of additional specifiers ``p``, ``f`` or ``s`` as suggested by
411 %pISfc 1.2.3.4 or [1:2:3:4:5:6:7:8]/123456789
412 %pISsc 1.2.3.4 or [1:2:3:4:5:6:7:8]%1234567890
413 %pISpfc 1.2.3.4:12345 or [1:2:3:4:5:6:7:8]:12345/123456789
427 lower (l) or upper case (L) hex notation - and big endian order in lower (b)
428 or upper case (B) hex notation.
455 %pg sda, sda1 or loop0p1
564 when date or time is omitted.
577 (Common Clock Framework) or a unique 32-bit ID (legacy clock framework).
640 Print a FourCC code used by V4L2 or DRM, including format endianness and
665 one or more test cases, if at all feasible.