Home
last modified time | relevance | path

Searched full:256 (Results 1 – 25 of 3838) sorted by relevance

12345678910>>...154

/linux/arch/s390/lib/
H A Dxor.c23 "0: xc 0(256,%1),0(%2)\n" in xor_xc_2()
24 " la %1,256(%1)\n" in xor_xc_2()
25 " la %2,256(%2)\n" in xor_xc_2()
45 "0: xc 0(256,%1),0(%2)\n" in xor_xc_3()
46 " xc 0(256,%1),0(%3)\n" in xor_xc_3()
47 " la %1,256(%1)\n" in xor_xc_3()
48 " la %2,256(%2)\n" in xor_xc_3()
49 " la %3,256(%3)\n" in xor_xc_3()
72 "0: xc 0(256,%1),0(%2)\n" in xor_xc_4()
73 " xc 0(256,%1),0(%3)\n" in xor_xc_4()
[all …]
/linux/lib/raid6/
H A Dmktables.c57 uint8_t exptbl[256], invtbl[256]; in main()
65 printf("\nconst u8 __attribute__((aligned(256)))\n" in main()
66 "raid6_gfmul[256][256] =\n" in main()
68 for (i = 0; i < 256; i++) { in main()
70 for (j = 0; j < 256; j += 8) { in main()
84 printf("\nconst u8 __attribute__((aligned(256)))\n" in main()
85 "raid6_vgfmul[256][32] =\n" in main()
87 for (i = 0; i < 256; i++) { in main()
110 printf("\nconst u8 __attribute__((aligned(256)))\n" in main()
111 "raid6_gfexp[256] =\n" "{\n"); in main()
[all …]
H A Drecov_s390xc.c13 typedef struct { u8 _[256]; } addrtype; in xor_block()
16 " xc 0(256,%[p1]),0(%[p2])\n" in xor_block()
59 for (i = 0; i < 256; i++) in raid6_2data_recov_s390xc()
62 p += 256; in raid6_2data_recov_s390xc()
63 q += 256; in raid6_2data_recov_s390xc()
64 dp += 256; in raid6_2data_recov_s390xc()
65 dq += 256; in raid6_2data_recov_s390xc()
66 bytes -= 256; in raid6_2data_recov_s390xc()
99 for (i = 0; i < 256; i++) in raid6_datap_recov_s390xc()
102 p += 256; in raid6_datap_recov_s390xc()
[all …]
/linux/tools/perf/pmu-events/arch/s390/cf_z17/
H A Dpai_crypto.json69 "BriefDescription": "KM AES 256",
70 "PublicDescription": "KM-AES-256 function ending with CC=0"
90 "BriefDescription": "KM ENCRYPTED AES 256",
91 "PublicDescription": "KM-Encrypted-AES-256 function ending with CC=0"
104 "BriefDescription": "KM XTS AES 256",
105 "PublicDescription": "KM-XTS-AES-256 function ending with CC=0"
118 "BriefDescription": "KM XTS ENCRYPTED AES 256",
119 "PublicDescription": "KM-XTS-Encrypted-AES-256 function ending with CC=0"
181 "BriefDescription": "KMC AES 256",
182 "PublicDescription": "KMC-AES-256 function ending with CC=0"
[all …]
/linux/tools/perf/pmu-events/arch/s390/cf_z16/
H A Dpai_crypto.json69 "BriefDescription": "KM AES 256",
70 "PublicDescription": "KM-AES-256 function ending with CC=0"
90 "BriefDescription": "KM ENCRYPTED AES 256",
91 "PublicDescription": "KM-Encrypted-AES-256 function ending with CC=0"
104 "BriefDescription": "KM XTS AES 256",
105 "PublicDescription": "KM-XTS-AES-256 function ending with CC=0"
118 "BriefDescription": "KM XTS ENCRYPTED AES 256",
119 "PublicDescription": "KM-XTS-Encrypted-AES-256 function ending with CC=0"
181 "BriefDescription": "KMC AES 256",
182 "PublicDescription": "KMC-AES-256 function ending with CC=0"
[all …]
/linux/arch/arm64/boot/dts/ti/
H A Dk3-j784s4.dtsi65 i-cache-sets = <256>;
68 d-cache-sets = <256>;
79 i-cache-sets = <256>;
82 d-cache-sets = <256>;
93 i-cache-sets = <256>;
96 d-cache-sets = <256>;
107 i-cache-sets = <256>;
110 d-cache-sets = <256>;
121 i-cache-sets = <256>;
124 d-cache-sets = <256>;
[all …]
/linux/drivers/isdn/mISDN/
H A Ddsp_audio.c21 s32 dsp_audio_ulaw_to_s32[256];
23 s32 dsp_audio_alaw_to_s32[256];
33 u8 dsp_audio_alaw_to_ulaw[256];
35 static u8 dsp_audio_ulaw_to_alaw[256];
107 static int exp_lut[256] = { in linear2ulaw()
144 for (i = 0; i < 256; i++) in dsp_audio_generate_law_tables()
147 for (i = 0; i < 256; i++) in dsp_audio_generate_law_tables()
150 for (i = 0; i < 256; i++) { in dsp_audio_generate_law_tables()
184 u8 dsp_audio_law2seven[256];
195 u8 sorted_alaw[256]; in dsp_audio_generate_seven()
[all …]
/linux/lib/crc/
H A Dgen_crc32table.c7 static uint32_t crc32table_le[256];
8 static uint32_t crc32table_be[256];
9 static uint32_t crc32ctable_le[256];
18 static void crc32init_le_generic(const uint32_t polynomial, uint32_t tab[256]) in crc32init_le_generic() argument
27 for (j = 0; j < 256; j += 2 * i) in crc32init_le_generic()
52 for (i = 1; i < 256; i <<= 1) { in crc32init_be()
59 static void output_table(const uint32_t table[256]) in output_table() argument
63 for (i = 0; i < 256; i += 4) { in output_table()
74 printf("static const u32 ____cacheline_aligned crc32table_le[256] = {\n"); in main()
79 printf("static const u32 ____cacheline_aligned crc32table_be[256] = {\n"); in main()
[all …]
H A Dgen_crc64table.c15 static uint64_t crc64_table[256] = {0};
16 static uint64_t crc64_nvme_table[256] = {0};
18 static void generate_reflected_crc64_table(uint64_t table[256], uint64_t poly) in generate_reflected_crc64_table() argument
22 for (i = 0; i < 256; i++) { in generate_reflected_crc64_table()
36 static void generate_crc64_table(uint64_t table[256], uint64_t poly) in generate_crc64_table() argument
40 for (i = 0; i < 256; i++) { in generate_crc64_table()
56 static void output_table(uint64_t table[256]) in output_table() argument
60 for (i = 0; i < 256; i++) { in output_table()
75 printf("static const u64 ____cacheline_aligned crc64table[256] = {\n"); in print_crc64_tables()
78 printf("\nstatic const u64 ____cacheline_aligned crc64nvmetable[256] = {\n"); in print_crc64_tables()
/linux/arch/arm64/boot/dts/amd/
H A Damd-seattle-cpus.dtsi51 i-cache-sets = <256>;
54 d-cache-sets = <256>;
67 i-cache-sets = <256>;
70 d-cache-sets = <256>;
82 i-cache-sets = <256>;
85 d-cache-sets = <256>;
97 i-cache-sets = <256>;
100 d-cache-sets = <256>;
112 i-cache-sets = <256>;
115 d-cache-sets = <256>;
[all …]
/linux/drivers/gpu/drm/tidss/
H A Dtidss_scale_coefs.c49 .c0 = { 288, 286, 284, 280, 276, 266, 256, 244, 232, },
61 .c0 = { 336, 332, 328, 320, 312, 300, 288, 272, 256, },
89 .c1 = { 108, 92, 76, 62, 48, 36, 24, 140, 256, 236, 216, 198, 180, 162, 144, 126, },
90 .c0 = { 296, 294, 292, 288, 284, 278, 272, 136, 256, },
94 .c1 = { 104, 90, 76, 60, 44, 32, 20, 138, 256, 236, 216, 198, 180, 160, 140, 122, },
95 .c0 = { 304, 300, 296, 292, 288, 282, 276, 138, 256, },
99 .c1 = { 100, 84, 68, 54, 40, 30, 20, 138, 256, 236, 216, 196, 176, 156, 136, 118, },
100 .c0 = { 312, 310, 308, 302, 296, 286, 276, 138, 256, },
104 .c1 = { 96, 80, 64, 50, 36, 26, 16, 136, 256, 236, 216, 194, 172, 152, 132, 114, },
105 .c0 = { 320, 318, 316, 310, 304, 292, 280, 140, 256, },
[all …]
/linux/sound/pci/ctxfi/
H A Dct20k2reg.h34 #define SRC_CTL 0x1A0000 /* 0x1A0000 + (256 * Chn) */
35 #define SRC_CCR 0x1A0004 /* 0x1A0004 + (256 * Chn) */
36 #define SRC_IMAP 0x1A0008 /* 0x1A0008 + (256 * Chn) */
37 #define SRC_CA 0x1A0010 /* 0x1A0010 + (256 * Chn) */
38 #define SRC_CF 0x1A0014 /* 0x1A0014 + (256 * Chn) */
39 #define SRC_SA 0x1A0018 /* 0x1A0018 + (256 * Chn) */
40 #define SRC_LA 0x1A001C /* 0x1A001C + (256 * Chn) */
41 #define SRC_CTLSWR 0x1A0020 /* 0x1A0020 + (256 * Chn) */
42 #define SRC_CD 0x1A0080 /* 0x1A0080 + (256 * Chn) + (4 * Regn) */
44 #define SRC_IP 0x1A102C /* 0x1A102C + (256 * Regn) */
[all …]
/linux/include/linux/raid/
H A Dpq.h156 extern const u8 raid6_gfmul[256][256] __attribute__((aligned(256)));
157 extern const u8 raid6_vgfmul[256][32] __attribute__((aligned(256)));
158 extern const u8 raid6_gfexp[256] __attribute__((aligned(256)));
159 extern const u8 raid6_gflog[256] __attribute__((aligned(256)));
160 extern const u8 raid6_gfinv[256] __attribute__((aligned(256)));
161 extern const u8 raid6_gfexi[256] __attribute__((aligned(256)));
/linux/tools/testing/selftests/ublk/
H A Dtest_stress_04.sh27 _create_backfile 0 256M
32 ublk_io_and_kill_daemon 256M -t loop -q 4 -z --no_ublk_fixed_fd "${UBLK_BACKFILES[0]}" &
33 ublk_io_and_kill_daemon 256M -t stripe -q 4 -z "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" &
37 ublk_io_and_kill_daemon 256M -t loop -q 4 --auto_zc "${UBLK_BACKFILES[0]}" &
38 …ublk_io_and_kill_daemon 256M -t stripe -q 4 --auto_zc --no_ublk_fixed_fd "${UBLK_BACKFILES[1]}" "$…
44 ublk_io_and_kill_daemon 256M -t loop -q 4 --nthreads 8 --per_io_tasks "${UBLK_BACKFILES[0]}" &
45 …ublk_io_and_kill_daemon 256M -t stripe -q 4 --nthreads 8 --per_io_tasks "${UBLK_BACKFILES[1]}" "${…
H A Dtest_stress_03.sh28 _create_backfile 0 256M
33 ublk_io_and_remove 256M -t loop -q 4 -z "${UBLK_BACKFILES[0]}" &
34 ublk_io_and_remove 256M -t stripe -q 4 -z "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" &
39 ublk_io_and_remove 256M -t loop -q 4 --auto_zc "${UBLK_BACKFILES[0]}" &
40 ublk_io_and_remove 256M -t stripe -q 4 --auto_zc "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" &
47 ublk_io_and_remove 256M -t loop -q 4 --auto_zc --nthreads 8 --per_io_tasks "${UBLK_BACKFILES[0]}" &
48 …ublk_io_and_remove 256M -t stripe -q 4 --auto_zc --nthreads 8 --per_io_tasks "${UBLK_BACKFILES[1]}…
/linux/tools/perf/pmu-events/arch/x86/amdzen4/
H A Dfloating-point.json119 "BriefDescription": "Retired packed 256-bit floating-point ops.",
533 "BriefDescription": "Retired 256-bit packed floating-point add ops.",
539 "BriefDescription": "Retired 256-bit packed floating-point subtract ops.",
545 "BriefDescription": "Retired 256-bit packed floating-point multiply ops.",
551 "BriefDescription": "Retired 256-bit packed floating-point multiply-accumulate ops.",
557 "BriefDescription": "Retired 256-bit packed floating-point divide ops.",
563 "BriefDescription": "Retired 256-bit packed floating-point square root ops.",
569 "BriefDescription": "Retired 256-bit packed floating-point compare ops.",
575 "BriefDescription": "Retired 256-bit packed floating-point convert ops.",
581 "BriefDescription": "Retired 256-bit packed floating-point blend ops.",
[all …]
/linux/arch/arm64/boot/dts/marvell/
H A Darmada-ap806-quad.dtsi24 i-cache-sets = <256>;
27 d-cache-sets = <256>;
39 i-cache-sets = <256>;
42 d-cache-sets = <256>;
54 i-cache-sets = <256>;
57 d-cache-sets = <256>;
69 i-cache-sets = <256>;
72 d-cache-sets = <256>;
H A Darmada-ap807-quad.dtsi24 i-cache-sets = <256>;
27 d-cache-sets = <256>;
39 i-cache-sets = <256>;
42 d-cache-sets = <256>;
54 i-cache-sets = <256>;
57 d-cache-sets = <256>;
69 i-cache-sets = <256>;
72 d-cache-sets = <256>;
/linux/arch/x86/pci/
H A Dce4100.c99 DEFINE_REG(2, 0, 0x14, (256), reg_init, reg_read, reg_write)
112 DEFINE_REG(10, 0, 0x10, (256), reg_init, reg_read, reg_write)
113 DEFINE_REG(10, 0, 0x14, (256*MB), reg_init, reg_read, reg_write)
114 DEFINE_REG(11, 0, 0x10, (256), reg_init, reg_read, reg_write)
115 DEFINE_REG(11, 0, 0x14, (256), reg_init, reg_read, reg_write)
116 DEFINE_REG(11, 1, 0x10, (256), reg_init, reg_read, reg_write)
117 DEFINE_REG(11, 2, 0x10, (256), reg_init, reg_read, reg_write)
118 DEFINE_REG(11, 2, 0x14, (256), reg_init, reg_read, reg_write)
119 DEFINE_REG(11, 2, 0x18, (256), reg_init, reg_read, reg_write)
120 DEFINE_REG(11, 3, 0x10, (256), reg_init, reg_read, reg_write)
[all …]
/linux/drivers/media/usb/pwc/
H A Dpwc-dec23.h35 unsigned char table_8004_pass1[16][256];
36 unsigned char table_8004_pass2[16][256];
37 unsigned int table_subblock[256][12];
39 unsigned char table_bitpowermask[8][256];
40 unsigned int table_d800[256];
41 unsigned int table_dc00[256];
/linux/arch/arm/mach-omap2/
H A Dcm81xx.h13 #define TI81XX_CM_ACTIVE_MOD 0x0400 /* 256B */
14 #define TI81XX_CM_DEFAULT_MOD 0x0500 /* 256B */
16 #define TI81XX_CM_SGX_MOD 0x0900 /* 256B */
19 #define TI816X_CM_IVAHD0_MOD 0x0600 /* 256B */
20 #define TI816X_CM_IVAHD1_MOD 0x0700 /* 256B */
21 #define TI816X_CM_IVAHD2_MOD 0x0800 /* 256B */
/linux/net/xfrm/
H A Dxfrm_algo.c44 .sadb_alg_maxbits = 256
63 .sadb_alg_maxbits = 256
82 .sadb_alg_maxbits = 256
101 .sadb_alg_maxbits = 256
120 .sadb_alg_maxbits = 256
139 .sadb_alg_maxbits = 256
158 .sadb_alg_maxbits = 256
242 .icv_fullbits = 256,
251 .sadb_alg_minbits = 256,
252 .sadb_alg_maxbits = 256
[all...]
/linux/tools/testing/selftests/net/
H A Dtfo_passive.sh5 NSIM_SV_ID=$((256 + RANDOM % 256))
7 NSIM_CL_ID=$((512 + RANDOM % 256))
65 NSIM_SV_FD=$((256 + RANDOM % 256))
69 NSIM_CL_FD=$((256 + RANDOM % 256))
/linux/Documentation/ABI/testing/
H A Dconfigfs-usb-gadget-uac114 (in 1/256 dB)
16 (in 1/256 dB)
18 (in 1/256 dB)
25 (in 1/256 dB)
27 (in 1/256 dB)
29 (in 1/256 dB)
/linux/arch/s390/boot/
H A Dhead_kdump.S42 mvc 0(256,%r8),0(%r10) # Copy data mover code
45 mvc 0(256,%r8),0(%r10) # reserved mem
68 mvc 0(256,%r10),0(%r5) # Copy old kernel to tmp
69 mvc 0(256,%r5),0(%r11) # Copy new kernel to old
70 mvc 0(256,%r11),0(%r10) # Copy tmp to new
71 aghi %r11,256
72 aghi %r5,256

12345678910>>...154