/Linux-v5.15/lib/raid6/ |
D | avx2.c | 38 int d, z, z0; in raid6_avx21_gen_syndrome() local 55 for (z = z0-2; z >= 0; z--) { in raid6_avx21_gen_syndrome() 56 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_avx21_gen_syndrome() 63 asm volatile("vmovdqa %0,%%ymm6" : : "m" (dptr[z][d])); in raid6_avx21_gen_syndrome() 87 int d, z, z0; in raid6_avx21_xor_syndrome() local 102 for (z = z0-1 ; z >= start ; z--) { in raid6_avx21_xor_syndrome() 108 asm volatile("vmovdqa %0,%%ymm5" :: "m" (dptr[z][d])); in raid6_avx21_xor_syndrome() 113 for (z = start-1 ; z >= 0 ; z--) { in raid6_avx21_xor_syndrome() 145 int d, z, z0; in raid6_avx22_gen_syndrome() local 164 for (z = z0-1; z >= 0; z--) { in raid6_avx22_gen_syndrome() [all …]
|
D | sse2.c | 40 int d, z, z0; in raid6_sse21_gen_syndrome() local 57 for ( z = z0-2 ; z >= 0 ; z-- ) { in raid6_sse21_gen_syndrome() 58 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_sse21_gen_syndrome() 66 asm volatile("movdqa %0,%%xmm6" : : "m" (dptr[z][d])); in raid6_sse21_gen_syndrome() 92 int d, z, z0; in raid6_sse21_xor_syndrome() local 107 for ( z = z0-1 ; z >= start ; z-- ) { in raid6_sse21_xor_syndrome() 113 asm volatile("movdqa %0,%%xmm5" :: "m" (dptr[z][d])); in raid6_sse21_xor_syndrome() 118 for ( z = start-1 ; z >= 0 ; z-- ) { in raid6_sse21_xor_syndrome() 150 int d, z, z0; in raid6_sse22_gen_syndrome() local 169 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_sse22_gen_syndrome() [all …]
|
D | avx512.c | 48 int d, z, z0; in raid6_avx5121_gen_syndrome() local 69 for (z = z0-2; z >= 0; z--) { in raid6_avx5121_gen_syndrome() 80 : "m" (dptr[z][d])); in raid6_avx5121_gen_syndrome() 106 int d, z, z0; in raid6_avx5121_xor_syndrome() local 124 for (z = z0-1 ; z >= start ; z--) { in raid6_avx5121_xor_syndrome() 135 : "m" (dptr[z][d])); in raid6_avx5121_xor_syndrome() 138 for (z = start-1 ; z >= 0 ; z--) { in raid6_avx5121_xor_syndrome() 175 int d, z, z0; in raid6_avx5122_gen_syndrome() local 198 for (z = z0-1; z >= 0; z--) { in raid6_avx5122_gen_syndrome() 218 : "m" (dptr[z][d]), "m" (dptr[z][d+64])); in raid6_avx5122_gen_syndrome() [all …]
|
D | sse1.c | 44 int d, z, z0; in raid6_sse11_gen_syndrome() local 61 for ( z = z0-2 ; z >= 0 ; z-- ) { in raid6_sse11_gen_syndrome() 62 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_sse11_gen_syndrome() 70 asm volatile("movq %0,%%mm6" : : "m" (dptr[z][d])); in raid6_sse11_gen_syndrome() 103 int d, z, z0; in raid6_sse12_gen_syndrome() local 122 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_sse12_gen_syndrome() 123 asm volatile("prefetchnta %0" : : "m" (dptr[z][d])); in raid6_sse12_gen_syndrome() 132 asm volatile("movq %0,%%mm5" : : "m" (dptr[z][d])); in raid6_sse12_gen_syndrome() 133 asm volatile("movq %0,%%mm7" : : "m" (dptr[z][d+8])); in raid6_sse12_gen_syndrome()
|
D | mmx.c | 39 int d, z, z0; in raid6_mmx1_gen_syndrome() local 53 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_mmx1_gen_syndrome() 54 asm volatile("movq %0,%%mm6" : : "m" (dptr[z][d])); in raid6_mmx1_gen_syndrome() 87 int d, z, z0; in raid6_mmx2_gen_syndrome() local 104 for ( z = z0-1 ; z >= 0 ; z-- ) { in raid6_mmx2_gen_syndrome() 113 asm volatile("movq %0,%%mm5" : : "m" (dptr[z][d])); in raid6_mmx2_gen_syndrome() 114 asm volatile("movq %0,%%mm7" : : "m" (dptr[z][d+8])); in raid6_mmx2_gen_syndrome()
|
D | s390vx.uc | 48 static inline void AND(int x, int y, int z) 50 asm volatile ("VN %0,%1,%2" : : "i" (x), "i" (y), "i" (z)); 53 static inline void XOR(int x, int y, int z) 55 asm volatile ("VX %0,%1,%2" : : "i" (x), "i" (y), "i" (z)); 87 int d, z, z0; 100 for (z = z0 - 1; z >= 0; z--) { 105 LOAD_DATA(16,&dptr[z][d]); 120 int d, z, z0; 134 for (z = z0 - 1; z >= start; z--) { 139 LOAD_DATA(16,&dptr[z][d]); [all …]
|
/Linux-v5.15/drivers/zorro/ |
D | zorro.c | 54 struct zorro_dev *z; in zorro_find_device() local 59 for (z = from ? from+1 : &zorro_autocon[0]; in zorro_find_device() 60 z < zorro_autocon+zorro_num_autocon; in zorro_find_device() 61 z++) in zorro_find_device() 62 if (id == ZORRO_WILDCARD || id == z->id) in zorro_find_device() 63 return z; in zorro_find_device() 115 struct platform_device *bridge, struct zorro_dev *z) in zorro_find_parent_resource() argument 122 if (zorro_resource_start(z) >= r->start && in zorro_find_parent_resource() 123 zorro_resource_end(z) <= r->end) in zorro_find_parent_resource() 135 struct zorro_dev *z; in amiga_zorro_probe() local [all …]
|
D | zorro-sysfs.c | 29 struct zorro_dev *z; \ 31 z = to_zorro_dev(dev); \ 32 return sprintf(buf, format_string, z->field); \ 44 struct zorro_dev *z; in serial_show() local 46 z = to_zorro_dev(dev); in serial_show() 47 return sprintf(buf, "0x%08x\n", be32_to_cpu(z->rom.er_SerialNumber)); in serial_show() 54 struct zorro_dev *z = to_zorro_dev(dev); in resource_show() local 57 (unsigned long)zorro_resource_start(z), in resource_show() 58 (unsigned long)zorro_resource_end(z), in resource_show() 59 zorro_resource_flags(z)); in resource_show() [all …]
|
D | zorro-driver.c | 33 const struct zorro_dev *z) in zorro_match_device() argument 36 if (ids->id == ZORRO_WILDCARD || ids->id == z->id) in zorro_match_device() 48 struct zorro_dev *z = to_zorro_dev(dev); in zorro_device_probe() local 53 id = zorro_match_device(drv->id_table, z); in zorro_device_probe() 55 error = drv->probe(z, id); in zorro_device_probe() 65 struct zorro_dev *z = to_zorro_dev(dev); in zorro_device_remove() local 69 drv->remove(z); in zorro_device_remove() 123 struct zorro_dev *z = to_zorro_dev(dev); in zorro_bus_match() local 130 return !!zorro_match_device(ids, z); in zorro_bus_match() 135 struct zorro_dev *z; in zorro_uevent() local [all …]
|
D | proc.c | 33 struct zorro_dev *z = PDE_DATA(file_inode(file)); in proc_bus_zorro_read() local 46 cd.cd_Rom = z->rom; in proc_bus_zorro_read() 47 cd.cd_SlotAddr = cpu_to_be16(z->slotaddr); in proc_bus_zorro_read() 48 cd.cd_SlotSize = cpu_to_be16(z->slotsize); in proc_bus_zorro_read() 49 cd.cd_BoardAddr = cpu_to_be32(zorro_resource_start(z)); in proc_bus_zorro_read() 50 cd.cd_BoardSize = cpu_to_be32(zorro_resource_len(z)); in proc_bus_zorro_read() 82 struct zorro_dev *z = &zorro_autocon[slot]; in zorro_seq_show() local 84 seq_printf(m, "%02x\t%08x\t%08lx\t%08lx\t%02x\n", slot, z->id, in zorro_seq_show() 85 (unsigned long)zorro_resource_start(z), in zorro_seq_show() 86 (unsigned long)zorro_resource_len(z), in zorro_seq_show() [all …]
|
/Linux-v5.15/include/linux/ |
D | zorro.h | 50 int (*probe)(struct zorro_dev *z, const struct zorro_device_id *id); /* New device inserted */ 51 … void (*remove)(struct zorro_dev *z); /* Device removed (NULL if not a hot-plug capable driver) */ 94 #define zorro_resource_start(z) ((z)->resource.start) argument 95 #define zorro_resource_end(z) ((z)->resource.end) argument 96 #define zorro_resource_len(z) (resource_size(&(z)->resource)) argument 97 #define zorro_resource_flags(z) ((z)->resource.flags) argument 99 #define zorro_request_device(z, name) \ argument 100 request_mem_region(zorro_resource_start(z), zorro_resource_len(z), name) 101 #define zorro_release_device(z) \ argument 102 release_mem_region(zorro_resource_start(z), zorro_resource_len(z)) [all …]
|
D | mmzone.h | 354 #define min_wmark_pages(z) (z->_watermark[WMARK_MIN] + z->watermark_boost) argument 355 #define low_wmark_pages(z) (z->_watermark[WMARK_LOW] + z->watermark_boost) argument 356 #define high_wmark_pages(z) (z->_watermark[WMARK_HIGH] + z->watermark_boost) argument 357 #define wmark_pages(z, i) (z->_watermark[i] + z->watermark_boost) argument 932 bool __zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark, 935 bool zone_watermark_ok(struct zone *z, unsigned int order, 938 bool zone_watermark_ok_safe(struct zone *z, unsigned int order, 1134 struct zoneref *__next_zones_zonelist(struct zoneref *z, 1153 static __always_inline struct zoneref *next_zones_zonelist(struct zoneref *z, in next_zones_zonelist() argument 1157 if (likely(!nodes && zonelist_zone_idx(z) <= highest_zoneidx)) in next_zones_zonelist() [all …]
|
/Linux-v5.15/crypto/ |
D | tea.c | 59 u32 y, z, n, sum = 0; in tea_encrypt() local 66 z = le32_to_cpu(in[1]); in tea_encrypt() 77 y += ((z << 4) + k0) ^ (z + sum) ^ ((z >> 5) + k1); in tea_encrypt() 78 z += ((y << 4) + k2) ^ (y + sum) ^ ((y >> 5) + k3); in tea_encrypt() 82 out[1] = cpu_to_le32(z); in tea_encrypt() 87 u32 y, z, n, sum; in tea_decrypt() local 94 z = le32_to_cpu(in[1]); in tea_decrypt() 106 z -= ((y << 4) + k2) ^ (y + sum) ^ ((y >> 5) + k3); in tea_decrypt() 107 y -= ((z << 4) + k0) ^ (z + sum) ^ ((z >> 5) + k1); in tea_decrypt() 112 out[1] = cpu_to_le32(z); in tea_decrypt() [all …]
|
/Linux-v5.15/drivers/md/ |
D | dm-zoned.h | 157 #define dmz_is_cache(z) test_bit(DMZ_CACHE, &(z)->flags) argument 158 #define dmz_is_rnd(z) test_bit(DMZ_RND, &(z)->flags) argument 159 #define dmz_is_seq(z) test_bit(DMZ_SEQ, &(z)->flags) argument 160 #define dmz_is_empty(z) ((z)->wp_block == 0) argument 161 #define dmz_is_offline(z) test_bit(DMZ_OFFLINE, &(z)->flags) argument 162 #define dmz_is_readonly(z) test_bit(DMZ_READ_ONLY, &(z)->flags) argument 163 #define dmz_in_reclaim(z) test_bit(DMZ_RECLAIM, &(z)->flags) argument 164 #define dmz_is_reserved(z) test_bit(DMZ_RESERVED, &(z)->flags) argument 165 #define dmz_seq_write_err(z) test_bit(DMZ_SEQ_WRITE_ERR, &(z)->flags) argument 166 #define dmz_reclaim_should_terminate(z) \ argument [all …]
|
/Linux-v5.15/mm/ |
D | shuffle.c | 81 void __meminit __shuffle_zone(struct zone *z) in __shuffle_zone() argument 84 unsigned long start_pfn = z->zone_start_pfn; in __shuffle_zone() 85 unsigned long end_pfn = zone_end_pfn(z); in __shuffle_zone() 89 spin_lock_irqsave(&z->lock, flags); in __shuffle_zone() 102 page_i = shuffle_valid_page(z, i, order); in __shuffle_zone() 113 j = z->zone_start_pfn + in __shuffle_zone() 114 ALIGN_DOWN(get_random_long() % z->spanned_pages, in __shuffle_zone() 116 page_j = shuffle_valid_page(z, j, order); in __shuffle_zone() 142 spin_unlock_irqrestore(&z->lock, flags); in __shuffle_zone() 144 spin_lock_irqsave(&z->lock, flags); in __shuffle_zone() [all …]
|
/Linux-v5.15/Documentation/networking/ |
D | tls-offload-reorder-bad.svg | 1 …z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0…
|
D | tls-offload-reorder-good.svg | 1 …z" clip-rule="nonzero"/></clipPath><g clip-path="url(#p.0)"><path fill="#000000" fill-opacity="0.0…
|
/Linux-v5.15/sound/pci/emu10k1/ |
D | emufx.c | 1216 int err, i, z, gpr, nctl; in _snd_emu10k1_audigy_init_efx() local 1517 for (z = 0; z < 5; z++) { in _snd_emu10k1_audigy_init_efx() 1520 controls[nctl + 0].gpr[z * 2 + j] = BASS_GPR + z * 2 + j; in _snd_emu10k1_audigy_init_efx() 1521 controls[nctl + 1].gpr[z * 2 + j] = TREBLE_GPR + z * 2 + j; in _snd_emu10k1_audigy_init_efx() 1524 for (z = 0; z < 4; z++) { /* front/rear/center-lfe/side */ in _snd_emu10k1_audigy_init_efx() 1527 k = 0xb0 + (z * 8) + (j * 4); in _snd_emu10k1_audigy_init_efx() 1528 l = 0xe0 + (z * 8) + (j * 4); in _snd_emu10k1_audigy_init_efx() 1529 d = playback + SND_EMU10K1_PLAYBACK_CHANNELS + z * 2 + j; in _snd_emu10k1_audigy_init_efx() 1547 if (z == 2) /* center */ in _snd_emu10k1_audigy_init_efx() 1556 for (z = 0; z < 8; z++) { in _snd_emu10k1_audigy_init_efx() [all …]
|
/Linux-v5.15/drivers/i2c/busses/ |
D | i2c-icy.c | 121 static int icy_probe(struct zorro_dev *z, in icy_probe() argument 131 i2c = devm_kzalloc(&z->dev, sizeof(*i2c), GFP_KERNEL); in icy_probe() 135 algo_data = devm_kzalloc(&z->dev, sizeof(*algo_data), GFP_KERNEL); in icy_probe() 139 dev_set_drvdata(&z->dev, i2c); in icy_probe() 140 i2c->adapter.dev.parent = &z->dev; in icy_probe() 147 if (!devm_request_mem_region(&z->dev, in icy_probe() 148 z->resource.start, in icy_probe() 153 i2c->reg_s0 = ZTWO_VADDR(z->resource.start); in icy_probe() 154 i2c->reg_s1 = ZTWO_VADDR(z->resource.start + 2); in icy_probe() 164 dev_err(&z->dev, "i2c_pcf_add_bus() failed\n"); in icy_probe() [all …]
|
/Linux-v5.15/arch/mips/math-emu/ |
D | sp_maddf.c | 15 static union ieee754sp _sp_maddf(union ieee754sp z, union ieee754sp x, in _sp_maddf() argument 50 return ieee754sp_nanxcpt(z); in _sp_maddf() 56 return z; in _sp_maddf() 113 return z; in _sp_maddf() 118 return z; in _sp_maddf() 244 union ieee754sp ieee754sp_maddf(union ieee754sp z, union ieee754sp x, in ieee754sp_maddf() argument 247 return _sp_maddf(z, x, y, 0); in ieee754sp_maddf() 250 union ieee754sp ieee754sp_msubf(union ieee754sp z, union ieee754sp x, in ieee754sp_msubf() argument 253 return _sp_maddf(z, x, y, MADDF_NEGATE_PRODUCT); in ieee754sp_msubf() 256 union ieee754sp ieee754sp_madd(union ieee754sp z, union ieee754sp x, in ieee754sp_madd() argument [all …]
|
D | dp_maddf.c | 40 static union ieee754dp _dp_maddf(union ieee754dp z, union ieee754dp x, in _dp_maddf() argument 82 return ieee754dp_nanxcpt(z); in _dp_maddf() 88 return z; in _dp_maddf() 144 return z; in _dp_maddf() 149 return z; in _dp_maddf() 324 union ieee754dp ieee754dp_maddf(union ieee754dp z, union ieee754dp x, in ieee754dp_maddf() argument 327 return _dp_maddf(z, x, y, 0); in ieee754dp_maddf() 330 union ieee754dp ieee754dp_msubf(union ieee754dp z, union ieee754dp x, in ieee754dp_msubf() argument 333 return _dp_maddf(z, x, y, MADDF_NEGATE_PRODUCT); in ieee754dp_msubf() 336 union ieee754dp ieee754dp_madd(union ieee754dp z, union ieee754dp x, in ieee754dp_madd() argument [all …]
|
/Linux-v5.15/Documentation/devicetree/bindings/iio/accel/ |
D | lis302.txt | 23 - st,click-single-{x,y,z}: if present, tells the device to issue an 25 x/y/z axis. 26 - st,click-double-{x,y,z}: if present, tells the device to issue an 28 x/y/z axis. 29 - st,click-thresh-{x,y,z}: set the x/y/z axis threshold 47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for 50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for 59 - st,axis-{x,y,z}=: set the axis to map to the three coordinates. 61 - st,{min,max}-limit-{x,y,z} set the min/max limits for x/y/z axis 76 st,click-single-z; [all …]
|
/Linux-v5.15/drivers/ata/ |
D | pata_buddha.c | 150 static int pata_buddha_probe(struct zorro_dev *z, in pata_buddha_probe() argument 164 dev_info(&z->dev, "%s IDE controller\n", board_name[type]); in pata_buddha_probe() 166 board = z->resource.start; in pata_buddha_probe() 169 if (!devm_request_mem_region(&z->dev, in pata_buddha_probe() 174 if (!devm_request_mem_region(&z->dev, in pata_buddha_probe() 178 if (!devm_request_mem_region(&z->dev, in pata_buddha_probe() 186 old_drvdata = dev_get_drvdata(&z->dev); in pata_buddha_probe() 189 host = ata_host_alloc(&z->dev, nr_ports); in pata_buddha_probe() 191 dev_set_drvdata(&z->dev, old_drvdata); in pata_buddha_probe() 249 static void pata_buddha_remove(struct zorro_dev *z) in pata_buddha_remove() argument [all …]
|
/Linux-v5.15/drivers/net/wan/lmc/ |
D | lmc_debug.h | 7 #define LMC_CONSOLE_LOG(x,y,z) lmcConsoleLog((x), (y), (z)) argument 9 #define LMC_CONSOLE_LOG(x,y,z) argument 12 #define LMC_CONSOLE_LOG(x,y,z) argument 44 #define LMC_EVENT_LOG(x, y, z) lmcEventLog((x), (y), (z)) argument 46 #define LMC_EVENT_LOG(x,y,z) argument
|
/Linux-v5.15/drivers/scsi/ |
D | zorro7xx.c | 75 static int zorro7xx_init_one(struct zorro_dev *z, in zorro7xx_init_one() argument 83 board = zorro_resource_start(z); in zorro7xx_init_one() 92 if (!zorro_request_device(z, zdd->name)) { in zorro7xx_init_one() 106 hostdata->base = ioremap(ioaddr, zorro_resource_len(z)); in zorro7xx_init_one() 120 &z->dev); in zorro7xx_init_one() 137 zorro_set_drvdata(z, host); in zorro7xx_init_one() 149 zorro_release_device(z); in zorro7xx_init_one() 154 static void zorro7xx_remove_one(struct zorro_dev *z) in zorro7xx_remove_one() argument 156 struct Scsi_Host *host = zorro_get_drvdata(z); in zorro7xx_remove_one() 164 zorro_release_device(z); in zorro7xx_remove_one()
|