Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/kernel/linux/linux-5.10/crypto/
Daes_generic.c1179 u32 b0[4], b1[4]; in crypto_aes_encrypt() local
1189 f_nround(b1, b0, kp); in crypto_aes_encrypt()
1190 f_nround(b0, b1, kp); in crypto_aes_encrypt()
1194 f_nround(b1, b0, kp); in crypto_aes_encrypt()
1195 f_nround(b0, b1, kp); in crypto_aes_encrypt()
1198 f_nround(b1, b0, kp); in crypto_aes_encrypt()
1199 f_nround(b0, b1, kp); in crypto_aes_encrypt()
1200 f_nround(b1, b0, kp); in crypto_aes_encrypt()
1201 f_nround(b0, b1, kp); in crypto_aes_encrypt()
1202 f_nround(b1, b0, kp); in crypto_aes_encrypt()
[all …]
Dxor.c83 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument
99 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed()
121 void *b1, *b2; in calibrate_xor_blocks() local
133 b1 = (void *) __get_free_pages(GFP_KERNEL, 2); in calibrate_xor_blocks()
134 if (!b1) { in calibrate_xor_blocks()
138 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks()
145 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks()
160 free_pages((unsigned long)b1, 2); in calibrate_xor_blocks()
/kernel/linux/linux-5.10/arch/c6x/lib/
Ddivremu.S24 [b1] lmbd .l2 1, B4, B1
25 ||[!b1] b .s2 B3 ; RETURN A
26 ||[!b1] mvk .d2 1, B4
28 ||[!b1] zero .s1 A5
40 || [b1] subc .l1x A4,B4,A4
41 || [b1] add .s2 -1, B1, B1
42 [b1] subc .l1x A4,B4,A4
43 || [b1] add .s2 -1, B1, B1
48 || [b1] subc .l1x A4,B4,A4
49 || [b1] add .s2 -1, B1, B1
[all …]
/kernel/linux/linux-4.19/arch/c6x/lib/
Ddivremu.S36 [b1] lmbd .l2 1, B4, B1
37 ||[!b1] b .s2 B3 ; RETURN A
38 ||[!b1] mvk .d2 1, B4
40 ||[!b1] zero .s1 A5
52 || [b1] subc .l1x A4,B4,A4
53 || [b1] add .s2 -1, B1, B1
54 [b1] subc .l1x A4,B4,A4
55 || [b1] add .s2 -1, B1, B1
60 || [b1] subc .l1x A4,B4,A4
61 || [b1] add .s2 -1, B1, B1
[all …]
/kernel/linux/linux-4.19/crypto/
Daes_generic.c1337 u32 b0[4], b1[4]; in aes_encrypt() local
1347 f_nround(b1, b0, kp); in aes_encrypt()
1348 f_nround(b0, b1, kp); in aes_encrypt()
1352 f_nround(b1, b0, kp); in aes_encrypt()
1353 f_nround(b0, b1, kp); in aes_encrypt()
1356 f_nround(b1, b0, kp); in aes_encrypt()
1357 f_nround(b0, b1, kp); in aes_encrypt()
1358 f_nround(b1, b0, kp); in aes_encrypt()
1359 f_nround(b0, b1, kp); in aes_encrypt()
1360 f_nround(b1, b0, kp); in aes_encrypt()
[all …]
Dxor.c68 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument
92 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed()
113 void *b1, *b2; in calibrate_xor_blocks() local
125 b1 = (void *) __get_free_pages(GFP_KERNEL, 2); in calibrate_xor_blocks()
126 if (!b1) { in calibrate_xor_blocks()
130 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks()
137 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks()
151 free_pages((unsigned long)b1, 2); in calibrate_xor_blocks()
/kernel/linux/linux-4.19/drivers/isdn/hardware/avm/
DMakefile6 obj-$(CONFIG_ISDN_DRV_AVMB1_B1ISA) += b1isa.o b1.o
7 obj-$(CONFIG_ISDN_DRV_AVMB1_B1PCI) += b1pci.o b1.o b1dma.o
8 obj-$(CONFIG_ISDN_DRV_AVMB1_B1PCMCIA) += b1pcmcia.o b1.o
10 obj-$(CONFIG_ISDN_DRV_AVMB1_T1ISA) += t1isa.o b1.o
11 obj-$(CONFIG_ISDN_DRV_AVMB1_T1PCI) += t1pci.o b1.o b1dma.o
12 obj-$(CONFIG_ISDN_DRV_AVMB1_C4) += c4.o b1.o
/kernel/linux/linux-4.19/arch/s390/net/
Dbpf_jit_comp.c112 static inline void reg_set_seen(struct bpf_jit *jit, u32 b1) in reg_set_seen() argument
114 u32 r1 = reg2hex[b1]; in reg_set_seen()
120 #define REG_SET_SEEN(b1) \ argument
122 reg_set_seen(jit, b1); \
125 #define REG_SEEN(b1) jit->seen_reg[reg2hex[(b1)]] argument
138 #define EMIT2(op, b1, b2) \ argument
140 _EMIT2(op | reg(b1, b2)); \
141 REG_SET_SEEN(b1); \
152 #define EMIT4(op, b1, b2) \ argument
154 _EMIT4(op | reg(b1, b2)); \
[all …]
/kernel/linux/linux-4.19/fs/f2fs/
Dhash.c31 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local
37 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform()
38 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform()
42 buf[1] += b1; in TEA_transform()
/kernel/linux/linux-5.10/drivers/isdn/mISDN/
Ddsp_biquad.h19 int32_t b1; member
27 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) in biquad2_init() argument
32 bq->b1 = b1; in biquad2_init()
45 y = z0 + bq->z1 * bq->b1 + bq->z2 * bq->b2; in biquad2()
/kernel/linux/linux-4.19/drivers/isdn/mISDN/
Ddsp_biquad.h33 int32_t b1; member
41 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) in biquad2_init() argument
46 bq->b1 = b1; in biquad2_init()
59 y = z0 + bq->z1 * bq->b1 + bq->z2 * bq->b2; in biquad2()
/kernel/linux/linux-5.10/drivers/atm/
Dfore200e.h71 #define BITFIELD2(b1, b2) b1; b2; argument
72 #define BITFIELD3(b1, b2, b3) b1; b2; b3; argument
73 #define BITFIELD4(b1, b2, b3, b4) b1; b2; b3; b4; argument
74 #define BITFIELD5(b1, b2, b3, b4, b5) b1; b2; b3; b4; b5; argument
75 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b1; b2; b3; b4; b5; b6; argument
77 #define BITFIELD2(b1, b2) b2; b1; argument
78 #define BITFIELD3(b1, b2, b3) b3; b2; b1; argument
79 #define BITFIELD4(b1, b2, b3, b4) b4; b3; b2; b1; argument
80 #define BITFIELD5(b1, b2, b3, b4, b5) b5; b4; b3; b2; b1; argument
81 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b6; b5; b4; b3; b2; b1; argument
/kernel/linux/linux-4.19/drivers/atm/
Dfore200e.h71 #define BITFIELD2(b1, b2) b1; b2; argument
72 #define BITFIELD3(b1, b2, b3) b1; b2; b3; argument
73 #define BITFIELD4(b1, b2, b3, b4) b1; b2; b3; b4; argument
74 #define BITFIELD5(b1, b2, b3, b4, b5) b1; b2; b3; b4; b5; argument
75 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b1; b2; b3; b4; b5; b6; argument
77 #define BITFIELD2(b1, b2) b2; b1; argument
78 #define BITFIELD3(b1, b2, b3) b3; b2; b1; argument
79 #define BITFIELD4(b1, b2, b3, b4) b4; b3; b2; b1; argument
80 #define BITFIELD5(b1, b2, b3, b4, b5) b5; b4; b3; b2; b1; argument
81 #define BITFIELD6(b1, b2, b3, b4, b5, b6) b6; b5; b4; b3; b2; b1; argument
/kernel/linux/linux-5.10/fs/f2fs/
Dhash.c28 __u32 b0 = buf[0], b1 = buf[1]; in TEA_transform() local
34 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); in TEA_transform()
35 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); in TEA_transform()
39 buf[1] += b1; in TEA_transform()
/kernel/linux/linux-5.10/arch/arm/include/asm/
Dxor.h26 : "=r" (src), "=r" (b1), "=r" (b2) \
28 __XOR(a1, b1); __XOR(a2, b2);
32 : "=r" (src), "=r" (b1), "=r" (b2), "=r" (b3), "=r" (b4) \
34 __XOR(a1, b1); __XOR(a2, b2); __XOR(a3, b3); __XOR(a4, b4)
54 register unsigned int b1 __asm__("r8"); in xor_arm4regs_2()
75 register unsigned int b1 __asm__("r8"); in xor_arm4regs_3()
95 register unsigned int b1 __asm__("ip"); in xor_arm4regs_4()
114 register unsigned int b1 __asm__("ip"); in xor_arm4regs_5()
/kernel/linux/linux-4.19/arch/arm/include/asm/
Dxor.h29 : "=r" (src), "=r" (b1), "=r" (b2) \
31 __XOR(a1, b1); __XOR(a2, b2);
35 : "=r" (src), "=r" (b1), "=r" (b2), "=r" (b3), "=r" (b4) \
37 __XOR(a1, b1); __XOR(a2, b2); __XOR(a3, b3); __XOR(a4, b4)
57 register unsigned int b1 __asm__("r8"); in xor_arm4regs_2()
78 register unsigned int b1 __asm__("r8"); in xor_arm4regs_3()
98 register unsigned int b1 __asm__("ip"); in xor_arm4regs_4()
117 register unsigned int b1 __asm__("ip"); in xor_arm4regs_5()
/kernel/linux/linux-4.19/block/
Dblk-integrity.c145 struct blk_integrity *b1 = &gd1->queue->integrity; in blk_integrity_compare() local
148 if (!b1->profile && !b2->profile) in blk_integrity_compare()
151 if (!b1->profile || !b2->profile) in blk_integrity_compare()
154 if (b1->interval_exp != b2->interval_exp) { in blk_integrity_compare()
157 1 << b1->interval_exp, 1 << b2->interval_exp); in blk_integrity_compare()
161 if (b1->tuple_size != b2->tuple_size) { in blk_integrity_compare()
164 b1->tuple_size, b2->tuple_size); in blk_integrity_compare()
168 if (b1->tag_size && b2->tag_size && (b1->tag_size != b2->tag_size)) { in blk_integrity_compare()
171 b1->tag_size, b2->tag_size); in blk_integrity_compare()
175 if (b1->profile != b2->profile) { in blk_integrity_compare()
[all …]
/kernel/linux/linux-5.10/block/
Dblk-integrity.c123 struct blk_integrity *b1 = &gd1->queue->integrity; in blk_integrity_compare() local
126 if (!b1->profile && !b2->profile) in blk_integrity_compare()
129 if (!b1->profile || !b2->profile) in blk_integrity_compare()
132 if (b1->interval_exp != b2->interval_exp) { in blk_integrity_compare()
135 1 << b1->interval_exp, 1 << b2->interval_exp); in blk_integrity_compare()
139 if (b1->tuple_size != b2->tuple_size) { in blk_integrity_compare()
142 b1->tuple_size, b2->tuple_size); in blk_integrity_compare()
146 if (b1->tag_size && b2->tag_size && (b1->tag_size != b2->tag_size)) { in blk_integrity_compare()
149 b1->tag_size, b2->tag_size); in blk_integrity_compare()
153 if (b1->profile != b2->profile) { in blk_integrity_compare()
[all …]
/kernel/linux/linux-4.19/fs/reiserfs/
Dhashes.c28 u32 b0, b1; \
31 b1 = h1; \
36 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); \
37 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); \
41 h1 += b1; \
/kernel/linux/linux-5.10/fs/reiserfs/
Dhashes.c28 u32 b0, b1; \
31 b1 = h1; \
36 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); \
37 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); \
41 h1 += b1; \
/kernel/linux/linux-5.10/arch/s390/net/
Dbpf_jit_comp.c111 static inline void reg_set_seen(struct bpf_jit *jit, u32 b1) in reg_set_seen() argument
113 u32 r1 = reg2hex[b1]; in reg_set_seen()
119 #define REG_SET_SEEN(b1) \ argument
121 reg_set_seen(jit, b1); \
124 #define REG_SEEN(b1) jit->seen_reg[reg2hex[(b1)]] argument
137 #define EMIT2(op, b1, b2) \ argument
139 _EMIT2((op) | reg(b1, b2)); \
140 REG_SET_SEEN(b1); \
151 #define EMIT4(op, b1, b2) \ argument
153 _EMIT4((op) | reg(b1, b2)); \
[all …]
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/
Dnand_ecc.c394 unsigned char b0, b1, b2, bit_addr; in __nand_correct_data() local
406 b1 = read_ecc[1] ^ calc_ecc[1]; in __nand_correct_data()
409 b1 = read_ecc[0] ^ calc_ecc[0]; in __nand_correct_data()
419 if ((b0 | b1 | b2) == 0) in __nand_correct_data()
423 (((b1 ^ (b1 >> 1)) & 0x55) == 0x55) && in __nand_correct_data()
444 byte_addr = (addressbits[b1] << 4) + addressbits[b0]; in __nand_correct_data()
447 (addressbits[b1] << 4) + addressbits[b0]; in __nand_correct_data()
455 if ((bitsperbyte[b0] + bitsperbyte[b1] + bitsperbyte[b2]) == 1) in __nand_correct_data()
/kernel/linux/linux-4.19/drivers/mtd/nand/raw/
Dnand_ecc.c424 unsigned char b0, b1, b2, bit_addr; in __nand_correct_data() local
436 b1 = read_ecc[1] ^ calc_ecc[1]; in __nand_correct_data()
439 b1 = read_ecc[0] ^ calc_ecc[0]; in __nand_correct_data()
448 if ((b0 | b1 | b2) == 0) in __nand_correct_data()
452 (((b1 ^ (b1 >> 1)) & 0x55) == 0x55) && in __nand_correct_data()
473 byte_addr = (addressbits[b1] << 4) + addressbits[b0]; in __nand_correct_data()
476 (addressbits[b1] << 4) + addressbits[b0]; in __nand_correct_data()
484 if ((bitsperbyte[b0] + bitsperbyte[b1] + bitsperbyte[b2]) == 1) in __nand_correct_data()
/kernel/linux/linux-4.19/tools/vm/
Dslabinfo.c775 char b1[20], b2[20], b3[20], b4[20]; in totals() local
951 store_size(b1, total_size);store_size(b2, total_waste); in totals()
953 printf("Memory used: %15s # Loss : %15s MRatio:%6s%%\n", b1, b2, b3); in totals()
955 store_size(b1, total_objects);store_size(b2, total_partobj); in totals()
957 printf("# Objects : %15s # PartObj: %15s ORatio:%6s%%\n", b1, b2, b3); in totals()
965 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
968 b1, b2, b3, b4); in totals()
970 store_size(b1, avg_slabs);store_size(b2, min_slabs); in totals()
973 b1, b2, b3, b4); in totals()
975 store_size(b1, avg_partial);store_size(b2, min_partial); in totals()
[all …]
/kernel/linux/linux-5.10/tools/vm/
Dslabinfo.c782 char b1[20], b2[20], b3[20], b4[20]; in totals() local
958 store_size(b1, total_size);store_size(b2, total_waste); in totals()
960 printf("Memory used: %15s # Loss : %15s MRatio:%6s%%\n", b1, b2, b3); in totals()
962 store_size(b1, total_objects);store_size(b2, total_partobj); in totals()
964 printf("# Objects : %15s # PartObj: %15s ORatio:%6s%%\n", b1, b2, b3); in totals()
972 store_size(b1, avg_objects);store_size(b2, min_objects); in totals()
975 b1, b2, b3, b4); in totals()
977 store_size(b1, avg_slabs);store_size(b2, min_slabs); in totals()
980 b1, b2, b3, b4); in totals()
982 store_size(b1, avg_partial);store_size(b2, min_partial); in totals()
[all …]

12345678910>>...15