Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 562) sorted by relevance

12345678910>>...23

/linux-2.4.37.9/arch/i386/kernel/
Ddmi_scan.c161 char *d = (char*)dm; in dmi_save_ident() local
224 static __init int set_bios_reboot(struct dmi_blacklist *d) in set_bios_reboot()
238 static __init int set_smp_reboot(struct dmi_blacklist *d) in set_smp_reboot()
254 static __init int set_smp_bios_reboot(struct dmi_blacklist *d) in set_smp_bios_reboot()
265 static __init int set_realmode_power_off(struct dmi_blacklist *d) in set_realmode_power_off()
280 static __init int set_apm_ints(struct dmi_blacklist *d) in set_apm_ints()
294 static __init int apm_is_horked(struct dmi_blacklist *d) in apm_is_horked()
304 static __init int apm_is_horked_d850md(struct dmi_blacklist *d) in apm_is_horked_d850md()
320 static __init int apm_likes_to_melt(struct dmi_blacklist *d) in apm_likes_to_melt()
346 static __init int broken_apm_power(struct dmi_blacklist *d) in broken_apm_power()
[all …]
/linux-2.4.37.9/arch/alpha/lib/
Dmemcpy.c24 #define ALIGN_DEST_TO8_UP(d,s,n) \ argument
31 #define ALIGN_DEST_TO8_DN(d,s,n) \ argument
43 #define DO_REST_UP(d,s,n) \ argument
49 #define DO_REST_DN(d,s,n) \ argument
60 #define DO_REST_ALIGNED_UP(d,s,n) DO_REST_UP(d,s,n) argument
61 #define DO_REST_ALIGNED_DN(d,s,n) DO_REST_DN(d,s,n) argument
70 static inline void __memcpy_unaligned_up (unsigned long d, unsigned long s, in __memcpy_unaligned_up()
98 static inline void __memcpy_unaligned_dn (unsigned long d, unsigned long s, in __memcpy_unaligned_dn()
116 static inline void __memcpy_aligned_up (unsigned long d, unsigned long s, in __memcpy_aligned_up()
132 static inline void __memcpy_aligned_dn (unsigned long d, unsigned long s, in __memcpy_aligned_dn()
/linux-2.4.37.9/include/acpi/platform/
Dacenv.h232 #define ACPI_STRCPY(d,s) (void) strcpy((d), (s)) argument
233 #define ACPI_STRNCPY(d,s,n) (void) strncpy((d), (s), (acpi_size)(n)) argument
234 #define ACPI_STRNCMP(d,s,n) strncmp((d), (s), (acpi_size)(n)) argument
235 #define ACPI_STRCMP(d,s) strcmp((d), (s)) argument
236 #define ACPI_STRCAT(d,s) (void) strcat((d), (s)) argument
237 #define ACPI_STRNCAT(d,s,n) strncat((d), (s), (acpi_size)(n)) argument
238 #define ACPI_STRTOUL(d,s,n) strtoul((d), (s), (acpi_size)(n)) argument
239 #define ACPI_MEMCPY(d,s,n) (void) memcpy((d), (s), (acpi_size)(n)) argument
240 #define ACPI_MEMSET(d,s,n) (void) memset((d), (s), (acpi_size)(n)) argument
295 #define ACPI_STRCPY(d,s) (void) acpi_ut_strcpy ((d), (s)) argument
[all …]
/linux-2.4.37.9/drivers/ide/
Dsetup-pci.c282 static void ide_setup_pci_noise (struct pci_dev *dev, ide_pci_device_t *d) in ide_setup_pci_noise()
305 static int ide_pci_enable(struct pci_dev *dev, ide_pci_device_t *d) in ide_pci_enable()
345 static int ide_pci_configure(struct pci_dev *dev, ide_pci_device_t *d) in ide_pci_configure()
381 static int ide_pci_check_iomem(struct pci_dev *dev, ide_pci_device_t *d, int bar) in ide_pci_check_iomem()
414 static ide_hwif_t *ide_hwif_configure(struct pci_dev *dev, ide_pci_device_t *d, ide_hwif_t *mate, i… in ide_hwif_configure()
471 static void ide_hwif_setup_dma(struct pci_dev *dev, ide_pci_device_t *d, ide_hwif_t *hwif) in ide_hwif_setup_dma()
527 static int ide_setup_pci_controller(struct pci_dev *dev, ide_pci_device_t *d, int noisy, int *confi… in ide_setup_pci_controller()
572 static ata_index_t do_ide_setup_pci_device (struct pci_dev *dev, ide_pci_device_t *d, u8 noisy) in do_ide_setup_pci_device()
697 void ide_setup_pci_device (struct pci_dev *dev, ide_pci_device_t *d) in ide_setup_pci_device()
704 void ide_setup_pci_devices (struct pci_dev *dev, struct pci_dev *dev2, ide_pci_device_t *d) in ide_setup_pci_devices()
[all …]
/linux-2.4.37.9/include/acpi/
Dacmacros.h119 #define ACPI_OFFSET(d,f) (acpi_size) ACPI_PTR_DIFF (&(((d *)0)->f),(void *) NULL) argument
126 #define ACPI_STORE_POINTER(d,s) ACPI_MOVE_32_TO_32(d,s) argument
154 #define ACPI_MOVE_16_TO_16(d,s) {(( u8 *)(void *)(d))[0] = ((u8 *)(void *)(s))[1];\ argument
157 #define ACPI_MOVE_16_TO_32(d,s) {(*(u32 *)(void *)(d))=0;\ argument
161 #define ACPI_MOVE_16_TO_64(d,s) {(*(u64 *)(void *)(d))=0;\ argument
167 #define ACPI_MOVE_32_TO_16(d,s) ACPI_MOVE_16_TO_16(d,s) /* Truncate to 16 */ argument
169 #define ACPI_MOVE_32_TO_32(d,s) {(( u8 *)(void *)(d))[0] = ((u8 *)(void *)(s))[3];\ argument
174 #define ACPI_MOVE_32_TO_64(d,s) {(*(u64 *)(void *)(d))=0;\ argument
182 #define ACPI_MOVE_64_TO_16(d,s) ACPI_MOVE_16_TO_16(d,s) /* Truncate to 16 */ argument
184 #define ACPI_MOVE_64_TO_32(d,s) ACPI_MOVE_32_TO_32(d,s) /* Truncate to 32 */ argument
[all …]
/linux-2.4.37.9/fs/xfs/
Dxfs_dir2_data.c79 xfs_dir2_data_t *d; /* data block pointer */ in xfs_dir2_data_check() local
198 xfs_dir2_data_t *d, /* data block */ in xfs_dir2_data_freefind()
266 xfs_dir2_data_t *d, /* data block pointer */ in xfs_dir2_data_freeinsert()
309 xfs_dir2_data_t *d, /* data block pointer */ in xfs_dir2_data_freeremove()
348 xfs_dir2_data_t *d, /* data block pointer */ in xfs_dir2_data_freescan()
415 xfs_dir2_data_t *d; /* pointer to block */ in xfs_dir2_data_init() local
475 xfs_dir2_data_t *d; /* data block pointer */ in xfs_dir2_data_log_entry() local
493 xfs_dir2_data_t *d; /* data block pointer */ in xfs_dir2_data_log_header() local
511 xfs_dir2_data_t *d; /* data block pointer */ in xfs_dir2_data_log_unused() local
544 xfs_dir2_data_t *d; /* data block pointer */ in xfs_dir2_data_make_free() local
[all …]
/linux-2.4.37.9/drivers/mtd/maps/
Ddc21285.c45 void dc21285_write8(struct map_info *map, __u8 d, unsigned long adr) in dc21285_write8()
52 void dc21285_write16(struct map_info *map, __u16 d, unsigned long adr) in dc21285_write16()
59 void dc21285_write32(struct map_info *map, __u32 d, unsigned long adr) in dc21285_write32()
69 __u32 d = *((__u32*)from)++; in dc21285_copy_to() local
77 __u16 d = *((__u16*)from)++; in dc21285_copy_to() local
85 __u8 d = *((__u8*)from)++; in dc21285_copy_to() local
Dphysmap64.c51 void physmap_write8(struct map_info *map, __u8 d, unsigned long adr) in physmap_write8()
57 void physmap_write16(struct map_info *map, __u16 d, unsigned long adr) in physmap_write16()
63 void physmap_write32(struct map_info *map, __u32 d, unsigned long adr) in physmap_write32()
69 void physmap_write64(struct map_info *map, __u64 d, unsigned long adr) in physmap_write64()
/linux-2.4.37.9/fs/ufs/
Dswab.h44 fs64_add(struct super_block *sbp, u32 *n, int d) in fs64_add()
53 fs64_sub(struct super_block *sbp, u32 *n, int d) in fs64_sub()
80 fs32_add(struct super_block *sbp, u32 *n, int d) in fs32_add()
89 fs32_sub(struct super_block *sbp, u32 *n, int d) in fs32_sub()
116 fs16_add(struct super_block *sbp, u16 *n, int d) in fs16_add()
125 fs16_sub(struct super_block *sbp, u16 *n, int d) in fs16_sub()
/linux-2.4.37.9/drivers/net/wan/
Dhostess_sv11.c75 static int hostess_open(struct net_device *d) in hostess_open()
129 static int hostess_close(struct net_device *d) in hostess_close()
161 static int hostess_ioctl(struct net_device *d, struct ifreq *ifr, int cmd) in hostess_ioctl()
168 static struct net_device_stats *hostess_get_stats(struct net_device *d) in hostess_get_stats()
181 static int hostess_queue_xmit(struct sk_buff *skb, struct net_device *d) in hostess_queue_xmit()
314 struct net_device *d=dev->chanA.netdevice; in sv11_init() local
Dsealevel.c76 static int sealevel_open(struct net_device *d) in sealevel_open()
126 static int sealevel_close(struct net_device *d) in sealevel_close()
160 static int sealevel_ioctl(struct net_device *d, struct ifreq *ifr, int cmd) in sealevel_ioctl()
167 static struct net_device_stats *sealevel_get_stats(struct net_device *d) in sealevel_get_stats()
180 static int sealevel_queue_xmit(struct sk_buff *skb, struct net_device *d) in sealevel_queue_xmit()
342 struct net_device *d=sv->chan->netdevice; in slvl_init() local
/linux-2.4.37.9/net/bluetooth/rfcomm/
Dcore.c170 struct rfcomm_dlc *d = (void *) arg; in rfcomm_dlc_timeout() local
179 static void rfcomm_dlc_set_timer(struct rfcomm_dlc *d, long timeout) in rfcomm_dlc_set_timer()
187 static void rfcomm_dlc_clear_timer(struct rfcomm_dlc *d) in rfcomm_dlc_clear_timer()
195 static void rfcomm_dlc_clear_state(struct rfcomm_dlc *d) in rfcomm_dlc_clear_state()
211 struct rfcomm_dlc *d = kmalloc(sizeof(*d), prio); in rfcomm_dlc_alloc() local
230 void rfcomm_dlc_free(struct rfcomm_dlc *d) in rfcomm_dlc_free()
238 static void rfcomm_dlc_link(struct rfcomm_session *s, struct rfcomm_dlc *d) in rfcomm_dlc_link()
249 static void rfcomm_dlc_unlink(struct rfcomm_dlc *d) in rfcomm_dlc_unlink()
264 struct rfcomm_dlc *d; in rfcomm_dlc_get() local
275 static int __rfcomm_dlc_open(struct rfcomm_dlc *d, bdaddr_t *src, bdaddr_t *dst, u8 channel) in __rfcomm_dlc_open()
[all …]
/linux-2.4.37.9/include/linux/
Dvt_buffer.h25 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument
26 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
41 static inline void scr_memcpyw(u16 *d, const u16 *s, unsigned int count) in scr_memcpyw()
50 static inline void scr_memmovew(u16 *d, const u16 *s, unsigned int count) in scr_memmovew()
Dkdev_t.h80 #define major(d) MAJOR(d) argument
81 #define minor(d) MINOR(d) argument
83 #define kdev_none(d) (!(d)) argument
84 #define kdev_val(d) ((unsigned int)(d)) argument
85 #define val_to_kdev(d) ((kdev_t)(d)) argument
Dposix_types.h31 #define __FDELT(d) ((d) / __NFDBITS) argument
34 #define __FDMASK(d) (1UL << ((d) % __NFDBITS)) argument
/linux-2.4.37.9/drivers/ieee1394/
Dvideo1394.c160 static int free_dma_iso_ctx(struct dma_iso_ctx *d) in free_dma_iso_ctx()
204 struct dma_iso_ctx *d; in alloc_dma_iso_ctx() local
382 static void reset_ir_status(struct dma_iso_ctx *d, int n) in reset_ir_status()
392 static void initialize_dma_ir_prg(struct dma_iso_ctx *d, int n, int flags) in initialize_dma_ir_prg()
450 static void initialize_dma_ir_ctx(struct dma_iso_ctx *d, int tag, int flags) in initialize_dma_ir_ctx()
500 struct dma_iso_ctx *d = (struct dma_iso_ctx *) l; in wakeup_dma_ir_ctx() local
519 static inline void put_timestamp(struct ti_ohci *ohci, struct dma_iso_ctx * d, in put_timestamp()
573 struct dma_iso_ctx *d = (struct dma_iso_ctx *) l; in wakeup_dma_it_ctx() local
595 static void initialize_dma_it_prg(struct dma_iso_ctx *d, int n, int sync_tag) in initialize_dma_it_prg()
647 struct dma_iso_ctx *d, int n, unsigned int * packet_sizes, in initialize_dma_it_prg_var_packet_queue()
[all …]
/linux-2.4.37.9/include/asm-arm/arch-anakin/
Dio.h30 #define __raw_readsb(p,d,l) do { *(int *)0 = 0; } while (0) argument
31 #define __raw_readsl(p,d,l) do { *(int *)0 = 0; } while (0) argument
32 #define __raw_writesb(p,d,l) do { *(int *)0 = 0; } while (0) argument
33 #define __raw_writesl(p,d,l) do { *(int *)0 = 0; } while (0) argument
/linux-2.4.37.9/drivers/net/wan/lmc/
Dlmc_proto.c64 #define SPPP_detach(d) (void)0 argument
65 #define SPPP_open(d) 0 argument
66 #define SPPP_reopen(d) (void)0 argument
67 #define SPPP_close(d) (void)0 argument
68 #define SPPP_attach(d) (void)0 argument
69 #define SPPP_do_ioctl(d,i,c) -EOPNOTSUPP argument
/linux-2.4.37.9/include/asm-arm/arch-clps711x/
Dio.h45 #define __raw_readsb(p,d,l) do { *(int *)0 = 0; } while (0) argument
46 #define __raw_readsl(p,d,l) do { *(int *)0 = 0; } while (0) argument
47 #define __raw_writesb(p,d,l) do { *(int *)0 = 0; } while (0) argument
48 #define __raw_writesl(p,d,l) do { *(int *)0 = 0; } while (0) argument
/linux-2.4.37.9/drivers/video/
Dfbcon-sti.c68 unsigned long d = ram2log(dest); in memcpy_fromhp_tohp() local
86 unsigned long d = ram2log(dest); in memset_tohp() local
109 unsigned long d = ram2log(dst); in writeb_hp() local
195 u8 d; in fbcon_sti_putc() local
222 u8 d; in fbcon_sti_putcs() local
266 u8 *dest, d; in fbcon_sti_revc() local
/linux-2.4.37.9/include/linux/raid/
Dmd_k.h96 static inline int disk_faulty(mdp_disk_t * d) in disk_faulty()
101 static inline int disk_active(mdp_disk_t * d) in disk_active()
106 static inline int disk_sync(mdp_disk_t * d) in disk_sync()
111 static inline int disk_spare(mdp_disk_t * d) in disk_spare()
116 static inline int disk_removed(mdp_disk_t * d) in disk_removed()
121 static inline void mark_disk_faulty(mdp_disk_t * d) in mark_disk_faulty()
126 static inline void mark_disk_active(mdp_disk_t * d) in mark_disk_active()
131 static inline void mark_disk_sync(mdp_disk_t * d) in mark_disk_sync()
136 static inline void mark_disk_spare(mdp_disk_t * d) in mark_disk_spare()
141 static inline void mark_disk_removed(mdp_disk_t * d) in mark_disk_removed()
[all …]
/linux-2.4.37.9/arch/parisc/kernel/
Dlba_pci.c206 #define LBA_TR4PLUS(d) ((d)->hw_rev > 0x4) argument
207 #define LBA_DMA_DURING_CFG_DISABLED(d) ((d)->flags & LBA_FLAG_NO_DMA_DURING_CFG) argument
208 #define LBA_SKIP_PROBE(d) ((d)->flags & LBA_FLAG_SKIP_PROBE) argument
212 #define LBA_DEV(d) ((struct lba_device *) (d)) argument
258 lba_dump_res(struct resource *r, int d) in lba_dump_res()
288 lba_device_present( u8 bus, u8 dfn, struct lba_device *d) in lba_device_present()
327 #define LBA_CFG_SETUP(d, tok) { \ argument
356 #define LBA_CFG_PROBE(d, tok) { \ argument
407 #define LBA_CFG_MASTER_ABORT_CHECK(d, base, tok, error) { \ argument
430 #define LBA_CFG_TR4_ADDR_SETUP(d, addr) \ argument
[all …]
/linux-2.4.37.9/fs/hpfs/
Ddnode.c11 static loff_t get_pos(struct dnode *d, struct hpfs_dirent *fde) in get_pos()
85 void hpfs_pos_ins(loff_t *p, loff_t d, loff_t c) in hpfs_pos_ins()
94 void hpfs_pos_del(loff_t *p, loff_t d, loff_t c) in hpfs_pos_del()
103 static struct hpfs_dirent *dnode_pre_last_de(struct dnode *d) in dnode_pre_last_de()
113 static struct hpfs_dirent *dnode_last_de(struct dnode *d) in dnode_last_de()
123 static void set_last_pointer(struct super_block *s, struct dnode *d, dnode_secno ptr) in set_last_pointer()
155 struct hpfs_dirent *hpfs_add_de(struct super_block *s, struct dnode *d, unsigned char *name, in hpfs_add_de()
186 void hpfs_delete_de(struct super_block *s, struct dnode *d, struct hpfs_dirent *de) in hpfs_delete_de()
196 static void fix_up_ptrs(struct super_block *s, struct dnode *d) in fix_up_ptrs()
222 struct dnode *d, *ad, *rd, *nd = NULL; in hpfs_add_to_dnode() local
[all …]
/linux-2.4.37.9/drivers/message/fusion/
Dmptlan.h79 #define NETDEV_TO_LANPRIV_PTR(d) ((struct mpt_lan_priv *)(d)->priv) argument
80 #define NETDEV_PTR_TO_IOC_NAME_s(d) (NETDEV_TO_LANPRIV_PTR(d)->mpt_dev->name) argument
81 #define IOC_AND_NETDEV_NAMES_s_s(d) NETDEV_PTR_TO_IOC_NAME_s(d), (d)->name argument
/linux-2.4.37.9/arch/i386/math-emu/
Dreg_ld_str.c372 int FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag, long double *d) in FPU_store_extended()
857 int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, long long *d) in FPU_store_int64()
918 int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, long *d) in FPU_store_int32()
975 int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, short *d) in FPU_store_int16()
1032 int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char *d) in FPU_store_bcd()
1294 u_char *fstenv(fpu_addr_modes addr_modes, u_char *d) in fstenv()
1353 u_char *d; in fsave() local

12345678910>>...23