Home
last modified time | relevance | path

Searched +full:8 +full:k (Results 1 – 25 of 1114) sorted by relevance

12345678910>>...45

/linux/Documentation/admin-guide/media/
H A Ddvb_intro.rst133 T 177500000 7MHz AUTO AUTO QAM64 8k 1/16 NONE
134 T 184500000 7MHz AUTO AUTO QAM64 8k 1/8 NONE
135 T 191625000 7MHz AUTO AUTO QAM64 8k 1/16 NONE
136 T 219500000 7MHz AUTO AUTO QAM64 8k 1/16 NONE
137 T 226500000 7MHz AUTO AUTO QAM64 8k 1/16 NONE
138 T 557625000 7MHz AUTO AUTO QPSK 8k 1/16 NONE
151 TRANSMISSION_MODE = 8K
179 TRANSMISSION_MODE = 8K
194 TRANSMISSION_MODE = 8K
209 TRANSMISSION_MODE = 8K
[all …]
/linux/net/ceph/
H A Dceph_hash.c13 b = b - c; b = b - a; b = b ^ (a << 8); \
25 const unsigned char *k = (const unsigned char *)str; in ceph_str_hash_rjenkins() local
37 a = a + (k[0] + ((__u32)k[1] << 8) + ((__u32)k[2] << 16) + in ceph_str_hash_rjenkins()
38 ((__u32)k[3] << 24)); in ceph_str_hash_rjenkins()
39 b = b + (k[4] + ((__u32)k[5] << 8) + ((__u32)k[6] << 16) + in ceph_str_hash_rjenkins()
40 ((__u32)k[7] << 24)); in ceph_str_hash_rjenkins()
41 c = c + (k[8] + ((__u32)k[9] << 8) + ((__u32)k[10] << 16) + in ceph_str_hash_rjenkins()
42 ((__u32)k[11] << 24)); in ceph_str_hash_rjenkins()
44 k = k + 12; in ceph_str_hash_rjenkins()
52 c = c + ((__u32)k[10] << 24); in ceph_str_hash_rjenkins()
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_jhash.h16 c -= b; c ^= rol32(b, 8); b += a; \
39 const unsigned char *k = key; in jhash() local
44 a += *(volatile u32 *)(k); in jhash()
45 b += *(volatile u32 *)(k + 4); in jhash()
46 c += *(volatile u32 *)(k + 8); in jhash()
49 k += 12; in jhash()
52 case 12: c += (u32)k[11]<<24; in jhash()
53 case 11: c += (u32)k[10]<<16; in jhash()
54 case 10: c += (u32)k[9]<<8; in jhash()
55 case 9: c += k[8]; in jhash()
[all …]
/linux/lib/raid6/
H A Dmktables.c55 int i, j, k; in main() local
70 for (j = 0; j < 256; j += 8) { in main()
72 for (k = 0; k < 8; k++) in main()
73 printf("0x%02x,%c", gfmul(i, j + k), in main()
74 (k == 7) ? '\n' : ' '); in main()
89 for (j = 0; j < 16; j += 8) { in main()
91 for (k = 0; k < 8; k++) in main()
92 printf("0x%02x,%c", gfmul(i, j + k), in main()
93 (k == 7) ? '\n' : ' '); in main()
95 for (j = 0; j < 16; j += 8) { in main()
[all …]
/linux/include/uapi/linux/
H A Dkeyboard.h16 #define KG_CAPSSHIFT 8
37 #define KT_META 8
45 #define K(t,v) (((t)<<8)|(v)) macro
46 #define KTYP(x) ((x) >> 8)
49 #define K_F1 K(KT_FN,0)
50 #define K_F2 K(KT_FN,1)
51 #define K_F3 K(KT_FN,2)
52 #define K_F4 K(KT_FN,3)
53 #define K_F5 K(KT_FN,4)
54 #define K_F6 K(KT_FN,5)
[all …]
/linux/fs/bcachefs/
H A Dtests.c36 struct bkey_i_cookie k; in test_delete() local
39 bkey_cookie_init(&k.k_i); in test_delete()
40 k.k.p.snapshot = U32_MAX; in test_delete()
42 bch2_trans_iter_init(trans, &iter, BTREE_ID_xattrs, k.k.p, in test_delete()
47 bch2_trans_update(trans, &iter, &k.k_i, 0)); in test_delete()
77 struct bkey_i_cookie k; in test_delete_written() local
80 bkey_cookie_init(&k.k_i); in test_delete_written()
81 k.k.p.snapshot = U32_MAX; in test_delete_written()
83 bch2_trans_iter_init(trans, &iter, BTREE_ID_xattrs, k.k.p, in test_delete_written()
88 bch2_trans_update(trans, &iter, &k.k_i, 0)); in test_delete_written()
[all …]
/linux/drivers/media/platform/verisilicon/
H A Dhantro_vp8.c30 u8 prob_coeffs[4][8][3][V4L2_VP8_COEFF_PROB_CNT];
36 * reference RFC6386#Page-16, filters[8][6]
38 const u32 hantro_vp8_dec_mc_filter[8][6] = {
41 { 2, -11, 108, 36, -8, 1 },
45 { 1, -8, 36, 108, -11, 2 },
53 u32 i, j, k; in hantro_vp8_prob_update() local
68 dst += 8; in hantro_vp8_prob_update()
79 dst += 8; in hantro_vp8_prob_update()
84 dst[4] = entropy->mv_probs[0][8 + 9]; in hantro_vp8_prob_update()
86 dst[6] = entropy->mv_probs[1][8 + 9]; in hantro_vp8_prob_update()
[all …]
H A Dhantro_vp9.c26 h = roundup(height, 8); in hantro_vp9_tile_filter_size()
29 size = 24 * height32 * (MAX_NUM_TILE_COLS - 1); /* luma: 8, chroma: 8 + 8 */ in hantro_vp9_tile_filter_size()
38 h = roundup(height, 8); in hantro_vp9_bsd_control_size()
49 w = roundup(width, 8); in hantro_vp9_segment_map_size()
50 h = roundup(height, 8); in hantro_vp9_segment_map_size()
71 static void *get_coeffs_arr(struct symbol_counts *cnts, int i, int j, int k, int l, int m) in get_coeffs_arr() argument
74 return &cnts->count_coeffs[j][k][l][m]; in get_coeffs_arr()
77 return &cnts->count_coeffs8x8[j][k][l][m]; in get_coeffs_arr()
80 return &cnts->count_coeffs16x16[j][k][l][m]; in get_coeffs_arr()
83 return &cnts->count_coeffs32x32[j][k][l][m]; in get_coeffs_arr()
[all …]
/linux/drivers/ata/pata_parport/
H A Don26.c19 * mode codes: 0 nybble reads, 8-bit writes
20 * 1 8-bit reads and writes
21 * 2 8-bit EPP mode
111 x = 8; in on26_connect()
113 w0(2); P1; w0(8); P2; in on26_connect()
158 w0(2); P1; w0(8); P2; udelay(100); in on26_test_port()
160 w0(2); P1; w0(8); P2; udelay(1000); in on26_test_port()
193 int k, a, b; in on26_read_block() local
199 for (k = 0; k < count; k++) { in on26_read_block()
202 buf[k] = j44(a, b); in on26_read_block()
[all …]
H A Depia.c22 * mode codes: 0 nybble reads on port 1, 8-bit writes
23 * 1 5/3 reads on ports 1 & 2, 8-bit writes
24 * 2 8-bit reads and writes
25 * 3 8-bit EPP mode
114 WR(0x86, 8); in epia_connect()
129 int k, ph, a, b; in epia_read_block() local
135 for (k = 0; k < count; k++) { in epia_read_block()
138 buf[k] = j44(a, b); in epia_read_block()
147 for (k = 0; k < count; k++) { in epia_read_block()
150 buf[k] = j53(a, b); in epia_read_block()
[all …]
H A Dkbic.c43 w0(regr | 0x18 | s); w2(4); w2(6); w2(4); w2(1); w0(8); in kbic_read_regr()
47 w0(regr|0x38 | s); w2(4); w2(6); w2(4); w2(5); w0(8); in kbic_read_regr()
128 int k, a, b; in kbic_read_block() local
133 for (k = 0; k < count / 2; k++) { in kbic_read_block()
134 w2(1); w0(8); in kbic_read_block()
138 buf[2 * k] = j44(a, b); in kbic_read_block()
141 w0(8); in kbic_read_block()
143 buf[2 * k + 1] = j44(a, b); in kbic_read_block()
149 for (k = 0; k < count / 4; k++) { in kbic_read_block()
152 w0(8); in kbic_read_block()
[all …]
H A Ddstr.c19 * mode codes: 0 nybble reads, 8-bit writes
20 * 1 8-bit reads and writes
21 * 2 8-bit EPP mode
117 int k, a, b; in dstr_read_block() local
128 for (k = 0; k < count; k++) { in dstr_read_block()
131 buf[k] = j44(a, b); in dstr_read_block()
136 for (k = 0; k < count; k++) { in dstr_read_block()
138 buf[k] = r0(); in dstr_read_block()
145 for (k = 0; k < count; k++) in dstr_read_block()
146 buf[k] = r4(); in dstr_read_block()
[all …]
/linux/tools/include/linux/
H A Djhash.h39 c -= b; c ^= rol32(b, 8); b += a; \
61 * @k: sequence of bytes as key
73 const u8 *k = key; in jhash() local
80 a += __get_unaligned_cpu32(k); in jhash()
81 b += __get_unaligned_cpu32(k + 4); in jhash()
82 c += __get_unaligned_cpu32(k + 8); in jhash()
85 k += 12; in jhash()
90 case 12: c += (u32)k[11]<<24; in jhash()
91 case 11: c += (u32)k[10]<<16; in jhash()
92 case 10: c += (u32)k[9]<<8; in jhash()
[all …]
/linux/include/linux/
H A Djhash.h39 c -= b; c ^= rol32(b, 8); b += a; \
61 * @k: sequence of bytes as key
73 const u8 *k = key; in jhash() local
80 a += get_unaligned((u32 *)k); in jhash()
81 b += get_unaligned((u32 *)(k + 4)); in jhash()
82 c += get_unaligned((u32 *)(k + 8)); in jhash()
85 k += 12; in jhash()
89 case 12: c += (u32)k[11]<<24; fallthrough; in jhash()
90 case 11: c += (u32)k[10]<<16; fallthrough; in jhash()
91 case 10: c += (u32)k[9]<<8; fallthrough; in jhash()
[all …]
/linux/arch/arm64/boot/dts/allwinner/
H A Dsun50i-h616-cpu-opp.dtsi13 clock-latency-ns = <244144>; /* 8 32k periods */
20 clock-latency-ns = <244144>; /* 8 32k periods */
27 clock-latency-ns = <244144>; /* 8 32k periods */
35 clock-latency-ns = <244144>; /* 8 32k periods */
42 clock-latency-ns = <244144>; /* 8 32k periods */
54 clock-latency-ns = <244144>; /* 8 32k periods */
61 clock-latency-ns = <244144>; /* 8 32k periods */
71 clock-latency-ns = <244144>; /* 8 32k periods */
83 clock-latency-ns = <244144>; /* 8 32k periods */
90 clock-latency-ns = <244144>; /* 8 32k periods */
[all …]
H A Dsun50i-h5-cpu-opp.dtsi12 clock-latency-ns = <244144>; /* 8 32k periods */
18 clock-latency-ns = <244144>; /* 8 32k periods */
24 clock-latency-ns = <244144>; /* 8 32k periods */
30 clock-latency-ns = <244144>; /* 8 32k periods */
36 clock-latency-ns = <244144>; /* 8 32k periods */
42 clock-latency-ns = <244144>; /* 8 32k periods */
48 clock-latency-ns = <244144>; /* 8 32k periods */
54 clock-latency-ns = <244144>; /* 8 32k periods */
60 clock-latency-ns = <244144>; /* 8 32k periods */
H A Dsun50i-a64-cpu-opp.dtsi14 clock-latency-ns = <244144>; /* 8 32k periods */
20 clock-latency-ns = <244144>; /* 8 32k periods */
26 clock-latency-ns = <244144>; /* 8 32k periods */
32 clock-latency-ns = <244144>; /* 8 32k periods */
38 clock-latency-ns = <244144>; /* 8 32k periods */
44 clock-latency-ns = <244144>; /* 8 32k periods */
50 clock-latency-ns = <244144>; /* 8 32k periods */
56 clock-latency-ns = <244144>; /* 8 32k periods */
H A Dsun50i-h6-cpu-opp.dtsi12 clock-latency-ns = <244144>; /* 8 32k periods */
21 clock-latency-ns = <244144>; /* 8 32k periods */
30 clock-latency-ns = <244144>; /* 8 32k periods */
39 clock-latency-ns = <244144>; /* 8 32k periods */
48 clock-latency-ns = <244144>; /* 8 32k periods */
57 clock-latency-ns = <244144>; /* 8 32k periods */
66 clock-latency-ns = <244144>; /* 8 32k periods */
75 clock-latency-ns = <244144>; /* 8 32k periods */
84 clock-latency-ns = <244144>; /* 8 32k periods */
93 clock-latency-ns = <244144>; /* 8 32k periods */
/linux/Documentation/devicetree/bindings/interrupt-controller/
H A Dmarvell,armada-8k-pic.yaml4 $id: http://devicetree.org/schemas/interrupt-controller/marvell,armada-8k-pic.yaml#
7 title: Marvell Armada 7K/8K PIC Interrupt controller
13 The Marvell Armada 7K/8K PIC is a secondary interrupt controller available on
14 the Marvell Armada 7K/8K ARM64 SoCs, and typically connected to the GIC as the
19 const: marvell,armada-8k-pic
47 compatible = "marvell,armada-8k-pic";
/linux/tools/testing/selftests/tc-testing/tc-tests/actions/
H A Dpolice.json20 "cmdUnderTest": "$TC actions add action police rate 1kbit burst 10k index 1",
46 "$TC actions add action police rate 4Mbit burst 120k index 9"
48 "cmdUnderTest": "$TC actions add action police rate 8kbit burst 24k index 9",
75 "cmdUnderTest": "$TC actions add action police rate 90kbit burst 10k mtu 1k index 98",
102 …"cmdUnderTest": "$TC actions add action police rate 90kbit burst 10k mtu 2kb peakrate 100kbit inde…
156 "cmdUnderTest": "$TC actions add action police rate 1mbit burst 100k overhead 64 index 64",
183 … "cmdUnderTest": "$TC actions add action police rate 2mbit burst 200k linklayer ethernet index 8",
210 "cmdUnderTest": "$TC actions add action police rate 2mbit burst 200k linklayer atm index 8",
237 …"cmdUnderTest": "$TC actions add action police rate 3mbit burst 250k conform-exceed continue/drop …
264 …"cmdUnderTest": "$TC actions add action police rate 3mbit burst 250k conform-exceed pass/reclassif…
[all …]
/linux/crypto/
H A Dwp512.c40 u64 hash[WP512_DIGEST_SIZE/8];
782 u64 K[8]; /* the round key */ in wp512_process_buffer() local
783 u64 block[8]; /* mu(buffer) */ in wp512_process_buffer()
784 u64 state[8]; /* the cipher state */ in wp512_process_buffer()
785 u64 L[8]; in wp512_process_buffer()
787 for (i = 0; i < 8; i++) in wp512_process_buffer()
788 block[i] = get_unaligned_be64(buffer + i * 8); in wp512_process_buffer()
790 state[0] = block[0] ^ (K[0] = wctx->hash[0]); in wp512_process_buffer()
791 state[1] = block[1] ^ (K[1] = wctx->hash[1]); in wp512_process_buffer()
792 state[2] = block[2] ^ (K[2] = wctx->hash[2]); in wp512_process_buffer()
[all …]
/linux/drivers/md/bcache/
H A Dbcache_ondisk.h12 static inline __u64 name(const type *k) \
13 { return (k->field >> offset) & ~(~0ULL << size); } \
15 static inline void SET_##name(type *k, __u64 v) \
17 k->field &= ~(~(~0ULL << size) << offset); \
18 k->field |= (v & ~(~0ULL << size)) << offset; \
33 static inline __u64 name(const struct bkey *k, unsigned int i) \
34 { return (k->ptr[i] >> offset) & ~(~0ULL << size); } \
36 static inline void SET_##name(struct bkey *k, unsigned int i, __u64 v) \
38 k->ptr[i] &= ~(~(~0ULL << size) << offset); \
39 k->ptr[i] |= (v & ~(~0ULL << size)) << offset; \
[all …]
/linux/drivers/net/ethernet/cavium/thunder/
H A Dnicvf_queues.h15 #define MAX_RCV_QUEUES_PER_QS 8
17 #define MAX_SND_QUEUES_PER_QS 8
18 #define MAX_CMP_QUEUES_PER_QS 8
22 #define NICVF_INTR_ID_SQ 8
34 #define RBDR_SIZE0 0ULL /* 8K entries */
35 #define RBDR_SIZE1 1ULL /* 16K entries */
36 #define RBDR_SIZE2 2ULL /* 32K entries */
37 #define RBDR_SIZE3 3ULL /* 64K entries */
38 #define RBDR_SIZE4 4ULL /* 126K entries */
39 #define RBDR_SIZE5 5ULL /* 256K entries */
[all …]
/linux/drivers/input/joystick/
H A Dtmdc.c34 #define TMDC_MODE_FM 8
46 static const unsigned char tmdc_byte_d[16] = { 2, 5, 8, 9 };
84 { 3, "ThrustMaster Rage 3D Gamepad", 2, 0, { 8, 2 }, { 0, 0 }, tmdc_abs, tmdc_btn_pad },
86 { 8, "ThrustMaster FragMaster", 4, 0, { 8, 2 }, { 0, 0 }, tmdc_abs_fm, tmdc_btn_fm },
87 { 163, "Thrustmaster Fusion GamePad", 2, 0, { 8, 2 }, { 0, 0 }, tmdc_abs, tmdc_btn_pad },
131 int i[2], j[2], t[2], p, k; in tmdc_read_packet() local
135 for (k = 0; k < 2; k++) { in tmdc_read_packet()
136 t[k] = gameport_time(gameport, TMDC_MAX_START); in tmdc_read_packet()
137 i[k] = j[k] = 0; in tmdc_read_packet()
149 for (k = 0, v = w, u = x; k < 2; k++, v >>= 2, u >>= 2) { in tmdc_read_packet()
[all …]
/linux/arch/sparc/net/
H A Dbpf_jit_comp_32.c68 #define SETHI(K, REG) \ argument
69 (F2(0, 0x4) | RD(REG) | (((K) >> 10) & 0x3fffff))
70 #define OR_LO(K, REG) \ argument
71 (F3(2, 0x02) | IMMED | RS1(REG) | ((K) & 0x3ff) | RD(REG))
126 #define emit_set_const(K, REG) \ argument
127 do { /* sethi %hi(K), REG */ \
128 *prog++ = SETHI(K, REG); \
129 /* or REG, %lo(K), REG */ \
130 *prog++ = OR_LO(K, REG); \
145 * OP r_A, K, r_A
[all …]

12345678910>>...45