/linux-3.3/drivers/zorro/ |
D | zorro-driver.c | 31 const struct zorro_dev *z) in zorro_match_device() 47 struct zorro_dev *z = to_zorro_dev(dev); in zorro_device_probe() local 66 struct zorro_dev *z = to_zorro_dev(dev); in zorro_device_remove() local 128 struct zorro_dev *z = to_zorro_dev(dev); in zorro_bus_match() local 146 struct zorro_dev *z; in zorro_uevent() local
|
D | zorro-sysfs.c | 42 struct zorro_dev *z = to_zorro_dev(dev); in zorro_show_resource() local 56 struct zorro_dev *z = to_zorro_dev(container_of(kobj, struct device, in zorro_read_config() local 83 struct zorro_dev *z = to_zorro_dev(dev); in modalias_show() local 90 int zorro_create_sysfs_dev_files(struct zorro_dev *z) in zorro_create_sysfs_dev_files()
|
D | zorro.c | 51 struct zorro_dev *z; in zorro_find_device() local 111 struct platform_device *bridge, struct zorro_dev *z) in zorro_find_parent_resource() 129 struct zorro_dev *z; in amiga_zorro_probe() local
|
/linux-3.3/lib/ |
D | md5.c | 5 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument 6 #define F2(x, y, z) F1(z, x, y) argument 7 #define F3(x, y, z) (x ^ y ^ z) argument 8 #define F4(x, y, z) (y ^ (x | ~z)) argument 10 #define MD5STEP(f, w, x, y, z, in, s) \ argument
|
D | halfmd4.c | 6 #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument 7 #define G(x, y, z) (((x) & (y)) + (((x) ^ (y)) & (z))) argument 8 #define H(x, y, z) ((x) ^ (y) ^ (z)) argument
|
/linux-3.3/drivers/net/wan/lmc/ |
D | lmc_debug.h | 6 #define LMC_CONSOLE_LOG(x,y,z) lmcConsoleLog((x), (y), (z)) argument 8 #define LMC_CONSOLE_LOG(x,y,z) argument 11 #define LMC_CONSOLE_LOG(x,y,z) argument 43 #define LMC_EVENT_LOG(x, y, z) lmcEventLog((x), (y), (z)) argument 45 #define LMC_EVENT_LOG(x,y,z) argument
|
/linux-3.3/include/linux/ |
D | zorro.h | 171 static inline struct zorro_driver *zorro_dev_driver(const struct zorro_dev *z) in zorro_dev_driver() 188 #define zorro_resource_start(z) ((z)->resource.start) argument 189 #define zorro_resource_end(z) ((z)->resource.end) argument 190 #define zorro_resource_len(z) (resource_size(&(z)->resource)) argument 191 #define zorro_resource_flags(z) ((z)->resource.flags) argument 193 #define zorro_request_device(z, name) \ argument 195 #define zorro_release_device(z) \ argument 202 static inline void *zorro_get_drvdata (struct zorro_dev *z) in zorro_get_drvdata() 207 static inline void zorro_set_drvdata (struct zorro_dev *z, void *data) in zorro_set_drvdata()
|
D | cpuset.h | 46 static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask) in cpuset_zone_allowed_softwall() 51 static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask) in cpuset_zone_allowed_hardwall() 176 static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask) in cpuset_zone_allowed_softwall() 181 static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask) in cpuset_zone_allowed_hardwall()
|
/linux-3.3/crypto/ |
D | tea.c | 64 u32 y, z, n, sum = 0; in tea_encrypt() local 92 u32 y, z, n, sum; in tea_decrypt() local 137 u32 y, z, sum = 0; in xtea_encrypt() local 158 u32 y, z, sum; in xtea_decrypt() local 181 u32 y, z, sum = 0; in xeta_encrypt() local 202 u32 y, z, sum; in xeta_decrypt() local
|
D | rmd320.c | 42 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument 43 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument 44 #define F3(x, y, z) ((x | ~y) ^ z) argument 45 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument 46 #define F5(x, y, z) (x ^ (y | ~z)) argument
|
D | rmd160.c | 42 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument 43 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument 44 #define F3(x, y, z) ((x | ~y) ^ z) argument 45 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument 46 #define F5(x, y, z) (x ^ (y | ~z)) argument
|
D | rmd128.c | 40 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument 41 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument 42 #define F3(x, y, z) ((x | ~y) ^ z) argument 43 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument
|
D | rmd256.c | 40 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument 41 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument 42 #define F3(x, y, z) ((x | ~y) ^ z) argument 43 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument
|
D | md4.c | 48 static inline u32 F(u32 x, u32 y, u32 z) in F() 53 static inline u32 G(u32 x, u32 y, u32 z) in G() 58 static inline u32 H(u32 x, u32 y, u32 z) in H()
|
/linux-3.3/lib/raid6/ |
D | sse2.c | 47 int d, z, z0; in raid6_sse21_gen_syndrome() local 107 int d, z, z0; in raid6_sse22_gen_syndrome() local 173 int d, z, z0; in raid6_sse24_gen_syndrome() local
|
D | sse1.c | 49 int d, z, z0; in raid6_sse11_gen_syndrome() local 107 int d, z, z0; in raid6_sse12_gen_syndrome() local
|
D | mmx.c | 44 int d, z, z0; in raid6_mmx1_gen_syndrome() local 91 int d, z, z0; in raid6_mmx2_gen_syndrome() local
|
/linux-3.3/arch/alpha/lib/ |
D | csum_partial_copy.c | 23 #define extql(x,y,z) \ argument 26 #define extqh(x,y,z) \ argument 29 #define mskql(x,y,z) \ argument 32 #define mskqh(x,y,z) \ argument 35 #define insql(x,y,z) \ argument 38 #define insqh(x,y,z) \ argument
|
/linux-3.3/arch/x86/math-emu/ |
D | fpu_system.h | 65 #define FPU_access_ok(x,y,z) if ( !access_ok(x,y,z) ) \ argument 75 #define FPU_code_access_ok(z) argument 80 #define FPU_code_access_ok(z) FPU_access_ok(VERIFY_READ,(void __user *)FPU_EIP,z) argument
|
/linux-3.3/drivers/scsi/ |
D | zorro7xx.c | 74 static int __devinit zorro7xx_init_one(struct zorro_dev *z, in zorro7xx_init_one() 153 static __devexit void zorro7xx_remove_one(struct zorro_dev *z) in zorro7xx_remove_one()
|
D | eata_pio.c | 201 unsigned int x, z; in eata_pio_int_handler() local 552 int z; in get_pio_board_data() local 602 int z; in get_pio_conf_PIO() local 669 int z; in print_selftest() local
|
/linux-3.3/drivers/macintosh/ams/ |
D | ams-input.c | 35 s8 x, y, z; in ams_idev_poll() local 58 s8 x, y, z; in ams_input_enable() local
|
D | ams-core.c | 39 void ams_sensors(s8 *x, s8 *y, s8 *z) in ams_sensors() 60 s8 x, y, z; in ams_show_current() local
|
/linux-3.3/drivers/net/ethernet/natsemi/ |
D | ibmlana.c | 121 int z; in dumpregs() local 137 int z; in dumpmem() local 237 int z; in InitDscrs() local 458 int z; in InitBoard() local 923 int slot = mdev->slot, z, rc; in ibmlana_init_one() local
|
/linux-3.3/drivers/net/ethernet/8390/ |
D | hydra.c | 83 static int __devinit hydra_init_one(struct zorro_dev *z, in hydra_init_one() 113 static int __devinit hydra_init(struct zorro_dev *z) in hydra_init() 250 static void __devexit hydra_remove_one(struct zorro_dev *z) in hydra_remove_one()
|