/openbmc/linux/arch/arm64/crypto/ |
H A D | sm4-ce-asm.h | 28 #define SM4_CRYPT_BLK2_BE(b0, b1) \ argument 30 sm4e b1.4s, v24.4s; \ 32 sm4e b1.4s, v25.4s; \ 34 sm4e b1.4s, v26.4s; \ 36 sm4e b1.4s, v27.4s; \ 38 sm4e b1.4s, v28.4s; \ 40 sm4e b1.4s, v29.4s; \ 42 sm4e b1.4s, v30.4s; \ 44 sm4e b1.4s, v31.4s; \ 46 rev64 b1.4s, b1.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); \ 145 rev32 b1.16b, b1.16b; \ 149 rotate_clockwise_4x4(b0, b1, b2, b3); \ 154 #define SM4_CRYPT_BLK4(b0, b1, b2, b3) \ argument 156 rev32 b1.16b, b1.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 38 eor \b3, \b3, \b1 39 eor \b1, \b1, \b5 42 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 44 eor \b1, \b1, \b4 47 eor \b6, \b6, \b1 48 eor \b1, \b1, \b5 56 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 57 eor \b1, \b1, \b7 [all …]
|
/openbmc/linux/crypto/ |
H A D | aes_generic.c | 1179 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 …]
|
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 130 b1 = (void *) __get_free_pages(GFP_KERNEL, 2); in calibrate_xor_blocks() 131 if (!b1) { in calibrate_xor_blocks() 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() 157 free_pages((unsigned long)b1, 2); in calibrate_xor_blocks()
|
/openbmc/qemu/include/fpu/ |
H A D | softfloat-macros.h | 438 static inline void add128(uint64_t a0, uint64_t a1, uint64_t b0, uint64_t b1, in add128() argument 442 *z1Ptr = uadd64_carry(a1, b1, &c); in add128() 455 uint64_t b0, uint64_t b1, uint64_t b2, in add192() argument 460 *z1Ptr = uadd64_carry(a1, b1, &c); in add192() 472 static inline void sub128(uint64_t a0, uint64_t a1, uint64_t b0, uint64_t b1, in sub128() argument 476 *z1Ptr = usub64_borrow(a1, b1, &c); in sub128() 489 uint64_t b0, uint64_t b1, uint64_t b2, in sub192() argument 494 *z1Ptr = usub64_borrow(a1, b1, &c); in sub192() 536 uint64_t b0, uint64_t b1, in mul128To256() argument 544 mul64To128(a0, b1, &n1, &n2); in mul128To256() [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 242 b1 = word >> 24 & 0xff; in read_test_data_u32() 247 zeros += (b1 == 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() 260 ml_printf("Error %d, %d, %d, %d", b1, b2, b3, b4); in read_test_data_u32() [all …]
|
/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/block/ |
H A D | blk-integrity.c | 123 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 …]
|
/openbmc/linux/drivers/isdn/mISDN/ |
H A D | dsp_biquad.h | 19 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()
|
/openbmc/linux/fs/f2fs/ |
H A D | hash.c | 28 __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()
|
/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) 55 register unsigned int b1 __asm__("r8"); in xor_arm4regs_2() 77 register unsigned int b1 __asm__("r8"); in xor_arm4regs_3() 99 register unsigned int b1 __asm__("ip"); in xor_arm4regs_4() 121 register unsigned int b1 __asm__("ip"); in xor_arm4regs_5()
|
/openbmc/linux/fs/reiserfs/ |
H A D | hashes.c | 28 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; \
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | CNRI-Python | 7 … documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). 9 …wise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Ag… 13 …b1 or any part thereof, and wants to make the derivative work available to the public as provided … 15 …b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS… 17 … DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE T… 23 …on where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to …
|
/openbmc/linux/drivers/crypto/nx/ |
H A D | nx-aes-ccm.c | 164 u8 tmp[16], *b1 = NULL, *b0 = NULL, *result = NULL; in generate_pat() local 192 b1 = nx_ctx->priv.ccm.iauth_tag; in generate_pat() 199 b1 = nx_ctx->csbcpb_aead->cpb.aes_cca.b1; in generate_pat() 203 b1 = nx_ctx->csbcpb_aead->cpb.aes_cca.b1; in generate_pat() 216 if (b1) { in generate_pat() 217 memset(b1, 0, 16); in generate_pat() 219 *(u16 *)b1 = assoclen; in generate_pat() 220 scatterwalk_map_and_copy(b1 + 2, req->src, 0, in generate_pat() 223 *(u16 *)b1 = (u16)(0xfffe); in generate_pat() 224 *(u32 *)&b1[2] = assoclen; in generate_pat() [all …]
|
/openbmc/linux/Documentation/arch/arm64/ |
H A D | booting.rst | 221 - SCR_EL3.HCE (bit 8) must be initialised to 0b1. 226 - ICC_SRE_EL3.Enable (bit 3) must be initialised to 0b1. 227 - ICC_SRE_EL3.SRE (bit 0) must be initialised to 0b1. 234 - ICC.SRE_EL2.Enable (bit 3) must be initialised to 0b1 235 - ICC_SRE_EL2.SRE (bit 0) must be initialised to 0b1. 256 - SCR_EL3.APK (bit 16) must be initialised to 0b1 257 - SCR_EL3.API (bit 17) must be initialised to 0b1 261 - HCR_EL2.APK (bit 40) must be initialised to 0b1 262 - HCR_EL2.API (bit 41) must be initialised to 0b1 272 having 0b1 set for the corresponding bit for each of the auxiliary [all …]
|
/openbmc/linux/arch/arm/nwfpe/ |
H A D | softfloat-macros | 339 value formed by concatenating `b0' and `b1'. Addition is modulo 2^128, so 346 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr ) 350 z1 = a1 + b1; 359 192-bit value formed by concatenating `b0', `b1', and `b2'. Addition is 371 bits64 b1, 383 z1 = a1 + b1; 397 Subtracts the 128-bit value formed by concatenating `b0' and `b1' from the 406 bits64 a0, bits64 a1, bits64 b0, bits64 b1, bits64 *z0Ptr, bits64 *z1Ptr ) 409 *z1Ptr = a1 - b1; 410 *z0Ptr = a0 - b0 - ( a1 < b1 ); [all …]
|
/openbmc/u-boot/fs/zfs/ |
H A D | zfs_fletcher.c | 40 uint64_t a0, b0, a1, b1; in fletcher_2_endian() local 42 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_endian() 46 b1 += a1; in fletcher_2_endian() 52 zcp->zc_word[3] = cpu_to_zfs64(b1, endian); in fletcher_2_endian()
|
/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/s390/net/ |
H A D | bpf_jit_comp.c | 117 static inline void reg_set_seen(struct bpf_jit *jit, u32 b1) in reg_set_seen() argument 119 u32 r1 = reg2hex[b1]; in reg_set_seen() 125 #define REG_SET_SEEN(b1) \ argument 127 reg_set_seen(jit, b1); \ 130 #define REG_SEEN(b1) jit->seen_reg[reg2hex[(b1)]] argument 143 #define EMIT2(op, b1, b2) \ argument 145 _EMIT2((op) | reg(b1, b2)); \ 146 REG_SET_SEEN(b1); \ 157 #define EMIT4(op, b1, b2) \ argument 159 _EMIT4((op) | reg(b1, b2)); \ [all …]
|
/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 92 veor \b3, \b3, \b1 93 veor \b1, \b1, \b5 96 .macro out_bs_ch, b0, b1, b2, b3, b4, b5, b6, b7 98 veor \b1, \b1, \b4 101 veor \b6, \b6, \b1 102 veor \b1, \b1, \b5 110 .macro inv_in_bs_ch, b6, b1, b2, b4, b7, b0, b3, b5 111 veor \b1, \b1, \b7 [all …]
|
/openbmc/linux/arch/xtensa/platforms/iss/include/platform/ |
H A D | simcall-iss.h | 61 register int b1 asm("a3") = b; in __simc() 66 : "+r"(a1), "+r"(b1) in __simc() 69 errno = b1; in __simc()
|
/openbmc/linux/scripts/ |
H A D | parse-maintainers.pl | 79 my $b1 = uc(substr($b, 0, 1)); 82 my $b_index = index($preferred_order, $b1); 87 if (($a1 =~ /^F$/ && $b1 =~ /^F$/) || 88 ($a1 =~ /^X$/ && $b1 =~ /^X$/)) {
|
/openbmc/qemu/tests/qemu-iotests/tests/ |
H A D | qemu-img-bitmaps | 70 $QEMU_IMG bitmap --add -g 512k -f $IMGFMT "$TEST_IMG" b1 73 $QEMU_IMG bitmap --clear -f $IMGFMT "$TEST_IMG" b1 75 $QEMU_IMG bitmap --disable -f $IMGFMT "$TEST_IMG" b1 122 -B b0 -B b1 -B b2 -B b3 "$TEST_IMG" 141 $QEMU_IMG bitmap --remove "$TEST_IMG" b1
|
/openbmc/qemu/pc-bios/s390-ccw/ |
H A D | scsi.h | 47 uint8_t b1, b2; /* b2 & 0f = sense key */ member 71 uint8_t b1; /* Removable Media Bit = b1 & 0x80 */ member 106 uint8_t b1; /* b1, |= 0x01 (evpd) */ member 115 uint8_t b1; member 132 uint8_t b1; member
|