Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 2413) sorted by relevance

12345678910>>...97

/freebsd/crypto/openssl/test/recipes/10-test_bn_data/
H A Dbnsum.txt10 # These test vectors satisfy A + B = Sum.
14 B = 0
18 B = 0
22 B = 0
26 B = -c590e57ee64fced3ca84d4bb013bba7d633e68b2ff4e27bf1db43f386dbfcce501f112b7fff6fb9436a576ccfccce1…
30 B = 23f85668bf4d0fa273d8c7f63c5fee57811062a674111e295a73a58e08dd0fd58eda1f473960559d5b96d1862164e96…
34 B = -4b5b16252ba2355e0b87f01baa721783c403607a4c1b5652c09a68e96926c8e314fa580bf0ad3f8f59bd70f14df86a…
38 B = 908007a2f3c551c58958d1059427a0391d4d768f61cb802e4cb062c778354ea3eaa8f0dfbd14ca8203e07ae6d07269b…
42 B = -1999301bd9877fe07ca711f308b2f1bc4a704fd194ec4dbc297355d6285340d6ad7e90cb0add1770aea19737a06750…
46 B = 219639ed8afc21e052422fff0ae5583231ebca2999404b099628093e6540b1dbc20b9c495aa7229b5965b19a5fcd653…
[all …]
H A Dbngcd.txt10 # These test vectors satisfy gcd(A, B) = GCD.
14 B = 0
19 B = 0
24 B = 1
29 B = 70030ffeeea3deaea19387f4f1d0f460a6954a2a9cb98290602ac09036143ef8eb9692f3eac22961811083e073ee0be…
34 B = 0
41 B = 3
45 B = 5
49 B = 7
53 B = 9
[all …]
H A Dbnmul.txt321 # These test vectors satisfy A * B = Product.
327 B = 857734c4c27a1d17f7cf59dee
331 B = -fb0fed5f8c737bcacef4d6cb1
335 B = ffc4581a5c3f885cf42767e67
339 B = -aaa7af472ad8957763f5a7c64
343 B = 81b26b80b43aa65aa55ded52a
347 B = -a336e50c6f7845a1686cc88a3
351 B = bae08c3006fade695029a1df6
355 B = -c9c764cae465207097ef8d2c2
359 B = d2557dceb2d02d04d9c578670
[all …]
H A Dbnmod.txt8 # These test vectors satisfy A * B = ModMul (mod M) and 0 <= ModMul < M.
15 B = 1a058d99397db0d209f01212dd4023ae01b15da04fe62d1f76f21622b2695558c67d706c535ca7f19b36f8ef2d508ff…
20 B = -8734c4a2361fc530f60b28a5f1c7e93136c5ff6bfc7553965eaca54c61e6befb3c0f8cef4280e780cc5940d21a740d…
25 B = 536d4b3e4815ae5ed55bae6950f5a8a61d52439d2800ef1b5ba2285b85ed0f6ec4af9fa0e364a6b14f6f6b8bebce920…
30 B = -2b3792f39499767e0a8b7a6a406e470a78f97ebb36765beab5fe52e95abf7582736db72a2ebfdb2405e3954c968b35…
35 B = 1384e60753dd4bc20cdabf398525e7c4aa40065255c5058cae0b2ec90a3821bea8de672a712431aef5864eab719ba62…
40 B = -d7c9b6574354e131de4b8643d766641e98554a03238ebfce1112c3da5f049d6c410a7f05758571aa2625f7190b936a…
45 B = 6f6f3f74187b7d74dee92f79be864d0a2c56d4bca3283742e9cdf15112c8f4208e3ac8ecc98b44b4ad74b0671afa4aa…
50 B = -3a2347b491813252e8ebef1bd181534b074a368d076b8c80bde2e54ec3b4ec99001f43080c7857427e069d99b1b65c…
55 B = 10474ece7ddae5c53c4df5b594439124370932dd94aa5d5b4ddaa233b1a55634fb7d72e33bf1b02965fa9d1538f97e1…
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A DREADME.pod67 B<BIGNUM> implementation. They are described here to facilitate
86 The integer value is stored in B<d>, a malloc()ed array of words (B<BN_ULONG>),
87 least significant word first. A B<BN_ULONG> can be either 16, 32 or 64 bits
88 in size, depending on the 'number of bits' (B<BITS2>) specified in
91 B<dmax> is the size of the B<d> array that has been allocated. B<top>
93 bn.top=1. B<neg> is 1 if the number is negative. When a B<BIGNUM> is
94 B<0>, the B<d> field can be B<NULL> and B<top> == B<0>.
96 B<flags> is a bit field of flags which are defined in C<openssl/bn.h>. The
97 flags begin with B<BN_FLG_>. The macros BN_set_flags(b, n) and
98 BN_get_flags(b, n) exist to enable or fetch flag(s) B<n> from B<BIGNUM>
[all …]
/freebsd/crypto/openssl/crypto/sha/
H A Dkeccak1600.c695 uint64_t B[5], C[5], D[5]; in FourRounds() local
712 B[0] = A[0][0] ^ D[0]; /* rotate by 0 */ in FourRounds()
713 B[1] = ROL64(A[1][1] ^ D[1], rhotates[1][1]); in FourRounds()
714 B[2] = ROL64(A[2][2] ^ D[2], rhotates[2][2]); in FourRounds()
715 B[3] = ROL64(A[3][3] ^ D[3], rhotates[3][3]); in FourRounds()
716 B[4] = ROL64(A[4][4] ^ D[4], rhotates[4][4]); in FourRounds()
718 C[0] = A[0][0] = B[0] ^ (~B[1] & B[2]) ^ iotas[i]; in FourRounds()
719 C[1] = A[1][1] = B[1] ^ (~B[2] & B[3]); in FourRounds()
720 C[2] = A[2][2] = B[2] ^ (~B[3] & B[4]); in FourRounds()
721 C[3] = A[3][3] = B[3] ^ (~B[4] & B[0]); in FourRounds()
[all …]
/freebsd/usr.bin/mkimg/tests/
H A Dimg-1x1-4096-mbr.raw.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 ff |B.B.B.B.B.B.B...|
8 00000200 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
23 00000510 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
24 00000520 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-1x1-512-mbr.raw.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 ff |B.B.B.B.B.B.B...|
8 00000200 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
23 00000510 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
24 00000520 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-63x255-512-mbr.raw.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 01 |B.B.B.B.B.B.B...|
10 00007e00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
25 00008110 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
26 00008120 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-63x255-4096-mbr.raw.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 01 |B.B.B.B.B.B.B...|
10 00007e00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
25 00008110 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
26 00008120 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-1x1-4096-mbr.vhdf.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 ff |B.B.B.B.B.B.B...|
8 00000200 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
23 00000510 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
24 00000520 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-1x1-512-mbr.vhdf.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 ff |B.B.B.B.B.B.B...|
8 00000200 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
23 00000510 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
24 00000520 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-63x255-512-mbr.vhdf.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 01 |B.B.B.B.B.B.B...|
10 00007e00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
25 00008110 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
26 00008120 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-63x255-4096-mbr.vhdf.hex1 00000000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
3 000001b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 01 |B.B.B.B.B.B.B...|
10 00007e00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
25 00008110 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
26 00008120 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-63x255-4096-mbr.qcow2.hex43 000301e0 80 00 00 00 00 41 00 00 80 00 00 00 00 42 00 00 |.....A.......B..|
53 00050000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
55 000501b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 01 |B.B.B.B.B.B.B...|
62 00057e00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
77 00058110 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
78 00058120 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-63x255-512-mbr.qcow2.hex43 000301e0 80 00 00 00 00 41 00 00 80 00 00 00 00 42 00 00 |.....A.......B..|
53 00050000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
55 000501b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 01 |B.B.B.B.B.B.B...|
62 00057e00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
77 00058110 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
78 00058120 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-1x1-4096-mbr.qcow2.hex43 000301e0 80 00 00 00 00 41 00 00 80 00 00 00 00 42 00 00 |.....A.......B..|
53 00050000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
55 000501b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 ff |B.B.B.B.B.B.B...|
60 00050200 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
75 00050510 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
76 00050520 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
H A Dimg-1x1-512-mbr.qcow2.hex43 000301e0 80 00 00 00 00 41 00 00 80 00 00 00 00 42 00 00 |.....A.......B..|
53 00050000 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
55 000501b0 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 80 ff |B.B.B.B.B.B.B...|
60 00050200 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
75 00050510 00 00 00 00 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |....B.B.B.B.B.B.|
76 00050520 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a 42 0a |B.B.B.B.B.B.B.B.|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSimplifyLibCalls.h52 Value *optimizeCall(CallInst *CI, IRBuilderBase &B);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilderBase &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilderBase &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilderBase &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilderBase &B, LibFunc Func);
62 Value *optimizeStrLenChk(CallInst *CI, IRBuilderBase &B);
63 Value *optimizeMemPCpyChk(CallInst *CI, IRBuilderBase &B);
64 Value *optimizeMemCCpyChk(CallInst *CI, IRBuilderBase &B);
65 Value *optimizeSNPrintfChk(CallInst *CI, IRBuilderBase &B);
[all …]
/freebsd/crypto/openssl/crypto/ripemd/
H A Drmd_dgst.c31 c->B = RIPEMD160_B; in RIPEMD160_Init()
45 register unsigned MD32_REG_T A, B, C, D, E; in ripemd160_block_data_order() local
60 B = ctx->B; in ripemd160_block_data_order()
69 RIP1(A, B, C, D, E, WL00, SL00); in ripemd160_block_data_order()
72 RIP1(E, A, B, C, D, WL01, SL01); in ripemd160_block_data_order()
75 RIP1(D, E, A, B, C, WL02, SL02); in ripemd160_block_data_order()
78 RIP1(C, D, E, A, B, WL03, SL03); in ripemd160_block_data_order()
81 RIP1(B, C, D, E, A, WL04, SL04); in ripemd160_block_data_order()
84 RIP1(A, B, C, D, E, WL05, SL05); in ripemd160_block_data_order()
87 RIP1(E, A, B, C, D, WL06, SL06); in ripemd160_block_data_order()
[all …]
/freebsd/contrib/llvm-project/lld/MachO/Arch/
H A DARM64_32.cpp46 #define B(x) RelocAttrBits::x macro
47 {"UNSIGNED", B(UNSIGNED) | B(ABSOLUTE) | B(EXTERN) | B(LOCAL) | B(BYTE4)},
48 {"SUBTRACTOR", B(SUBTRAHEND) | B(EXTERN) | B(BYTE4)},
49 {"BRANCH26", B(PCREL) | B(EXTERN) | B(BRANCH) | B(BYTE4)},
50 {"PAGE21", B(PCREL) | B(EXTERN) | B(BYTE4)},
51 {"PAGEOFF12", B(ABSOLUTE) | B(EXTERN) | B(BYTE4)},
52 {"GOT_LOAD_PAGE21", B(PCREL) | B(EXTERN) | B(GOT) | B(BYTE4)},
54 B(ABSOLUTE) | B(EXTERN) | B(GOT) | B(LOAD) | B(BYTE4)},
55 {"POINTER_TO_GOT", B(PCREL) | B(EXTERN) | B(GOT) | B(POINTER) | B(BYTE4)},
56 {"TLVP_LOAD_PAGE21", B(PCREL) | B(EXTERN) | B(TLV) | B(BYTE4)},
[all …]
/freebsd/crypto/openssl/crypto/md5/
H A Dmd5_dgst.c33 c->B = INIT_DATA_B; in MD5_Init()
46 register unsigned MD32_REG_T A, B, C, D, l; in md5_block_data_order() local
58 B = c->B; in md5_block_data_order()
68 R0(A, B, C, D, X(0), 7, 0xd76aa478L); in md5_block_data_order()
71 R0(D, A, B, C, X(1), 12, 0xe8c7b756L); in md5_block_data_order()
74 R0(C, D, A, B, X(2), 17, 0x242070dbL); in md5_block_data_order()
77 R0(B, C, D, A, X(3), 22, 0xc1bdceeeL); in md5_block_data_order()
80 R0(A, B, C, D, X(4), 7, 0xf57c0fafL); in md5_block_data_order()
83 R0(D, A, B, C, X(5), 12, 0x4787c62aL); in md5_block_data_order()
86 R0(C, D, A, B, X(6), 17, 0xa8304613L); in md5_block_data_order()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.h42 MachineIRBuilder &B) const;
45 MachineIRBuilder &B) const;
47 MachineIRBuilder &B) const;
49 MachineIRBuilder &B) const;
51 MachineIRBuilder &B) const;
53 MachineIRBuilder &B) const;
55 MachineIRBuilder &B, bool Signed) const;
57 MachineIRBuilder &B, bool Signed) const;
60 MachineIRBuilder &B) const;
62 MachineIRBuilder &B) const;
[all …]
H A DAMDGPUAtomicOptimizer.cpp77 Value *buildReduction(IRBuilder<> &B, AtomicRMWInst::BinOp Op, Value *V,
79 Value *buildScan(IRBuilder<> &B, AtomicRMWInst::BinOp Op, Value *V,
81 Value *buildShiftRight(IRBuilder<> &B, Value *V, Value *const Identity) const;
84 buildScanIteratively(IRBuilder<> &B, AtomicRMWInst::BinOp Op,
359 static Value *buildNonAtomicBinOp(IRBuilder<> &B, AtomicRMWInst::BinOp Op, in buildNonAtomicBinOp() argument
367 return B.CreateBinOp(Instruction::Add, LHS, RHS); in buildNonAtomicBinOp()
369 return B.CreateFAdd(LHS, RHS); in buildNonAtomicBinOp()
371 return B.CreateBinOp(Instruction::Sub, LHS, RHS); in buildNonAtomicBinOp()
373 return B.CreateFSub(LHS, RHS); in buildNonAtomicBinOp()
375 return B.CreateBinOp(Instruction::And, LHS, RHS); in buildNonAtomicBinOp()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CONF_cmd.pod17 The function SSL_CONF_cmd() performs configuration operation B<option> with
18 optional parameter B<value> on B<ctx>. Its purpose is to simplify application
19 configuration of B<SSL_CTX> or B<SSL> structures by providing a common
22 SSL_CONF_cmd_value_type() returns the type of value that B<option> refers to.
26 Currently supported B<option> names for command lines (i.e. when the
27 flag B<SSL_CONF_FLAG_CMDLINE> is set) are listed below. Note: all B<option>
29 both clients and servers and the B<value> parameter is not used. The default
30 prefix for command line commands is B<-> and that is reflected below.
34 =item B<-bugs>
36 Various bug workarounds are set, same as setting B<SSL_OP_ALL>.
[all …]

12345678910>>...97