/openbmc/linux/arch/arm64/crypto/ |
H A D | sm4-ce-asm.h | 57 #define SM4_CRYPT_BLK4_BE(b0, b1, b2, b3) \ argument 60 sm4e b2.4s, v24.4s; \ 64 sm4e b2.4s, v25.4s; \ 68 sm4e b2.4s, v26.4s; \ 72 sm4e b2.4s, v27.4s; \ 76 sm4e b2.4s, v28.4s; \ 80 sm4e b2.4s, v29.4s; \ 84 sm4e b2.4s, v30.4s; \ 88 sm4e b2.4s, v31.4s; \ 92 rev64 b2.4s, b2.4s; \ [all …]
|
H A D | sm4-neon-core.S | 131 #define SM4_CRYPT_BLK4_BE(b0, b1, b2, b3) \ argument 137 ROUND4(0, b0, b1, b2, b3); \ 138 ROUND4(1, b1, b2, b3, b0); \ 139 ROUND4(2, b2, b3, b0, b1); \ 140 ROUND4(3, b3, b0, b1, b2); \ 146 rev32 b2.16b, b2.16b; \ 149 rotate_clockwise_4x4(b0, b1, b2, b3); \ 154 #define SM4_CRYPT_BLK4(b0, b1, b2, b3) \ argument 157 rev32 b2.16b, b2.16b; \ 159 SM4_CRYPT_BLK4_BE(b0, b1, b2, b3); [all …]
|
H A D | aes-neonbs-core.S | 26 .macro in_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 27 eor \b2, \b2, \b1 30 eor \b6, \b6, \b2 37 eor \b2, \b2, \b7 42 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 46 eor \b2, \b2, \b0 52 eor \b2, \b2, \b5 56 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 61 eor \b2, \b2, \b5 64 eor \b2, \b2, \b0 [all …]
|
H A D | sm4-ce-gcm-core.S | 133 #define SM4_CRYPT_PMUL_128x128_BLK3(b0, b1, b2, \ argument 139 rev32 b2.16b, b2.16b; \ 145 sm4e b2.4s, v24.4s; \ 151 sm4e b2.4s, v25.4s; \ 157 sm4e b2.4s, v26.4s; \ 163 sm4e b2.4s, v27.4s; \ 169 sm4e b2.4s, v28.4s; \ 175 sm4e b2.4s, v29.4s; \ 181 sm4e b2.4s, v30.4s; \ 187 sm4e b2.4s, v31.4s; \ [all …]
|
/openbmc/linux/arch/s390/crypto/ |
H A D | chacha-s390.S | 451 #define B2 %v9 macro 499 VLR B2,K1 528 VAF A2,A2,B2 553 VX B2,B2,C2 559 VERLLF B2,B2,12 566 VAF A2,A2,B2 591 VX B2,B2,C2 597 VERLLF B2,B2,7 610 VSLDB B2,B2,B2,4 623 VAF A2,A2,B2 [all …]
|
/openbmc/qemu/tests/tcg/multiarch/system/ |
H A D | memory.c | 168 uint32_t b2 = BYTE_NEXT(count), b1 = BYTE_NEXT(count); in init_test_data_u32() local 169 word = BYTE_SHIFT(b1, 3) | BYTE_SHIFT(b2, 2) | BYTE_SHIFT(b3, 1) | in init_test_data_u32() 193 uint64_t b2 = BYTE_NEXT(count), b1 = BYTE_NEXT(count); in init_test_data_u64() local 194 word = BYTE_SHIFT(b1, 7) | BYTE_SHIFT(b2, 6) | BYTE_SHIFT(b3, 5) | in init_test_data_u64() 238 uint8_t b1, b2, b3, b4; in read_test_data_u32() local 243 b2 = word >> 16 & 0xff; in read_test_data_u32() 248 zeros += (b2 == 0 ? 1 : 0); in read_test_data_u32() 253 ptr - 1, b1, b2, b3, b4); in read_test_data_u32() 257 if ((b1 < b2 && b1 != 0) || in read_test_data_u32() 258 (b2 < b3 && b2 != 0) || in read_test_data_u32() [all …]
|
/openbmc/linux/drivers/isdn/mISDN/ |
H A D | dsp_biquad.h | 20 int32_t b2; member 27 int32_t gain, int32_t a1, int32_t a2, int32_t b1, int32_t b2) in biquad2_init() argument 33 bq->b2 = b2; in biquad2_init() 45 y = z0 + bq->z1 * bq->b1 + bq->z2 * bq->b2; in biquad2()
|
/openbmc/linux/block/ |
H A D | blk-integrity.c | 124 struct blk_integrity *b2 = &gd2->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 …]
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | pixfmt-sdr-pcu18be.rst | 33 - Byte B2 38 - I'\ :sub:`0[1:0]; B2[5:0]=pad` 43 - I'\ :sub:`1[1:0]; B2[5:0]=pad` 49 - Q'\ :sub:`0[1:0]; B2[5:0]=pad` 54 - Q'\ :sub:`1[1:0]; B2[5:0]=pad`
|
H A D | pixfmt-sdr-pcu20be.rst | 33 - Byte B2 38 - I'\ :sub:`0[3:0]; B2[3:0]=pad` 43 - I'\ :sub:`1[3:0]; B2[3:0]=pad` 49 - Q'\ :sub:`0[3:0]; B2[3:0]=pad` 54 - Q'\ :sub:`1[3:0]; B2[3:0]=pad`
|
/openbmc/qemu/tests/tcg/s390x/ |
H A D | lae.c | 11 unsigned long long ar = -1, b2 = 100000, r, x2 = 500; in main() local 20 "lae %%r2,42(%[x2],%[b2])\n" in main() 24 : [b2] "r" (b2), [x2] "r" (x2) in main()
|
/openbmc/linux/arch/arm/crypto/ |
H A D | aes-neonbs-core.S | 80 .macro in_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 81 veor \b2, \b2, \b1 84 veor \b6, \b6, \b2 91 veor \b2, \b2, \b7 96 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 100 veor \b2, \b2, \b0 106 veor \b2, \b2, \b5 110 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 115 veor \b2, \b2, \b5 118 veor \b2, \b2, \b0 [all …]
|
/openbmc/linux/arch/arm/include/asm/ |
H A D | xor.h | 26 : "=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) 56 register unsigned int b2 __asm__("r9"); in xor_arm4regs_2() 78 register unsigned int b2 __asm__("r9"); in xor_arm4regs_3() 100 register unsigned int b2 __asm__("lr"); in xor_arm4regs_4() 122 register unsigned int b2 __asm__("lr"); in xor_arm4regs_5()
|
/openbmc/linux/arch/s390/include/asm/ |
H A D | vx-insn-asm.h | 266 GR_NUM b2, "%r0" 269 .word (b2 << 12) | (\disp) 298 GR_NUM b2, \base 300 .word (b2 << 12) | (\disp) 308 GR_NUM b2, \base 310 .word (b2 << 12) | (\disp) 349 GR_NUM b2, \base 352 .word (b2 << 12) | (\disp) 372 GR_NUM b2, \base 374 .word (b2 << 12) | (\disp) [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 223 | 67 # Also note that b will be disabled, while b2 is left enabled, to 94 "name": "b2", 156 "bitmap":"b2"}}' "error" # enabled vs. read-only 162 "description":"some text", "bitmap":"b2"}}' "return" 187 "$IMG,x-dirty-bitmap=qemu:dirty-bitmap:b2" | _filter_qemu_img_map 224 nbd_server_start_unix_socket -f $IMGFMT -B b2 "$TEST_IMG" 227 "$IMG,x-dirty-bitmap=qemu:dirty-bitmap:b2" | _filter_qemu_img_map 229 "$IMG,x-dirty-bitmap=qemu:dirty-bitmap:b2" | _filter_qemu_img_map
|
/openbmc/qemu/pc-bios/s390-ccw/ |
H A D | scsi.h | 47 uint8_t b1, b2; /* b2 & 0f = sense key */ member 64 return ((const ScsiSense70 *)p)->b2 & SCSI_SENSE_KEY_MASK; in scsi_sense_key() 72 uint8_t spc_version; /* b2 */ 86 uint16_t page_length; /* b2..b3 length = N-3 */ 107 uint8_t b2; /* b2; if evpd==1 */ member
|
/openbmc/linux/include/linux/usb/ |
H A D | r8a66597.h | 198 #define OBUS 0x0004 /* b2: OUTbus mode */ 212 #define CURPIPE 0x000F /* b2-0: PIPE select */ 247 #define BRDY2 0x0004 /* b2: PIPE2 */ 259 #define NRDY2 0x0004 /* b2: PIPE2 */ 271 #define BEMP2 0x0004 /* b2: PIPE2 */ 307 #define CTSQ 0x0007 /* b2-0: Control transfer stage */ 331 #define UFRNM 0x0007 /* b2-0: Micro frame number */ 349 #define CCPL 0x0004 /* b2: Enable control transfer complete */ 357 #define PIPENM 0x0007 /* b2-0: Pipe select */ 382 #define IITV 0x0007 /* b2-0: Isochronous interval */ [all …]
|
/openbmc/qemu/tests/qemu-iotests/tests/ |
H A D | qemu-img-bitmaps.out | 37 name: b2 53 name: b2 78 name: b2 133 name: b2 152 qemu-img: warning: Skipping inconsistent bitmap 'b2' 180 name: b2
|
H A D | qemu-img-bitmaps | 71 $QEMU_IMG bitmap --add --disable -f $IMGFMT "$TEST_IMG" b2 76 $QEMU_IMG bitmap --enable -f $IMGFMT "$TEST_IMG" b2 110 $QEMU_IMG bitmap --add --merge b2 -b "$TEST_IMG" -F $IMGFMT \ 122 -B b0 -B b1 -B b2 -B b3 "$TEST_IMG" 128 "$IMG,x-dirty-bitmap=qemu:dirty-bitmap:b2" | _filter_qemu_img_map 159 $QEMU_IMG bitmap --remove --add "$TEST_IMG" b2
|
/openbmc/linux/drivers/atm/ |
H A D | fore200e.h | 71 #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
|
/openbmc/linux/tools/testing/selftests/hid/tests/ |
H A D | test_gamepad.py | 68 # can change intended b1 b2 values 71 b2 = uhdev.buttons[1] 72 key2 = libevdev.evbit(uhdev.buttons_map[b2]) 74 buttons = {b1: True, b2: True} 86 buttons = {b1: False, b2: None} 95 buttons = {b1: None, b2: False}
|
/openbmc/linux/crypto/ |
H A D | xor.c | 83 do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2) in do_xor_speed() argument 101 tmpl->do_2(BENCH_SIZE, b1, b2); in do_xor_speed() 118 void *b1, *b2; in calibrate_xor_blocks() local 135 b2 = b1 + 2*PAGE_SIZE + BENCH_SIZE; in calibrate_xor_blocks() 142 #define xor_speed(templ) do_xor_speed((templ), b1, b2) in calibrate_xor_blocks()
|
/openbmc/linux/tools/mm/ |
H A D | slabinfo.c | 806 char b1[20], b2[20], b3[20], b4[20]; in totals() local 982 store_size(b1, total_size);store_size(b2, total_waste); in totals() 984 printf("Memory used: %15s # Loss : %15s MRatio:%6s%%\n", b1, b2, b3); in totals() 986 store_size(b1, total_objects);store_size(b2, total_partobj); in totals() 988 printf("# Objects : %15s # PartObj: %15s ORatio:%6s%%\n", b1, b2, b3); in totals() 996 store_size(b1, avg_objects);store_size(b2, min_objects); in totals() 999 b1, b2, b3, b4); in totals() 1001 store_size(b1, avg_slabs);store_size(b2, min_slabs); in totals() 1004 b1, b2, b3, b4); in totals() 1006 store_size(b1, avg_partial);store_size(b2, min_partial); in totals() [all …]
|
/openbmc/linux/arch/x86/crypto/ |
H A D | cast6-avx-x86_64-asm_64.S | 129 #define F_2(a1, b1, a2, b2, op0, op1, op2, op3) \ argument 131 F_head(b2, RX, RGI3, RGI4, op0); \ 134 F_tail(b2, RTMP, RGI3, RGI4, op1, op2, op3); \ 139 #define F1_2(a1, b1, a2, b2) \ argument 140 F_2(a1, b1, a2, b2, vpaddd, xorl, subl, addl) 141 #define F2_2(a1, b1, a2, b2) \ argument 142 F_2(a1, b1, a2, b2, vpxor, subl, addl, xorl) 143 #define F3_2(a1, b1, a2, b2) \ argument 144 F_2(a1, b1, a2, b2, vpsubd, addl, xorl, subl)
|
/openbmc/linux/drivers/usb/gadget/udc/ |
H A D | m66592-udc.h | 30 #define M66592_FSRPC 0x0004 /* b2: Full-speed receiver enable */ 88 #define M66592_OBUS 0x0004 /* b2: OUTbus mode */ 109 #define M66592_CURPIPE 0x0007 /* b2-0: PIPE select */ 142 #define M66592_RDST 0x0004 /* b2: Control read data stage completed irq */ 151 #define M66592_BRDYM 0x0004 /* b2: BRDY clear timing */ 162 #define M66592_BRDY2 0x0004 /* b2: PIPE2 */ 173 #define M66592_NRDY2 0x0004 /* b2: PIPE2 */ 184 #define M66592_BEMP2 0x0004 /* b2: PIPE2 */ 216 #define M66592_CTSQ 0x0007 /* b2-0: Control transfer stage */ 238 #define M66592_UFRNM 0x0007 /* b2-0: Micro frame number */ [all …]
|