/linux-3.3/include/linux/ |
D | init.h | 178 #define __define_initcall(level,fn,id) \ argument 187 #define early_initcall(fn) __define_initcall("early",fn,early) argument 195 #define pure_initcall(fn) __define_initcall("0",fn,0) argument 197 #define core_initcall(fn) __define_initcall("1",fn,1) argument 198 #define core_initcall_sync(fn) __define_initcall("1s",fn,1s) argument 199 #define postcore_initcall(fn) __define_initcall("2",fn,2) argument 200 #define postcore_initcall_sync(fn) __define_initcall("2s",fn,2s) argument 201 #define arch_initcall(fn) __define_initcall("3",fn,3) argument 202 #define arch_initcall_sync(fn) __define_initcall("3s",fn,3s) argument 203 #define subsys_initcall(fn) __define_initcall("4",fn,4) argument [all …]
|
D | stop_machine.h | 26 cpu_stop_fn_t fn; member 43 cpu_stop_fn_t fn; member 47 static inline int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg) in stop_one_cpu() 67 cpu_stop_fn_t fn, void *arg, in stop_one_cpu_nowait() 79 cpu_stop_fn_t fn, void *arg) in stop_cpus() 87 cpu_stop_fn_t fn, void *arg) in try_stop_cpus()
|
D | kthread.h | 78 #define KTHREAD_WORK_INIT(work, fn) { \ argument 88 #define DEFINE_KTHREAD_WORK(work, fn) \ argument 101 # define KTHREAD_WORK_INIT_ONSTACK(work, fn) \ argument 103 # define DEFINE_KTHREAD_WORK_ONSTACK(work, fn) \ argument 107 # define DEFINE_KTHREAD_WORK_ONSTACK(work, fn) DEFINE_KTHREAD_WORK(work, fn) argument 119 #define init_kthread_work(work, fn) \ argument
|
D | cpu.h | 110 #define cpu_notifier(fn, pri) { \ argument 116 #define cpu_notifier(fn, pri) do { (void)(fn); } while (0) argument 144 #define cpu_notifier(fn, pri) do { (void)(fn); } while (0) argument 171 #define hotcpu_notifier(fn, pri) cpu_notifier(fn, pri) argument 193 #define hotcpu_notifier(fn, pri) do { (void)(fn); } while (0) argument
|
D | timer.h | 117 #define setup_timer(timer, fn, data) \ argument 123 #define setup_timer_on_stack(timer, fn, data) \ argument 129 #define setup_deferrable_timer_on_stack(timer, fn, data) \ argument 143 #define setup_timer(timer, fn, data)\ argument 145 #define setup_timer_on_stack(timer, fn, data)\ argument 147 #define setup_deferrable_timer_on_stack(timer, fn, data)\ argument
|
/linux-3.3/arch/um/include/shared/ |
D | init.h | 91 #define __uml_initcall(fn) \ argument 94 #define __uml_exitcall(fn) \ argument 99 #define __uml_postsetup(fn) \ argument 109 #define __uml_setup(str, fn, help...) \ argument 115 #define __uml_setup(str, fn, help...) \ argument 119 #define __uml_help(fn, help...) \ argument 136 #define __define_initcall(level,fn) \ argument 143 #define __initcall(fn) __define_initcall("1", fn) argument 145 #define __exitcall(fn) static exitcall_t __exitcall_##fn __exit_call = fn argument
|
/linux-3.3/arch/arm/include/asm/ |
D | glue.h | 19 #define ____glue(name,fn) name##fn argument 21 #define ____glue(name,fn) name/**/fn argument 23 #define __glue(name,fn) ____glue(name,fn) argument
|
/linux-3.3/arch/powerpc/include/asm/ |
D | machdep.h | 321 #define __define_machine_initcall(mach,level,fn,id) \ argument 328 #define machine_core_initcall(mach,fn) __define_machine_initcall(mach,"1",fn,1) argument 329 #define machine_core_initcall_sync(mach,fn) __define_machine_initcall(mach,"1s",fn,1s) argument 330 #define machine_postcore_initcall(mach,fn) __define_machine_initcall(mach,"2",fn,2) argument 331 #define machine_postcore_initcall_sync(mach,fn) __define_machine_initcall(mach,"2s",fn,2s) argument 332 #define machine_arch_initcall(mach,fn) __define_machine_initcall(mach,"3",fn,3) argument 333 #define machine_arch_initcall_sync(mach,fn) __define_machine_initcall(mach,"3s",fn,3s) argument 334 #define machine_subsys_initcall(mach,fn) __define_machine_initcall(mach,"4",fn,4) argument 335 #define machine_subsys_initcall_sync(mach,fn) __define_machine_initcall(mach,"4s",fn,4s) argument 336 #define machine_fs_initcall(mach,fn) __define_machine_initcall(mach,"5",fn,5) argument [all …]
|
/linux-3.3/net/ipv6/ |
D | ip6_fib.c | 149 struct fib6_node *fn; in node_alloc() local 156 static __inline__ void node_free(struct fib6_node * fn) in node_free() 431 struct fib6_node *fn, *in, *ln; in fib6_add_1() local 640 static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt, in fib6_add_rt2node() 760 struct fib6_node *fn, *pn = NULL; in fib6_add() local 914 struct fib6_node *fn; in fib6_lookup_1() local 969 struct fib6_node *fn; in fib6_lookup() local 1003 struct fib6_node *fn; in fib6_locate_1() local 1033 struct fib6_node *fn; in fib6_locate() local 1059 static struct rt6_info *fib6_find_prefix(struct net *net, struct fib6_node *fn) in fib6_find_prefix() [all …]
|
/linux-3.3/kernel/ |
D | stop_machine.c | 105 int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg) in stop_one_cpu() 129 void stop_one_cpu_nowait(unsigned int cpu, cpu_stop_fn_t fn, void *arg, in stop_one_cpu_nowait() 141 cpu_stop_fn_t fn, void *arg, in queue_stop_cpus_work() 168 cpu_stop_fn_t fn, void *arg) in __stop_cpus() 206 int stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg) in stop_cpus() 235 int try_stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg) in try_stop_cpus() 271 cpu_stop_fn_t fn = work->fn; in cpu_stopper_thread() local 413 int (*fn)(void *); member
|
/linux-3.3/drivers/net/wireless/brcm80211/brcmfmac/ |
D | bcmsdh.c | 231 static int brcmf_sdcard_recv_prepare(struct brcmf_sdio_dev *sdiodev, uint fn, in brcmf_sdcard_recv_prepare() 258 brcmf_sdcard_recv_buf(struct brcmf_sdio_dev *sdiodev, u32 addr, uint fn, in brcmf_sdcard_recv_buf() 280 brcmf_sdcard_recv_pkt(struct brcmf_sdio_dev *sdiodev, u32 addr, uint fn, in brcmf_sdcard_recv_pkt() 302 int brcmf_sdcard_recv_chain(struct brcmf_sdio_dev *sdiodev, u32 addr, uint fn, in brcmf_sdcard_recv_chain() 325 brcmf_sdcard_send_buf(struct brcmf_sdio_dev *sdiodev, u32 addr, uint fn, in brcmf_sdcard_send_buf() 347 brcmf_sdcard_send_pkt(struct brcmf_sdio_dev *sdiodev, u32 addr, uint fn, in brcmf_sdcard_send_pkt() 413 int brcmf_sdcard_abort(struct brcmf_sdio_dev *sdiodev, uint fn) in brcmf_sdcard_abort()
|
/linux-3.3/sound/ |
D | sound_firmware.c | 9 static int do_mod_firmware_load(const char *fn, char **fp) in do_mod_firmware_load() 66 int mod_firmware_load(const char *fn, char **fp) in mod_firmware_load()
|
/linux-3.3/tools/perf/bench/ |
D | mem-memcpy.c | 52 memcpy_t fn; member 61 #define MEMCPY_FN(fn, name, desc) { name, desc, fn }, argument 120 static u64 do_memcpy_clock(memcpy_t fn, size_t len, bool prefault) in do_memcpy_clock() 139 static double do_memcpy_gettimeofday(memcpy_t fn, size_t len, bool prefault) in do_memcpy_gettimeofday()
|
/linux-3.3/drivers/sh/intc/ |
D | handle.c | 45 unsigned int fn, mode; in _intc_mask_data() local 113 unsigned int fn, n, mode, bit; in _intc_prio_data() local 180 unsigned int i, j, fn, mode; in intc_ack_data() local 212 unsigned long (*fn)(unsigned long, unsigned long, in intc_enable_disable() local 263 unsigned int i, j, fn, bit; in intc_get_sense_handle() local
|
/linux-3.3/drivers/mmc/core/ |
D | sdio_ops.c | 68 static int mmc_io_rw_direct_host(struct mmc_host *host, int write, unsigned fn, in mmc_io_rw_direct_host() 114 int mmc_io_rw_direct(struct mmc_card *card, int write, unsigned fn, in mmc_io_rw_direct() 121 int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn, in mmc_io_rw_extended()
|
/linux-3.3/arch/powerpc/platforms/cell/ |
D | celleb_pci.c | 102 int devno, int fn) in get_fake_config_start() 114 int devno, int fn) in get_resource_start() 167 unsigned int fn = devfn & 0x7; in celleb_fake_pci_read_config() local 195 unsigned int fn = devfn & 0x7; in celleb_fake_pci_write_config() local 242 unsigned int devno, unsigned int fn, in celleb_setup_pci_base_addrs() 290 unsigned int devno, fn; in celleb_setup_fake_pci_device() local
|
/linux-3.3/init/ |
D | main.c | 644 ctor_fn_t *fn = (ctor_fn_t *) __ctors_start; in do_ctors() local 656 static int __init_or_module do_one_initcall_debug(initcall_t fn) in do_one_initcall_debug() 674 int __init_or_module do_one_initcall(initcall_t fn) in do_one_initcall() 709 initcall_t *fn; in do_initcalls() local 736 initcall_t *fn; in do_pre_smp_initcalls() local
|
/linux-3.3/arch/mips/pci/ |
D | ops-bridge.c | 49 int fn = PCI_FUNC(devfn); in pci_conf0_read_config() local 110 int fn = PCI_FUNC(devfn); in pci_conf1_read_config() local 182 int fn = PCI_FUNC(devfn); in pci_conf0_write_config() local 248 int fn = PCI_FUNC(devfn); in pci_conf1_write_config() local
|
/linux-3.3/net/dccp/ |
D | feat.c | 634 struct list_head *fn = dreq ? &dreq->dreq_featneg : &dp->dccps_featneg; in dccp_feat_insert_opts() local 696 static int __feat_register_nn(struct list_head *fn, u8 feat, in __feat_register_nn() 721 static int __feat_register_sp(struct list_head *fn, u8 feat, u8 is_local, in __feat_register_sp() 797 struct list_head *fn = &dccp_sk(sk)->dccps_featneg; in dccp_feat_signal_nn_change() local 935 static int dccp_feat_propagate_ccid(struct list_head *fn, u8 id, bool is_local) in dccp_feat_propagate_ccid() 962 struct list_head *fn = &dp->dccps_featneg; in dccp_feat_finalise_settings() local 992 struct list_head *fn = &dreq->dreq_featneg; in dccp_feat_server_ccid_dependencies() local 1089 static u8 dccp_feat_change_recv(struct list_head *fn, u8 is_mandatory, u8 opt, in dccp_feat_change_recv() 1200 static u8 dccp_feat_confirm_recv(struct list_head *fn, u8 is_mandatory, u8 opt, in dccp_feat_confirm_recv() 1299 struct list_head *fn = &dccp_sk(sk)->dccps_featneg; in dccp_feat_handle_nn_established() local [all …]
|
/linux-3.3/crypto/ |
D | pcbc.c | 49 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_encrypt_segment() local 74 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_encrypt_inplace() local 127 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_decrypt_segment() local 154 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_decrypt_inplace() local
|
D | cbc.c | 46 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_encrypt_segment() local 70 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_encrypt_inplace() local 118 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_decrypt_segment() local 144 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_decrypt_inplace() local
|
/linux-3.3/drivers/net/ethernet/chelsio/cxgb/ |
D | vsc7326_reg.h | 70 #define REG_TEST(ie,fn) CRA(0x2,ie&1,0x00+fn) /* Mode & Test Register */ argument 71 #define REG_TOP_BOTTOM(ie,fn) CRA(0x2,ie&1,0x10+fn) /* FIFO Buffer Top & Bottom */ argument 72 #define REG_TAIL(ie,fn) CRA(0x2,ie&1,0x20+fn) /* FIFO Write Pointer */ argument 73 #define REG_HEAD(ie,fn) CRA(0x2,ie&1,0x30+fn) /* FIFO Read Pointer */ argument 74 #define REG_HIGH_LOW_WM(ie,fn) CRA(0x2,ie&1,0x40+fn) /* Flow Control Water Marks */ argument 75 #define REG_CT_THRHLD(ie,fn) CRA(0x2,ie&1,0x50+fn) /* Cut Through Threshold */ argument 76 #define REG_FIFO_DROP_CNT(ie,fn) CRA(0x2,ie&1,0x60+fn) /* Drop & CRC Error Counter */ argument 77 #define REG_DEBUG_BUF_CNT(ie,fn) CRA(0x2,ie&1,0x70+fn) /* Input Side Debug Counter */ argument 78 #define REG_BUCKI(fn) CRA(0x2,2,0x20+fn) /* Input Side Debug Counter */ argument 79 #define REG_BUCKE(fn) CRA(0x2,3,0x20+fn) /* Input Side Debug Counter */ argument
|
/linux-3.3/arch/arm/plat-samsung/ |
D | pm-check.c | 50 static void s3c_pm_run_res(struct resource *ptr, run_fn_t fn, u32 *arg) in s3c_pm_run_res() 68 static void s3c_pm_run_sysram(run_fn_t fn, u32 *arg) in s3c_pm_run_sysram()
|
/linux-3.3/fs/jffs2/ |
D | gc.c | 464 struct jffs2_full_dnode *fn = NULL; in jffs2_garbage_collect_live() local 712 struct jffs2_inode_info *f, struct jffs2_full_dnode *fn) in jffs2_garbage_collect_metadata() 958 struct jffs2_inode_info *f, struct jffs2_full_dnode *fn, in jffs2_garbage_collect_hole() 1107 struct jffs2_inode_info *f, struct jffs2_full_dnode *fn, in jffs2_garbage_collect_dnode()
|
/linux-3.3/drivers/scsi/ |
D | sd_dif.c | 56 static void sd_dif_type1_generate(struct blk_integrity_exchg *bix, csum_fn *fn) in sd_dif_type1_generate() 83 static int sd_dif_type1_verify(struct blk_integrity_exchg *bix, csum_fn *fn) in sd_dif_type1_verify() 191 static void sd_dif_type3_generate(struct blk_integrity_exchg *bix, csum_fn *fn) in sd_dif_type3_generate() 216 static int sd_dif_type3_verify(struct blk_integrity_exchg *bix, csum_fn *fn) in sd_dif_type3_verify()
|