Home
last modified time | relevance | path

Searched +full:48 +full:k (Results 1 – 25 of 729) sorted by relevance

12345678910>>...30

/linux/crypto/
H A Dwp512.c30 #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 …]
H A Dsm3.c15 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/tools/perf/Documentation/
H A Dsecurity.txt15 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/arch/loongarch/lib/
H A Dxor_simd.c23 #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/fs/bcachefs/
H A Dalloc_background.h27 return (bucket.inode << 48) | bucket.offset; in bucket_to_u64()
32 return POS(bucket >> 48, bucket & ~(~0ULL << 48)); in u64_to_bucket()
213 set_bkey_val_u64s(&a->k, alloc_v4_u64s(&a->v)); in set_alloc_v4_u64s()
224 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
228 if (unlikely(k.k->type != KEY_TYPE_alloc_v4)) in bch2_alloc_to_v4()
231 ret = bkey_s_c_to_alloc_v4(k).v; in bch2_alloc_to_v4()
237 __bch2_alloc_to_v4(k, convert); in bch2_alloc_to_v4()
278 .min_val_size = 48, \
292 static inline bool bkey_is_alloc(const struct bkey *k) in bkey_is_alloc() argument
294 return k->type == KEY_TYPE_alloc || in bkey_is_alloc()
[all …]
/linux/drivers/md/dm-vdo/
H A Dmurmurhash3.c22 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/Documentation/admin-guide/
H A Ddevices.txt61 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/Documentation/networking/device_drivers/atm/
H A Diphase.rst24 - 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/tools/testing/selftests/kvm/lib/
H A Dkvm_util.c204 [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/sound/pci/lx6464es/
H A Dlx_defs.h16 * [ 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/net/ceph/crush/
H A Dcrush_ln_table.h23 * 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/Documentation/networking/
H A Dfilter.rst80 __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/fs/reiserfs/
H A Dhashes.c46 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/Documentation/crypto/
H A Ddescore-readme.rst62 - 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/sound/soc/mediatek/mt8186/
H A Dmt8186-misc-control.c43 42, 44, 46, 48,
57 "8K", "11K", "12K", "16K",
58 "22K", "24K", "32K", "44K",
59 "48K", "88k", "96k", "176k",
60 "192k"
/linux/arch/powerpc/crypto/
H A Dsha1-spe-asm.S63 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 …]
H A Dsha256-spe-asm.S54 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/arch/arm64/crypto/
H A Dsm3-neon-core.S121 #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/arch/arm64/include/asm/
H A Dkvm_arm.h75 #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/tools/include/uapi/linux/
H A Dfilter.h28 __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/include/uapi/linux/
H A Dfilter.h28 __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/tools/testing/selftests/hid/tests/
H A Dtest_tablet.py727 [pytest.param(v, id=k) for k, v in PenState.legal_transitions().items()],
740 pytest.param(v, id=k)
741 for k, v in PenState.tolerated_transitions().items()
758 pytest.param(v, id=k)
759 for k, v in PenState.legal_transitions_with_button().items()
779 pytest.param(v, id=k)
780 for k, v in PenState.legal_transitions_with_button().items()
800 pytest.param(v, id=k)
801 for k, v in PenState.legal_transitions_with_button().items()
821 pytest.param(v, id=k)
[all …]
/linux/sound/pci/cs46xx/
H A Dcs46xx_dsp_scb_types.h315 /* 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/sound/soc/codecs/
H A Dwm8753.c155 {"130Hz @ 48kHz", "200Hz @ 48kHz", "100Hz @ 16kHz", "400Hz @ 48kHz",
163 static const char *wm8753_deemp[] = {"None", "32kHz", "44.1kHz", "48kHz"};
182 static const char *wm8753_adc_hp[] = {"3.4Hz @ 48kHz", "82Hz @ 16k",
270 0, 48, TLV_DB_SCALE_ITEM(-25500, 0, 0),
271 48, 127, TLV_DB_SCALE_ITEM(-7300, 100, 0)
695 u32 k:24; member
706 unsigned int K, Ndiv, Nmod; in pll_factors() local
726 K = Kpart & 0xFFFFFFFF; in pll_factors()
729 if ((K % 10) >= 5) in pll_factors()
730 K += 5; in pll_factors()
[all …]
H A Dwm8971.c92 static const char *wm8971_bass_filter[] = { "130Hz @ 48kHz",
93 "200Hz @ 48kHz" };
98 static const char *wm8971_deemp[] = { "None", "32kHz", "44.1kHz", "48kHz" };
370 /* 8k */
377 /* 11.025k */
382 /* 16k */
387 /* 22.05k */
392 /* 32k */
397 /* 44.1k */
402 /* 48k */
[all …]

12345678910>>...30