/linux-3.4.99/drivers/acpi/apei/ |
D | cper.c | 74 void cper_print_bits(const char *pfx, unsigned int bits, in cper_print_bits() argument 92 len = snprintf(buf, sizeof(buf), "%s%s", pfx, str); in cper_print_bits() 132 static void cper_print_proc_generic(const char *pfx, in cper_print_proc_generic() argument 136 printk("%s""processor_type: %d, %s\n", pfx, proc->proc_type, in cper_print_proc_generic() 140 printk("%s""processor_isa: %d, %s\n", pfx, proc->proc_isa, in cper_print_proc_generic() 144 printk("%s""error_type: 0x%02x\n", pfx, proc->proc_error_type); in cper_print_proc_generic() 145 cper_print_bits(pfx, proc->proc_error_type, in cper_print_proc_generic() 150 printk("%s""operation: %d, %s\n", pfx, proc->operation, in cper_print_proc_generic() 154 printk("%s""flags: 0x%02x\n", pfx, proc->flags); in cper_print_proc_generic() 155 cper_print_bits(pfx, proc->flags, cper_proc_flag_strs, in cper_print_proc_generic() [all …]
|
D | ghes.c | 505 static void __ghes_print_estatus(const char *pfx, in __ghes_print_estatus() argument 513 if (pfx == NULL) { in __ghes_print_estatus() 516 pfx = KERN_WARNING; in __ghes_print_estatus() 518 pfx = KERN_ERR; in __ghes_print_estatus() 521 snprintf(pfx_seq, sizeof(pfx_seq), "%s{%u}" HW_ERR, pfx, curr_seqno); in __ghes_print_estatus() 527 static int ghes_print_estatus(const char *pfx, in ghes_print_estatus() argument 541 __ghes_print_estatus(pfx, generic, estatus); in ghes_print_estatus()
|
/linux-3.4.99/include/linux/ |
D | sh_pfc.h | 128 #define PORT_1(fn, pfx, sfx) fn(pfx, sfx) argument 130 #define PORT_10(fn, pfx, sfx) \ argument 131 PORT_1(fn, pfx##0, sfx), PORT_1(fn, pfx##1, sfx), \ 132 PORT_1(fn, pfx##2, sfx), PORT_1(fn, pfx##3, sfx), \ 133 PORT_1(fn, pfx##4, sfx), PORT_1(fn, pfx##5, sfx), \ 134 PORT_1(fn, pfx##6, sfx), PORT_1(fn, pfx##7, sfx), \ 135 PORT_1(fn, pfx##8, sfx), PORT_1(fn, pfx##9, sfx) 137 #define PORT_90(fn, pfx, sfx) \ argument 138 PORT_10(fn, pfx##1, sfx), PORT_10(fn, pfx##2, sfx), \ 139 PORT_10(fn, pfx##3, sfx), PORT_10(fn, pfx##4, sfx), \ [all …]
|
D | btree-type.h | 1 #define __BTREE_TP(pfx, type, sfx) pfx ## type ## sfx argument 2 #define _BTREE_TP(pfx, type, sfx) __BTREE_TP(pfx, type, sfx) argument 3 #define BTREE_TP(pfx) _BTREE_TP(pfx, BTREE_TYPE_SUFFIX,) argument
|
/linux-3.4.99/arch/mips/include/asm/ |
D | r4kcache.h | 343 #define __BUILD_BLAST_CACHE(pfx, desc, indexop, hitop, lsize) \ argument 344 static inline void blast_##pfx##cache##lsize(void) \ 353 __##pfx##flush_prologue \ 359 __##pfx##flush_epilogue \ 362 static inline void blast_##pfx##cache##lsize##_page(unsigned long page) \ 367 __##pfx##flush_prologue \ 374 __##pfx##flush_epilogue \ 377 static inline void blast_##pfx##cache##lsize##_page_indexed(unsigned long page) \ 387 __##pfx##flush_prologue \ 393 __##pfx##flush_epilogue \ [all …]
|
D | io.h | 309 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) \ argument 311 static inline void pfx##write##bwlq(type val, \ 321 __val = pfx##ioswab##bwlq(__mem, val); \ 347 static inline type pfx##read##bwlq(const volatile void __iomem *mem) \ 376 return pfx##ioswab##bwlq(__mem, __val); \ 379 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) \ argument 381 static inline void pfx##out##bwlq##p(type val, unsigned long port) \ 390 __val = pfx##ioswab##bwlq(__addr, val); \ 399 static inline type pfx##in##bwlq##p(unsigned long port) \ 411 return pfx##ioswab##bwlq(__addr, __val); \
|
/linux-3.4.99/arch/avr32/include/asm/ |
D | io.h | 79 #define __BUILD_MEMORY_SINGLE(pfx, bwl, type) \ argument 81 pfx##write##bwl(type val, volatile void __iomem *addr) \ 87 __val = pfx##ioswab##bwl(__addr, val); \ 94 static inline type pfx##read##bwl(const volatile void __iomem *addr) \ 104 return pfx##ioswab##bwl(__addr, __val); \ 107 #define __BUILD_IOPORT_SINGLE(pfx, bwl, type, p, slow) \ argument 108 static inline void pfx##out##bwl##p(type val, unsigned long port) \ 114 __val = pfx##ioswab##bwl(__addr, val); \ 122 static inline type pfx##in##bwl##p(unsigned long port) \ 134 return pfx##ioswab##bwl(__addr, __val); \
|
/linux-3.4.99/sound/pci/hda/ |
D | patch_ca0110.c | 140 static int _add_switch(struct hda_codec *codec, hda_nid_t nid, const char *pfx, in _add_switch() argument 147 sprintf(namestr, "%s %s Switch", pfx, dirstr[dir]); in _add_switch() 151 static int _add_volume(struct hda_codec *codec, hda_nid_t nid, const char *pfx, in _add_volume() argument 158 sprintf(namestr, "%s %s Volume", pfx, dirstr[dir]); in _add_volume() 162 #define add_out_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 0) argument 163 #define add_out_volume(codec, nid, pfx) _add_volume(codec, nid, pfx, 3, 0) argument 164 #define add_in_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 1) argument 165 #define add_in_volume(codec, nid, pfx) _add_volume(codec, nid, pfx, 3, 1) argument 166 #define add_mono_switch(codec, nid, pfx, chan) \ argument 167 _add_switch(codec, nid, pfx, chan, 0) [all …]
|
D | patch_ca0132.c | 272 static int _add_switch(struct hda_codec *codec, hda_nid_t nid, const char *pfx, in _add_switch() argument 280 snd_printdd("Skipping '%s %s Switch' (no mute on node 0x%x)\n", pfx, dirstr[dir], nid); in _add_switch() 283 sprintf(namestr, "%s %s Switch", pfx, dirstr[dir]); in _add_switch() 287 static int _add_volume(struct hda_codec *codec, hda_nid_t nid, const char *pfx, in _add_volume() argument 295 snd_printdd("Skipping '%s %s Volume' (no amp on node 0x%x)\n", pfx, dirstr[dir], nid); in _add_volume() 298 sprintf(namestr, "%s %s Volume", pfx, dirstr[dir]); in _add_volume() 302 #define add_out_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 0) argument 303 #define add_out_volume(codec, nid, pfx) _add_volume(codec, nid, pfx, 3, 0) argument 304 #define add_in_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 1) argument 305 #define add_in_volume(codec, nid, pfx) _add_volume(codec, nid, pfx, 3, 1) argument [all …]
|
/linux-3.4.99/arch/arm/mach-shmobile/ |
D | pfc-sh73a0.c | 27 #define CPU_ALL_PORT(fn, pfx, sfx) \ argument 28 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \ 29 PORT_10(fn, pfx##2, sfx), PORT_10(fn, pfx##3, sfx), \ 30 PORT_10(fn, pfx##4, sfx), PORT_10(fn, pfx##5, sfx), \ 31 PORT_10(fn, pfx##6, sfx), PORT_10(fn, pfx##7, sfx), \ 32 PORT_10(fn, pfx##8, sfx), PORT_10(fn, pfx##9, sfx), \ 33 PORT_10(fn, pfx##10, sfx), \ 34 PORT_1(fn, pfx##110, sfx), PORT_1(fn, pfx##111, sfx), \ 35 PORT_1(fn, pfx##112, sfx), PORT_1(fn, pfx##113, sfx), \ 36 PORT_1(fn, pfx##114, sfx), PORT_1(fn, pfx##115, sfx), \ [all …]
|
D | pfc-sh7377.c | 25 #define CPU_ALL_PORT(fn, pfx, sfx) \ argument 26 PORT_10(fn, pfx, sfx), PORT_90(fn, pfx, sfx), \ 27 PORT_10(fn, pfx##10, sfx), \ 28 PORT_1(fn, pfx##110, sfx), PORT_1(fn, pfx##111, sfx), \ 29 PORT_1(fn, pfx##112, sfx), PORT_1(fn, pfx##113, sfx), \ 30 PORT_1(fn, pfx##114, sfx), PORT_1(fn, pfx##115, sfx), \ 31 PORT_1(fn, pfx##116, sfx), PORT_1(fn, pfx##117, sfx), \ 32 PORT_1(fn, pfx##118, sfx), \ 33 PORT_1(fn, pfx##128, sfx), PORT_1(fn, pfx##129, sfx), \ 34 PORT_10(fn, pfx##13, sfx), PORT_10(fn, pfx##14, sfx), \ [all …]
|
D | pfc-r8a7779.c | 26 #define CPU_32_PORT(fn, pfx, sfx) \ argument 27 PORT_10(fn, pfx, sfx), PORT_10(fn, pfx##1, sfx), \ 28 PORT_10(fn, pfx##2, sfx), PORT_1(fn, pfx##30, sfx), \ 29 PORT_1(fn, pfx##31, sfx) 31 #define CPU_32_PORT6(fn, pfx, sfx) \ argument 32 PORT_1(fn, pfx##0, sfx), PORT_1(fn, pfx##1, sfx), \ 33 PORT_1(fn, pfx##2, sfx), PORT_1(fn, pfx##3, sfx), \ 34 PORT_1(fn, pfx##4, sfx), PORT_1(fn, pfx##5, sfx), \ 35 PORT_1(fn, pfx##6, sfx), PORT_1(fn, pfx##7, sfx), \ 36 PORT_1(fn, pfx##8, sfx) [all …]
|
D | pfc-sh7367.c | 24 #define CPU_ALL_PORT(fn, pfx, sfx) \ argument 25 PORT_10(fn, pfx, sfx), PORT_90(fn, pfx, sfx), \ 26 PORT_10(fn, pfx##10, sfx), PORT_90(fn, pfx##1, sfx), \ 27 PORT_10(fn, pfx##20, sfx), PORT_10(fn, pfx##21, sfx), \ 28 PORT_10(fn, pfx##22, sfx), PORT_10(fn, pfx##23, sfx), \ 29 PORT_10(fn, pfx##24, sfx), PORT_10(fn, pfx##25, sfx), \ 30 PORT_10(fn, pfx##26, sfx), PORT_1(fn, pfx##270, sfx), \ 31 PORT_1(fn, pfx##271, sfx), PORT_1(fn, pfx##272, sfx)
|
D | pfc-sh7372.c | 29 #define CPU_ALL_PORT(fn, pfx, sfx) \ argument 30 PORT_10(fn, pfx, sfx), PORT_90(fn, pfx, sfx), \ 31 PORT_10(fn, pfx##10, sfx), PORT_10(fn, pfx##11, sfx), \ 32 PORT_10(fn, pfx##12, sfx), PORT_10(fn, pfx##13, sfx), \ 33 PORT_10(fn, pfx##14, sfx), PORT_10(fn, pfx##15, sfx), \ 34 PORT_10(fn, pfx##16, sfx), PORT_10(fn, pfx##17, sfx), \ 35 PORT_10(fn, pfx##18, sfx), PORT_1(fn, pfx##190, sfx)
|
/linux-3.4.99/kernel/ |
D | timeconst.pl | 284 my $pfx, $bit, $suf, $s, $m, $a; 302 foreach $pfx ('HZ_TO_MSEC','MSEC_TO_HZ', 306 outputval("${pfx}_$suf$bit", shift(@val)); 310 outputval("${pfx}_$suf", shift(@val));
|
/linux-3.4.99/arch/sh/include/asm/ |
D | io.h | 88 #define __BUILD_MEMORY_STRING(pfx, bwlq, type) \ argument 91 pfx##writes##bwlq(volatile void __iomem *mem, const void *addr, \ 102 static inline void pfx##reads##bwlq(volatile void __iomem *mem, \ 157 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) \ argument 159 static inline void pfx##out##bwlq##p(type val, unsigned long port) \ 168 static inline type pfx##in##bwlq##p(unsigned long port) \
|
/linux-3.4.99/net/caif/ |
D | cfpkt_skbuff.c | 80 static struct cfpkt *cfpkt_create_pfx(u16 len, u16 pfx) in cfpkt_create_pfx() argument 85 skb = alloc_skb(len + pfx, GFP_ATOMIC); in cfpkt_create_pfx() 87 skb = alloc_skb(len + pfx, GFP_KERNEL); in cfpkt_create_pfx() 92 skb_reserve(skb, pfx); in cfpkt_create_pfx()
|
/linux-3.4.99/arch/arm/mm/ |
D | proc-macros.S | 118 .macro armv6_mt_table pfx argument 119 \pfx\()_mt_table: 138 .macro armv6_set_pte_ext pfx argument 146 adr ip, \pfx\()_mt_table
|
/linux-3.4.99/arch/x86/include/asm/ |
D | inat.h | 93 #define INAT_MAKE_PREFIX(pfx) (pfx << INAT_PFX_OFFS) argument
|
D | cmpxchg.h | 210 #define __cmpxchg_double(pfx, p1, p2, o1, o2, n1, n2) \ argument 219 asm volatile(pfx "cmpxchg%c4b %2; sete %0" \
|
/linux-3.4.99/net/ipv6/ |
D | addrlabel.c | 412 struct in6_addr *pfx; in ip6addrlbl_newdel() local 429 pfx = nla_data(tb[IFAL_ADDRESS]); in ip6addrlbl_newdel() 430 if (!pfx) in ip6addrlbl_newdel() 445 err = ip6addrlbl_add(net, pfx, ifal->ifal_prefixlen, in ip6addrlbl_newdel() 450 err = ip6addrlbl_del(net, pfx, ifal->ifal_prefixlen, in ip6addrlbl_newdel()
|
D | addrconf.c | 1697 addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev, in addrconf_prefix_route() argument 1711 cfg.fc_dst = *pfx; in addrconf_prefix_route() 1726 static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx, in addrconf_get_prefix_route() argument 1740 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0); in addrconf_get_prefix_route() 2187 static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx, in inet6_addr_add() argument 2216 scope = ipv6_addr_scope(pfx); in inet6_addr_add() 2236 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags); in inet6_addr_add() 2261 static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx, in inet6_addr_del() argument 2281 ipv6_addr_equal(pfx, &ifp->addr)) { in inet6_addr_del() 3414 struct in6_addr *pfx = NULL; in extract_addr() local [all …]
|
/linux-3.4.99/include/net/ |
D | ipv6.h | 313 static inline void ipv6_addr_prefix(struct in6_addr *pfx, in ipv6_addr_prefix() argument 321 memset(pfx->s6_addr, 0, sizeof(pfx->s6_addr)); in ipv6_addr_prefix() 322 memcpy(pfx->s6_addr, addr, o); in ipv6_addr_prefix() 324 pfx->s6_addr[o] = addr->s6_addr[o] & (0xff00 >> b); in ipv6_addr_prefix()
|
/linux-3.4.99/arch/arm/plat-s3c24xx/ |
D | s3c2412-iotiming.c | 44 static void s3c2412_print_timing(const char *pfx, struct s3c_iotimings *iot) in s3c2412_print_timing() argument 55 "wstoen=%d.%d wstwen=%d.%d wstbrd=%d.%d\n", pfx, bank, in s3c2412_print_timing()
|
/linux-3.4.99/drivers/pcmcia/ |
D | bfin_cf_pcmcia.c | 53 #define bfin_cf_present(pfx) (gpio_get_value(pfx)) argument
|