Home
last modified time | relevance | path

Searched refs:B2 (Results 1 – 25 of 186) sorted by relevance

12345678

/openbsd/lib/libcrypto/sm4/
H A Dsm4.c184 uint32_t B0, B1, B2, B3; in SM4_encrypt() local
188 B2 = crypto_load_be32toh(&in[2 * 4]); in SM4_encrypt()
200 B0 ^= SM4_T(B1 ^ B2 ^ B3 ^ ks->rk[4]); in SM4_encrypt()
201 B1 ^= SM4_T(B0 ^ B2 ^ B3 ^ ks->rk[5]); in SM4_encrypt()
202 B2 ^= SM4_T(B0 ^ B1 ^ B3 ^ ks->rk[6]); in SM4_encrypt()
203 B3 ^= SM4_T(B0 ^ B1 ^ B2 ^ ks->rk[7]); in SM4_encrypt()
205 B0 ^= SM4_T(B1 ^ B2 ^ B3 ^ ks->rk[8]); in SM4_encrypt()
206 B1 ^= SM4_T(B0 ^ B2 ^ B3 ^ ks->rk[9]); in SM4_encrypt()
236 crypto_store_htobe32(&out[1 * 4], B2); in SM4_encrypt()
246 uint32_t B0, B1, B2, B3; in SM4_decrypt() local
[all …]
/openbsd/gnu/usr.bin/binutils/opcodes/
H A Dia64-opc-b.c90 #define BR(a,b,c,d,e) B0, OpX6BtypePaWhaD (0, a, b, c, d, e), {B2}, EMPTY
203 {"br.call.sptk.few", B, OpPaWhcD (1, 0, 1, 0), {B1, B2}, EMPTY},
205 {"br.call.sptk.few.clr", B, OpPaWhcD (1, 0, 1, 1), {B1, B2}, EMPTY},
207 {"br.call.spnt.few", B, OpPaWhcD (1, 0, 3, 0), {B1, B2}, EMPTY},
211 {"br.call.dptk.few", B, OpPaWhcD (1, 0, 5, 0), {B1, B2}, EMPTY},
215 {"br.call.dpnt.few", B, OpPaWhcD (1, 0, 7, 0), {B1, B2}, EMPTY},
219 {"br.call.sptk.many", B, OpPaWhcD (1, 1, 1, 0), {B1, B2}, EMPTY},
221 {"br.call.spnt.many", B, OpPaWhcD (1, 1, 3, 0), {B1, B2}, EMPTY},
223 {"br.call.dptk.many", B, OpPaWhcD (1, 1, 5, 0), {B1, B2}, EMPTY},
225 {"br.call.dpnt.many", B, OpPaWhcD (1, 1, 7, 0), {B1, B2}, EMPTY},
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Dia64-opc-b.c91 #define BR(a,b,c,d,e) B0, OpX6BtypePaWhaD (0, a, b, c, d, e), {B2}, EMPTY
206 {"br.call.sptk.few", B, OpPaWhcD (1, 0, 1, 0), {B1, B2}, EMPTY},
208 {"br.call.sptk.few.clr", B, OpPaWhcD (1, 0, 1, 1), {B1, B2}, EMPTY},
210 {"br.call.spnt.few", B, OpPaWhcD (1, 0, 3, 0), {B1, B2}, EMPTY},
214 {"br.call.dptk.few", B, OpPaWhcD (1, 0, 5, 0), {B1, B2}, EMPTY},
218 {"br.call.dpnt.few", B, OpPaWhcD (1, 0, 7, 0), {B1, B2}, EMPTY},
222 {"br.call.sptk.many", B, OpPaWhcD (1, 1, 1, 0), {B1, B2}, EMPTY},
224 {"br.call.spnt.many", B, OpPaWhcD (1, 1, 3, 0), {B1, B2}, EMPTY},
226 {"br.call.dptk.many", B, OpPaWhcD (1, 1, 5, 0), {B1, B2}, EMPTY},
228 {"br.call.dpnt.many", B, OpPaWhcD (1, 1, 7, 0), {B1, B2}, EMPTY},
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.abi/
H A Dempty2.C10 struct B2 : A {}; struct
22 struct C2 : B1, B2
26 struct C3 : B1, B2, B3
30 struct C4 : B1, B2, B3, B4
34 struct C5 : B1, B2, B3, B4, B5
38 struct C6 : B1, B2, B3, B4, B5, B6
42 struct C7 : B1, B2, B3, B4, B5, B6, B7
46 struct C8 : B1, B2, B3, B4, B5, B6, B7, B8
87 if (Check<B2, C2> ()) in main()
H A Dvtable3.h84 struct B2: virtual A { struct
89 B2(); argument
90 ~B2();
127 B2::B2() in B2() function
131 Test <B2> (this, 3); in B2()
133 B2::~B2() in ~B2()
137 Test <B2> (this, 3); in ~B2()
H A Dprimary3.C8 struct B2 : virtual A {}; struct
9 struct C : virtual B1, B2 {};
19 B2 *b2pc = &c; in main()
23 B2 *b2pd = &d; in main()
H A Dcrash1.C13 struct B2 : virtual A2 {}; struct
15 struct C1 : virtual B2 {};
16 struct C2 : virtual B2 {};
H A Dempty3.C11 struct B2 : A {}; struct
14 struct C : B1, B2, virtual B3 {};
H A Dprimary4.C9 struct B2 : virtual A {}; struct
13 struct D : virtual B1, B2, C {};
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/inherit/
H A Doperator1.C9 struct B2;
11 B2* p;
18 struct B2 { struct
24 struct B3 : public B1, public B2 { argument
29 p = (B2*) &b; in main()
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Ddcast3.C12 struct B2 : public virtual A { }; struct
13 struct C2 : public B2 { };
14 struct D2 : public B2 { };
30 if (dynamic_cast <B2*> (ap) != 0) in main()
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet35.C10 class B2:public virtual A { };
12 class C:public B1, public B2 {
21 printf("&c.B2::x = %x\n", &c.B2::x); in main()
24 || &c.x != &c.B2::x in main()
H A Dwarn6.C11 struct B2 { struct
28 struct D : public B, public B2, public B3 {
/openbsd/gnu/gcc/gcc/config/m32c/
H A Dbitops.md90 bclr\t%B2,%0
91 bclr\t%B2,%h0
106 bclr\t%B2,%0
108 bclr\t%B2,%0
151 bset\t%B2,%0
166 bset %B2,%0
168 bset\t%B2,%0
184 bclr\t%B2,%0
185 bclr\t%B2,%0
199 bclr\t%B2,%0
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Dnew6.C4 struct B2 { virtual ~B2(); }; struct
5 struct D : B1, B2 {};
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dref3.C8 struct B2 struct
13 struct D: public B1, B2 argument
17 bool f (B2& b) in f()
H A Doverride2.C8 struct B2: virtual A { virtual void f (); }; struct
9 struct C: public B1, public B2 {}; // ERROR - no final overrider
H A Daccess7.C11 struct B2 { }; struct
25 B2 b2; in f()
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dctors14.C33 class B2 : public A2 {
35 B2(void) : A2() {} in B2() function
36 B2(int) : A2() {} in B2() function
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dstruct-ret-1.c26 B B2 = {0.2,{5,4,3}}; variable
49 Xr = f (B1, c2, d3, B2); in main()
52 Xr = (*fp) (B1, c2, d3, B2); in main()
/openbsd/gnu/usr.bin/perl/dist/base/t/
H A Dfields-5_6_0.t70 package B2;
86 use base 'B2';
97 use base qw(M B2);
111 use base 'B2';
132 B2 => "_b1:1,b1:2,_b2:3,b2:4",
153 my B2 $obj1 = D3->new;
154 $obj1->{b1} = "B2";
158 ok( $obj1->[2] eq "B2" && $obj1->[5] eq "D3" );
H A Dfields-base.t31 package B2; package
115 B2 => [qw(_b1 b1 _b2 b2)],
154 my B2 $obj1 = D3->new;
H A Dfields-5_8_0.t30 package B2; package
94 B2 => "_b1:1,b1:2,_b2:3,b2:4",
117 my B2 $obj1 = D3->new;
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dtypedef4.C8 struct B2 { struct
13 struct D : public B1, public B2 { argument
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/lookup/
H A Ddisamb1.C10 struct B2: public A {}; struct
12 struct C: public B1, public B2

12345678