/linux-6.12.1/crypto/ |
D | fcrypt.c | 72 #undef Z 73 #define Z(x) cpu_to_be32(x << 3) macro 75 Z(0xea), Z(0x7f), Z(0xb2), Z(0x64), Z(0x9d), Z(0xb0), Z(0xd9), Z(0x11), 76 Z(0xcd), Z(0x86), Z(0x86), Z(0x91), Z(0x0a), Z(0xb2), Z(0x93), Z(0x06), 77 Z(0x0e), Z(0x06), Z(0xd2), Z(0x65), Z(0x73), Z(0xc5), Z(0x28), Z(0x60), 78 Z(0xf2), Z(0x20), Z(0xb5), Z(0x38), Z(0x7e), Z(0xda), Z(0x9f), Z(0xe3), 79 Z(0xd2), Z(0xcf), Z(0xc4), Z(0x3c), Z(0x61), Z(0xff), Z(0x4a), Z(0x4a), 80 Z(0x35), Z(0xac), Z(0xaa), Z(0x5f), Z(0x2b), Z(0xbb), Z(0xbc), Z(0x53), 81 Z(0x4e), Z(0x9d), Z(0x78), Z(0xa3), Z(0xdc), Z(0x09), Z(0x32), Z(0x10), 82 Z(0xc6), Z(0x6f), Z(0x66), Z(0xd6), Z(0xab), Z(0xa9), Z(0xaf), Z(0xfd), [all …]
|
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-6.12.1/Documentation/userspace-api/media/v4l/ |
D | pixfmt-z16.rst | 32 - Z\ :sub:`00low` 33 - Z\ :sub:`00high` 34 - Z\ :sub:`01low` 35 - Z\ :sub:`01high` 36 - Z\ :sub:`02low` 37 - Z\ :sub:`02high` 38 - Z\ :sub:`03low` 39 - Z\ :sub:`03high` 41 - Z\ :sub:`10low` 42 - Z\ :sub:`10high` [all …]
|
D | fieldseq_tb.svg | 52 …M 0,6000 0,0 l 5660,0 0,6000 -5660,0 z m 4786.76,-102.89 103.92,0 0,56.69 -103.92,0 0,0 85.03,-28.… 57 d="m 379.944,571.287 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 61 d="m 379.944,571.287 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 65 d="m 379.944,562.784 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 69 d="m 379.944,562.784 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 73 d="m 379.944,554.281 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 77 d="m 379.944,554.281 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 81 d="m 379.944,545.778 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 85 d="m 379.944,545.778 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" 89 d="m 379.944,575.539 85.032,0 0,4.25156 -85.032,0 0,-4.25156 z" [all …]
|
D | fieldseq_bt.svg | 52 …M 0,6040 0,0 l 5650,0 0,6040 -5650,0 z m 4786.76,-99.89 103.92,0 0,56.69 -103.92,0 0,0 85.03,-28.3… 57 d="m 188.622,346.001 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" 61 d="m 375.693,346.001 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" 65 d="m 282.157,346.001 93.5355,0 0,42.516 -93.5355,0 0,-42.516 z" 69 d="m 469.228,346.001 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" 73 d="m 95.0867,346.001 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" 77 d="m 1.55156,346.001 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" 81 d="m 95.0867,482.052 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" 85 d="m 469.228,482.052 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" 89 d="m 1.55156,414.027 93.5352,0 0,42.516 -93.5352,0 0,-42.516 z" [all …]
|
/linux-6.12.1/drivers/zorro/ |
D | zorro.c | 55 struct zorro_dev *z; in zorro_find_device() local 60 for (z = from ? from+1 : &zorro_autocon[0]; in zorro_find_device() 61 z < zorro_autocon+zorro_num_autocon; in zorro_find_device() 62 z++) in zorro_find_device() 63 if (id == ZORRO_WILDCARD || id == z->id) in zorro_find_device() 64 return z; in zorro_find_device() 116 struct platform_device *bridge, struct zorro_dev *z) in zorro_find_parent_resource() argument 121 if (resource_contains(&bridge->resource[i], &z->resource)) in zorro_find_parent_resource() 132 struct zorro_dev *z; in amiga_zorro_probe() local 161 z = &zorro_autocon[i]; in amiga_zorro_probe() [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 const struct zorro_dev *z; in zorro_uevent() local [all …]
|
/linux-6.12.1/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 …]
|
/linux-6.12.1/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-6.12.1/Documentation/arch/arm/nwfpe/ |
D | netwinder-fpe.rst | 14 {P|M|Z} = {round to +infinity,round to -infinity,round to zero}, 51 FLT{cond}<S,D,E>{P,M,Z} Fn, Rd Convert integer to floating point 52 FIX{cond}{P,M,Z} Rd, Fn Convert floating point to integer 80 ADF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - add 81 SUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - subtract 82 RSF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse subtract 83 MUF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - multiply 84 DVF{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - divide 85 RDV{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - reverse divide 89 FML{cond}<S|D|E>{P,M,Z} Fd, Fn, <Fm,#value> - fast multiply [all …]
|
/linux-6.12.1/arch/mips/math-emu/ |
D | sp_maddf.c | 15 static union ieee754sp _sp_maddf(union ieee754sp z, union ieee754sp x, in _sp_maddf() argument 46 * Handle the cases when at least one of x, y or z is a NaN. in _sp_maddf() 47 * Order of precedence is sNaN, qNaN and z, x, y. in _sp_maddf() 50 return ieee754sp_nanxcpt(z); in _sp_maddf() 56 return z; in _sp_maddf() 64 /* ZERO z cases are handled separately below */ in _sp_maddf() 91 * z is here either not an infinity, or an infinity having the in _sp_maddf() 111 * such case determined only by the sign of z. in _sp_maddf() 113 return z; in _sp_maddf() 117 /* x*y is here 0, and z is not 0, so just return z */ in _sp_maddf() [all …]
|
D | dp_maddf.c | 40 static union ieee754dp _dp_maddf(union ieee754dp z, union ieee754dp x, in _dp_maddf() argument 78 * Handle the cases when at least one of x, y or z is a NaN. in _dp_maddf() 79 * Order of precedence is sNaN, qNaN and z, x, y. in _dp_maddf() 82 return ieee754dp_nanxcpt(z); in _dp_maddf() 88 return z; in _dp_maddf() 96 /* ZERO z cases are handled separately below */ in _dp_maddf() 122 * z is here either not an infinity, or an infinity having the in _dp_maddf() 142 * such case determined only by the sign of z. in _dp_maddf() 144 return z; in _dp_maddf() 148 /* x*y is here 0, and z is not 0, so just return z */ in _dp_maddf() [all …]
|
/linux-6.12.1/Documentation/networking/ |
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…
|
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…
|
/linux-6.12.1/sound/pci/emu10k1/ |
D | emufx.c | 1280 int err, z, nctl; in _snd_emu10k1_audigy_init_efx() local 1398 for (z = 0; z < SND_EMU10K1_PLAYBACK_CHANNELS + 2; z++) in _snd_emu10k1_audigy_init_efx() 1399 …A_OP(icode, &ptr, iACC3, A_GPR(playback + z), A_GPR(playback + z), A_GPR(playback + z), A_C_000000… in _snd_emu10k1_audigy_init_efx() 1582 for (z = 0; z < 5; z++) { in _snd_emu10k1_audigy_init_efx() 1585 controls[nctl + 0].gpr[z * 2 + j] = bass_gpr + z * 2 + j; in _snd_emu10k1_audigy_init_efx() 1586 controls[nctl + 1].gpr[z * 2 + j] = treble_gpr + z * 2 + j; in _snd_emu10k1_audigy_init_efx() 1596 for (z = 0; z < 4; z++) { /* front/rear/center-lfe/side */ in _snd_emu10k1_audigy_init_efx() 1599 k = bass_tmp + (z * 8) + (j * 4); in _snd_emu10k1_audigy_init_efx() 1600 l = treble_tmp + (z * 8) + (j * 4); in _snd_emu10k1_audigy_init_efx() 1601 d = playback + z * 2 + j; in _snd_emu10k1_audigy_init_efx() [all …]
|
/linux-6.12.1/fs/zonefs/ |
D | super.c | 51 struct zonefs_zone *z) in zonefs_account_active() argument 55 if (zonefs_zone_is_cnv(z)) in zonefs_account_active() 62 if (z->z_flags & (ZONEFS_ZONE_OFFLINE | ZONEFS_ZONE_READONLY)) in zonefs_account_active() 69 if ((z->z_flags & ZONEFS_ZONE_OPEN) || in zonefs_account_active() 70 (z->z_wpoffset > 0 && z->z_wpoffset < z->z_capacity)) { in zonefs_account_active() 71 if (!(z->z_flags & ZONEFS_ZONE_ACTIVE)) { in zonefs_account_active() 72 z->z_flags |= ZONEFS_ZONE_ACTIVE; in zonefs_account_active() 80 if (z->z_flags & ZONEFS_ZONE_ACTIVE) { in zonefs_account_active() 81 z->z_flags &= ~ZONEFS_ZONE_ACTIVE; in zonefs_account_active() 100 struct zonefs_zone *z, enum req_op op) in zonefs_zone_mgmt() argument [all …]
|
/linux-6.12.1/drivers/md/ |
D | dm-zoned.h | 156 #define dmz_is_cache(z) test_bit(DMZ_CACHE, &(z)->flags) argument 157 #define dmz_is_rnd(z) test_bit(DMZ_RND, &(z)->flags) argument 158 #define dmz_is_seq(z) test_bit(DMZ_SEQ, &(z)->flags) argument 159 #define dmz_is_empty(z) ((z)->wp_block == 0) argument 160 #define dmz_is_offline(z) test_bit(DMZ_OFFLINE, &(z)->flags) argument 161 #define dmz_is_readonly(z) test_bit(DMZ_READ_ONLY, &(z)->flags) argument 162 #define dmz_in_reclaim(z) test_bit(DMZ_RECLAIM, &(z)->flags) argument 163 #define dmz_is_reserved(z) test_bit(DMZ_RESERVED, &(z)->flags) argument 164 #define dmz_seq_write_err(z) test_bit(DMZ_SEQ_WRITE_ERR, &(z)->flags) argument 165 #define dmz_reclaim_should_terminate(z) \ argument [all …]
|
/linux-6.12.1/arch/m68k/fpsp040/ |
D | satan.S | 350 |--WHICH IS X + X*Y*( [B1+Z*(B3+Z*B5)] + [Y*(B2+Z*(B4+Z*B6)] ) 351 |--WHERE Y = X*X, AND Z = Y*Y. 362 fmulx %fp1,%fp1 | ...FP1 IS Z = Y*Y 367 fmulx %fp1,%fp2 | ...Z*B6 368 fmulx %fp1,%fp3 | ...Z*B5 370 faddd ATANB4,%fp2 | ...B4+Z*B6 371 faddd ATANB3,%fp3 | ...B3+Z*B5 373 fmulx %fp1,%fp2 | ...Z*(B4+Z*B6) 374 fmulx %fp3,%fp1 | ...Z*(B3+Z*B5) 376 faddd ATANB2,%fp2 | ...B2+Z*(B4+Z*B6) [all …]
|
/linux-6.12.1/lib/raid6/ |
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 | s390vx.uc | 40 #define AND(x, y, z) fpu_vn(x, y, z) 41 #define XOR(x, y, z) fpu_vx(x, y, z) 50 int d, z, z0; 63 for (z = z0 - 1; z >= 0; z--) { 68 LOAD_DATA(16,&dptr[z][d]); 83 int d, z, z0; 97 for (z = z0 - 1; z >= start; z--) { 102 LOAD_DATA(16,&dptr[z][d]); 107 for (z = start - 1; z >= 0; z--) {
|
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 …]
|
/linux-6.12.1/fs/erofs/ |
D | decompressor_deflate.c | 7 struct z_stream_s z; member 36 vfree(strm->z.workspace); in z_erofs_deflate_exit() 78 strm->z.workspace = vmalloc(zlib_inflate_workspacesize()); in z_erofs_load_deflate_config() 79 if (!strm->z.workspace) { in z_erofs_load_deflate_config() 136 zerr = zlib_inflateInit2(&strm->z, -MAX_WBITS); in z_erofs_deflate_decompress() 143 strm->z.avail_in = min(rq->inputsize, PAGE_SIZE - rq->pageofs_in); in z_erofs_deflate_decompress() 144 rq->inputsize -= strm->z.avail_in; in z_erofs_deflate_decompress() 145 strm->z.next_in = dctx.kin + rq->pageofs_in; in z_erofs_deflate_decompress() 146 strm->z.avail_out = 0; in z_erofs_deflate_decompress() 150 dctx.avail_out = strm->z.avail_out; in z_erofs_deflate_decompress() [all …]
|
/linux-6.12.1/net/atm/ |
D | atm_misc.c | 60 * - - z z- x - z z- 63 * - * z z- x * z z- 66 * - y z z- x y z z- 70 * if pcr == z then z-
|
/linux-6.12.1/mm/ |
D | shuffle.c | 80 void __meminit __shuffle_zone(struct zone *z) in __shuffle_zone() argument 83 unsigned long start_pfn = z->zone_start_pfn; in __shuffle_zone() 84 unsigned long end_pfn = zone_end_pfn(z); in __shuffle_zone() 88 spin_lock_irqsave(&z->lock, flags); in __shuffle_zone() 101 page_i = shuffle_valid_page(z, i, order); in __shuffle_zone() 112 j = z->zone_start_pfn + in __shuffle_zone() 113 ALIGN_DOWN(get_random_long() % z->spanned_pages, in __shuffle_zone() 115 page_j = shuffle_valid_page(z, j, order); in __shuffle_zone() 141 spin_unlock_irqrestore(&z->lock, flags); in __shuffle_zone() 143 spin_lock_irqsave(&z->lock, flags); in __shuffle_zone() [all …]
|