/linux-6.12.1/crypto/ |
D | wp512.c | 30 #define WP384_DIGEST_SIZE 48 784 u64 K[8]; /* the round key */ in wp512_process_buffer() local 793 state[0] = block[0] ^ (K[0] = wctx->hash[0]); in wp512_process_buffer() 794 state[1] = block[1] ^ (K[1] = wctx->hash[1]); in wp512_process_buffer() 795 state[2] = block[2] ^ (K[2] = wctx->hash[2]); in wp512_process_buffer() 796 state[3] = block[3] ^ (K[3] = wctx->hash[3]); in wp512_process_buffer() 797 state[4] = block[4] ^ (K[4] = wctx->hash[4]); in wp512_process_buffer() 798 state[5] = block[5] ^ (K[5] = wctx->hash[5]); in wp512_process_buffer() 799 state[6] = block[6] ^ (K[6] = wctx->hash[6]); in wp512_process_buffer() 800 state[7] = block[7] ^ (K[7] = wctx->hash[7]); in wp512_process_buffer() [all …]
|
D | sm3.c | 15 static const u32 ____cacheline_aligned K[64] = { variable 85 R1(a, b, c, d, e, f, g, h, K[0], I(0), I(4)); in sm3_transform() 86 R1(d, a, b, c, h, e, f, g, K[1], I(1), I(5)); in sm3_transform() 87 R1(c, d, a, b, g, h, e, f, K[2], I(2), I(6)); in sm3_transform() 88 R1(b, c, d, a, f, g, h, e, K[3], I(3), I(7)); in sm3_transform() 89 R1(a, b, c, d, e, f, g, h, K[4], W1(4), I(8)); in sm3_transform() 90 R1(d, a, b, c, h, e, f, g, K[5], W1(5), I(9)); in sm3_transform() 91 R1(c, d, a, b, g, h, e, f, K[6], W1(6), I(10)); in sm3_transform() 92 R1(b, c, d, a, f, g, h, e, K[7], W1(7), I(11)); in sm3_transform() 93 R1(a, b, c, d, e, f, g, h, K[8], W1(8), I(12)); in sm3_transform() [all …]
|
/linux-6.12.1/tools/perf/Documentation/ |
D | security.txt | 15 1. Download selinux-policy SRPM package (e.g. selinux-policy-3.14.4-48.fc31.src.rpm on FC31) 18 # rpm -Uhv selinux-policy-3.14.4-48.fc31.src.rpm 77 drwxr-xr-x. 2 root root 4.0K Mar 20 12:16 . 78 drwxr-xr-x. 3 root root 4.0K Mar 20 12:16 .. 79 -rw-r--r--. 1 root root 112K Mar 20 12:16 selinux-policy-3.14.4-48.fc31.noarch.rpm 80 -rw-r--r--. 1 root root 1.2M Mar 20 12:17 selinux-policy-devel-3.14.4-48.fc31.noarch.rpm 81 -rw-r--r--. 1 root root 2.3M Mar 20 12:17 selinux-policy-doc-3.14.4-48.fc31.noarch.rpm 82 -rw-r--r--. 1 root root 12M Mar 20 12:17 selinux-policy-minimum-3.14.4-48.fc31.noarch.rpm 83 -rw-r--r--. 1 root root 4.5M Mar 20 12:16 selinux-policy-mls-3.14.4-48.fc31.noarch.rpm 84 -rw-r--r--. 1 root root 111K Mar 20 12:16 selinux-policy-sandbox-3.14.4-48.fc31.noarch.rpm [all …]
|
/linux-6.12.1/arch/loongarch/lib/ |
D | xor_simd.c | 23 #define XOR(dj, k) "vxor.v $vr" #dj ", $vr" #dj ", $vr" #k "\n\t" argument 29 LD(3, base, 48) 35 LD(7, base, 48) \ 45 ST(3, base, 48) 66 #define XOR(dj, k) "xvxor.v $xr" #dj ", $xr" #dj ", $xr" #k "\n\t" argument
|
/linux-6.12.1/fs/bcachefs/ |
D | alloc_background.h | 27 return (bucket.inode << 48) | bucket.offset; in bucket_to_u64() 32 return POS(bucket >> 48, bucket & ~(~0ULL << 48)); in u64_to_bucket() 216 set_bkey_val_u64s(&a->k, alloc_v4_u64s(&a->v)); in set_alloc_v4_u64s() 227 static inline const struct bch_alloc_v4 *bch2_alloc_to_v4(struct bkey_s_c k, struct bch_alloc_v4 *c… in bch2_alloc_to_v4() argument 231 if (unlikely(k.k->type != KEY_TYPE_alloc_v4)) in bch2_alloc_to_v4() 234 ret = bkey_s_c_to_alloc_v4(k).v; in bch2_alloc_to_v4() 240 __bch2_alloc_to_v4(k, convert); in bch2_alloc_to_v4() 281 .min_val_size = 48, \ 295 static inline bool bkey_is_alloc(const struct bkey *k) in bkey_is_alloc() argument 297 return k->type == KEY_TYPE_alloc || in bkey_is_alloc() [all …]
|
/linux-6.12.1/drivers/md/dm-vdo/ |
D | murmurhash3.c | 22 static __always_inline u64 fmix64(u64 k) in fmix64() argument 24 k ^= k >> 33; in fmix64() 25 k *= 0xff51afd7ed558ccdLLU; in fmix64() 26 k ^= k >> 33; in fmix64() 27 k *= 0xc4ceb9fe1a85ec53LLU; in fmix64() 28 k ^= k >> 33; in fmix64() 30 return k; in fmix64() 85 k2 ^= ((u64)tail[14]) << 48; in murmurhash3_128() 114 k1 ^= ((u64)tail[6]) << 48; in murmurhash3_128()
|
/linux-6.12.1/Documentation/admin-guide/ |
D | devices.txt | 61 4 = /dev/fd?d360 5.25" 360K in a 360K drive(1) 62 20 = /dev/fd?h360 5.25" 360K in a 1200K drive(1) 63 48 = /dev/fd?h410 5.25" 410K in a 1200K drive 64 64 = /dev/fd?h420 5.25" 420K in a 1200K drive 65 24 = /dev/fd?h720 5.25" 720K in a 1200K drive 66 80 = /dev/fd?h880 5.25" 880K in a 1200K drive(1) 67 8 = /dev/fd?h1200 5.25" 1200K in a 1200K drive(1) 68 40 = /dev/fd?h1440 5.25" 1440K in a 1200K drive(1) 69 56 = /dev/fd?h1476 5.25" 1476K in a 1200K drive 70 72 = /dev/fd?h1494 5.25" 1494K in a 1200K drive [all …]
|
/linux-6.12.1/Documentation/networking/device_drivers/atm/ |
D | iphase.rst | 24 - Supports 4K VCs for the server board (with 512K control memory) and 1K 25 VCs for the client board (with 128K control memory). 31 including x575 (OC3, control memory 128K , 512K and packet memory 128K, 32 512K and 1M), x525 (UTP25) and x531 (DS3 and E3). See 93 The (i)Chip boards have 3 different packet RAM size variants: 128K, 512K and 101 128K 64K 64K 10K 10K 6 6 102 512K 256K 256K 10K 10K 25 25 103 1M 512K 512K 10K 10K 51 51 115 - RX_SIZE = size of receive buffers in the range (48-64K) 117 - TX_SIZE = size of transmit buffers in the range (48-64K)
|
/linux-6.12.1/tools/testing/selftests/kvm/lib/ |
D | kvm_util.c | 204 [VM_MODE_P52V48_4K] = "PA-bits:52, VA-bits:48, 4K pages", in vm_guest_mode_string() 205 [VM_MODE_P52V48_16K] = "PA-bits:52, VA-bits:48, 16K pages", in vm_guest_mode_string() 206 [VM_MODE_P52V48_64K] = "PA-bits:52, VA-bits:48, 64K pages", in vm_guest_mode_string() 207 [VM_MODE_P48V48_4K] = "PA-bits:48, VA-bits:48, 4K pages", in vm_guest_mode_string() 208 [VM_MODE_P48V48_16K] = "PA-bits:48, VA-bits:48, 16K pages", in vm_guest_mode_string() 209 [VM_MODE_P48V48_64K] = "PA-bits:48, VA-bits:48, 64K pages", in vm_guest_mode_string() 210 [VM_MODE_P40V48_4K] = "PA-bits:40, VA-bits:48, 4K pages", in vm_guest_mode_string() 211 [VM_MODE_P40V48_16K] = "PA-bits:40, VA-bits:48, 16K pages", in vm_guest_mode_string() 212 [VM_MODE_P40V48_64K] = "PA-bits:40, VA-bits:48, 64K pages", in vm_guest_mode_string() 213 [VM_MODE_PXXV48_4K] = "PA-bits:ANY, VA-bits:48, 4K pages", in vm_guest_mode_string() [all …]
|
/linux-6.12.1/net/ceph/crush/ |
D | crush_ln_table.h | 23 * RH_LH_tbl[2*k] = 2^48/(1.0+k/128.0) 24 * RH_LH_tbl[2*k+1] = 2^48*log2(1.0+k/128.0) 95 * LL_tbl[k] = 2^48*log2(1.0+k/2^15)
|
/linux-6.12.1/fs/reiserfs/ |
D | hashes.c | 46 u32 k[] = { 0x9464a485, 0x542e1a94, 0x3e846bff, 0xb75bcfc3 }; in keyed_hash() local 48 u32 h0 = k[0], h1 = k[1]; in keyed_hash() 138 a = msg[0] - 48; in yura_hash() 140 a = (msg[0] - 48) * pow; in yura_hash() 143 c = msg[i] - 48; in yura_hash() 150 c = '0' - 48; in yura_hash()
|
/linux-6.12.1/sound/pci/lx6464es/ |
D | lx_defs.h | 16 * [ 44k - ( 44.1k + 48k ) / 2 ] 18 #define XES_FREQ_COUNT8_44_MAX 0x000010F0 /* 25M / [ ( 44.1k + 48k ) / 2 ] 21 * [ 48k + ( 44.1k + 48k ) / 2 ]
|
/linux-6.12.1/sound/soc/mediatek/mt8186/ |
D | mt8186-misc-control.c | 43 42, 44, 46, 48, 57 "8K", "11K", "12K", "16K", 58 "22K", "24K", "32K", "44K", 59 "48K", "88k", "96k", "176k", 60 "192k"
|
/linux-6.12.1/Documentation/networking/ |
D | filter.rst | 80 __u32 k; /* Generic multiuse field */ 84 a code, jt, jf and k value. jt and jf are jump offsets and k a generic 207 op:16, jt:8, jf:8, k:32 211 "jump if true", the other one "jump if false". Eventually, element k 269 1 [k] BHW at byte offset k in the packet 270 2 [x + k] BHW at the offset X + k in the packet 271 3 M[k] Word at offset k in M[] 272 4 #k Literal value stored in k 273 5 4*([k]&0xf) Lower nibble * 4 at byte offset k in the packet 275 7 #k,Lt,Lf Jump to Lt if true, otherwise jump to Lf [all …]
|
/linux-6.12.1/Documentation/crypto/ |
D | descore-readme.rst | 62 - 30us per encryption (options: 64k tables, no IP/FP) 63 - 33us per encryption (options: 64k tables, FIPS standard bit ordering) 64 - 45us per encryption (options: 2k tables, no IP/FP) 65 - 48us per encryption (options: 2k tables, FIPS standard bit ordering) 66 - 275us to set a new key (uses 1k of key tables) 80 - 53us per encryption (uses 2k of tables) 81 - 96us to set a new key (uses 2.25k of key tables) 97 gcc 2.1 -O2 Sun 4/50 48 uS 53.4uS 57.5uS 11% 98 cc -O2 Sun 4/50 48 uS 64.6uS 64.7uS 35% 99 cc -O4 Sun 4/50 48 uS 64.7uS 64.9uS 35% [all …]
|
/linux-6.12.1/arch/powerpc/crypto/ |
D | sha1-spe-asm.S | 63 evstdw r19,48(r1); \ 76 evldw r19,48(r1); \ 87 stw r0,48(r1); /* were already overwritten on */ \ 106 #define R_00_15(a, b, c, d, e, w0, w1, k, off) \ argument 109 LOAD_K##k##1 \ 119 add e,e,rK; /* 1: E = E + K */ \ 121 add d,d,rK; /* 2: E = E + K */ \ 130 #define R_16_19(a, b, c, d, e, w0, w1, w4, w6, w7, k) \ argument 142 evaddw rT0,w0,rK; /* WK = W + K */ \ 144 LOAD_K##k##1 \ [all …]
|
D | sha256-spe-asm.S | 54 evstdw r19,48(r1); \ 69 evldw r19,48(r1); \ 82 stw r0,48(r1); /* was already overwritten on */ \ 110 lwz rT2,off(rKP); /* 1: K */ \ 117 add h,h,rT2; /* 1: temp1 = temp1 + K */ \ 137 lwz rT2,off+4(rKP); /* 2: K */ \ 144 add g,g,rT2; /* 2: temp1 = temp1 + K */ \ 156 #define R_CALC_W(a, b, c, d, e, f, g, h, w0, w1, w4, w5, w7, k, off) \ argument 182 evldw rT1,off(rKP); /* k */ \ 189 CMP_K##k##_LOOP \ [all …]
|
/linux-6.12.1/drivers/gpu/drm/panel/ |
D | panel-edp.c | 1031 .hsync_start = 1366 + 48, 1032 .hsync_end = 1366 + 48 + 32, 1033 .htotal = 1366 + 48 + 32 + 10, 1086 .hsync_start = 1366 + 48, 1087 .hsync_end = 1366 + 48 + 32, 1088 .htotal = 1366 + 48 + 32 + 20, 1109 .hsync_start = 1280 + 48, 1110 .hsync_end = 1280 + 48 + 32, 1111 .htotal = 1280 + 48 + 32 + 80, 1120 .hsync_start = 1280 + 48, [all …]
|
/linux-6.12.1/include/uapi/linux/ |
D | filter.h | 28 __u32 k; /* Generic multiuse field */ member 49 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k } argument 52 #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k } argument 78 #define SKF_AD_VLAN_TAG_PRESENT 48
|
/linux-6.12.1/tools/include/uapi/linux/ |
D | filter.h | 28 __u32 k; /* Generic multiuse field */ member 49 #define BPF_STMT(code, k) { (unsigned short)(code), 0, 0, k } argument 52 #define BPF_JUMP(code, k, jt, jf) { (unsigned short)(code), jt, jf, k } argument 78 #define SKF_AD_VLAN_TAG_PRESENT 48
|
/linux-6.12.1/arch/arm64/include/asm/ |
D | kvm_arm.h | 75 #define HCR_RES0 ((UL(1) << 48) | (UL(1) << 39)) 156 * Note that when using 4K pages, we concatenate two first level page tables 157 * together. With 16K pages, we concatenate 16 first level page tables. 170 * | Entry level | 4K | 16K/64K | 186 * TGRAN_SL0_BASE(4K) = 2 187 * TGRAN_SL0_BASE(16K) = 3 188 * TGRAN_SL0_BASE(64K) = 3 203 #else /* 4K */ 243 * | Entry level | 4K 16K 64K | 286 #define VTTBR_VMID_SHIFT (UL(48)) [all …]
|
/linux-6.12.1/arch/arm64/crypto/ |
D | sm3-neon-core.S | 121 #define R(i, a, b, c, d, e, f, g, h, k, K_LOAD, round, widx, wtype, IOP, iop_param) \ argument 128 add k, k, e; \ 133 add k, k, t0; \ 137 rolw(k, k, 7); /* rol (t0 + e + t), 7) => k */ \ 139 add h, h, k; /* h + w1 + k => h */ \ 142 eor t0, t0, k; /* k ^ t0 => t0 */ \ 155 #define R1(a, b, c, d, e, f, g, h, k, K_LOAD, round, widx, wtype, IOP, iop_param) \ argument 156 R(1, ##a, ##b, ##c, ##d, ##e, ##f, ##g, ##h, ##k, K_LOAD, round, widx, wtype, IOP, iop_param) 158 #define R2(a, b, c, d, e, f, g, h, k, K_LOAD, round, widx, wtype, IOP, iop_param) \ argument 159 R(2, ##a, ##b, ##c, ##d, ##e, ##f, ##g, ##h, ##k, K_LOAD, round, widx, wtype, IOP, iop_param) [all …]
|
/linux-6.12.1/sound/isa/sb/ |
D | emu8000_patch.c | 67 #define BLANK_HEAD_SIZE 48 191 /* first block - write 48 samples for silence */ in snd_emu8000_sample_new() 216 int k; in snd_emu8000_sample_new() local 219 for (k = 1; k <= looplen; k++) { in snd_emu8000_sample_new() 220 s = read_word(data, offset - k, sp->v.mode_flags); in snd_emu8000_sample_new()
|
/linux-6.12.1/sound/pci/cs46xx/ |
D | cs46xx_dsp_scb_types.h | 315 /* Init. 8000:0005 for 44.1k 316 8000:0001 for 48k 327 /* Init. 0001:0005 for 44.1k 328 0000:0001 for 48k 340 /* Init. 44.1k*65536/8k = 0x00058333 for 44.1k 341 48k*65536/8k = 0x00060000 for 48k
|
/linux-6.12.1/fs/btrfs/tests/ |
D | extent-map-tests.c | 50 * extent [0, 16K), followed by another file extent [16K, 20K), two dio reads 51 * are entering btrfs_get_extent() concurrently, t1 is reading [8K, 16K), t2 is 52 * reading [0, 8K) 57 * -> add_extent_mapping(0, 16K) 59 * ->add_extent_mapping(0, 16K) 77 /* Add [0, 16K) */ in test_case_1() 87 test_err("cannot add extent range [0, 16K)"); in test_case_1() 92 /* Add [16K, 20K) following [0, 16K) */ in test_case_1() 109 test_err("cannot add extent range [16K, 20K)"); in test_case_1() 121 /* Add [0, 8K), should return [0, 16K) instead. */ in test_case_1() [all …]
|