Searched refs:B2 (Results 1 - 22 of 22) sorted by relevance

/freebsd-11.0-release/lib/libcrypt/
H A Dmisc.c50 b64_from_24bit(uint8_t B2, uint8_t B1, uint8_t B0, int n, int *buflen, char **cp) argument
55 w = (B2 << 16) | (B1 << 8) | B0;
H A Dcrypt.h43 extern void b64_from_24bit(uint8_t B2, uint8_t B1, uint8_t B0, int n, int *buflen, char **cp);
/freebsd-11.0-release/lib/msun/src/
H A Ds_cbrtf.c28 B2 = 642849266; /* B2 = (127-127.0/3-24/3-0.03306235651)*2**23 */ variable
51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
H A Ds_cbrt.c26 B2 = 696219795; /* B2 = (1023-1023/3-54/3-0.03306235651)*2**20 */ variable
74 INSERT_WORDS(t,sign|((high&0x7fffffff)/3+B2),0);
/freebsd-11.0-release/contrib/binutils/opcodes/
H A Dia64-opc-b.c82 B0, OpX6BtypePaWhaDPr (0, 0x20, 0, a, 0, b, 0), {B2}, PSEUDO, 0, NULL
91 #define BR(a,b,c,d,e) B0, OpX6BtypePaWhaD (0, a, b, c, d, e), {B2}, EMPTY
92 #define BRP(a,b,c,d,e) B0, OpX6BtypePaWhaD (0, a, b, c, d, e), {B2}, PSEUDO, 0, NULL
93 #define BRT(a,b,c,d,e,f) B0, OpX6BtypePaWhaD (0, a, b, c, d, e), {B2}, f, 0, NULL
206 {"br.call.sptk.few", B, OpPaWhcD (1, 0, 1, 0), {B1, B2}, EMPTY},
207 {"br.call.sptk", B, OpPaWhcD (1, 0, 1, 0), {B1, B2}, PSEUDO, 0, NULL},
208 {"br.call.sptk.few.clr", B, OpPaWhcD (1, 0, 1, 1), {B1, B2}, EMPTY},
209 {"br.call.sptk.clr", B, OpPaWhcD (1, 0, 1, 1), {B1, B2}, PSEUDO, 0, NULL},
210 {"br.call.spnt.few", B, OpPaWhcD (1, 0, 3, 0), {B1, B2}, EMPTY},
211 {"br.call.spnt", B, OpPaWhcD (1, 0, 3, 0), {B1, B2}, PSEUD
[all...]
H A Dia64-opc.h62 #define B2 IA64_OPND_B2 macro
H A Dia64-opc-i.c135 {"mov", I, OpX3X6 (0, 0, 0x31), {R1, B2}, EMPTY},
/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DTrace.h76 /// Returns true if B1 occurs before B2 in the trace, or if it is the same
77 /// block as B2.. Both blocks must be in the trace.
79 bool dominates(const BasicBlock *B1, const BasicBlock *B2) const {
80 int B1Idx = getBlockIndex(B1), B2Idx = getBlockIndex(B2);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp89 while (const BinaryOperator *B2 = dyn_cast<BinaryOperator>(LHS)) {
90 if (B->getOpcode() != B2->getOpcode())
92 if (isIdenticalStmt(AC->getASTContext(), RHS, B2->getRHS())) {
94 Sr[1] = B2->getRHS()->getSourceRange();
97 LHS = B2->getLHS();
/freebsd-11.0-release/crypto/openssl/crypto/bn/asm/
H A Drsaz-avx2.pl132 my $B2="%ymm11";
273 vpbroadcastq 32*1-128($ap), $B2
302 vpbroadcastq 32*1-128($tpa), $B2
326 vpmuludq 32*1-128($ap), $B2, $TEMP0
328 vpmuludq 32*1-128($aap), $B2, $TEMP1
330 vpmuludq 32*2-128($aap), $B2, $TEMP2
332 vpmuludq 32*3-128($aap), $B2, $TEMP0
334 vpmuludq 32*4-128($aap), $B2, $TEMP1
336 vpmuludq 32*5-128($aap), $B2, $TEMP2
338 vpmuludq 32*6-128($aap), $B2,
[all...]
/freebsd-11.0-release/contrib/libpcap/
H A Dscanner.l93 B2 ([0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f])
181 MAC ({B}:{B}:{B}:{B}:{B}:{B}|{B}\-{B}\-{B}\-{B}\-{B}\-{B}|{B}\.{B}\.{B}\.{B}\.{B}\.{B}|{B2}\.{B2}\.{B2}|{B2}{3})
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp763 /// information. Two blocks B1 and B2 are in the same equivalence class if B1
764 /// dominates B2, B2 post-dominates B1 and both are in the same loop.
952 /// edges to another block B2, we only add a single B1->B2 edge.
962 BasicBlock *B2 = *PI; local
963 if (Visited.insert(B2).second)
964 Predecessors[B1].push_back(B2);
972 BasicBlock *B2 = *SI; local
973 if (Visited.insert(B2)
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DProgramPoint.h473 BlockEdge(const CFGBlock *B1, const CFGBlock *B2, const LocationContext *L) argument
474 : ProgramPoint(B1, B2, BlockEdgeKind, L) {
476 assert(B2 && "BlockEdge: destination block must be non-null");
/freebsd-11.0-release/contrib/netbsd-tests/usr.bin/sort/
H A Dt_sort.sh476 3B2
477 ~3B2
486 3B2
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1393 Value *A1, *B1, *C1, *A2, *B2, *C2; local
1395 match(RHS, m_Select(m_Value(C2), m_Value(A2), m_Value(B2)))) {
1399 if (match(A1, m_AnyZero()) && match(B2, m_AnyZero())) {
1401 Z2 = dyn_cast<Constant>(B2); B = B1;
1403 Z1 = dyn_cast<Constant>(B1); B = B2;
/freebsd-11.0-release/contrib/dialog/
H A Ddlg_keys.c358 CURSES_NAME(B2),
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h114 case AArch64::D2: return AArch64::B2;
154 case AArch64::B2: return AArch64::D2;
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp161 const BitTracker::RegisterCell &RC2, uint16_t B2, uint16_t W);
272 uint16_t B1, const BitTracker::RegisterCell &RC2, uint16_t B2,
279 if (RC2[B2+i].Type == BitTracker::BitValue::Ref && RC2[B2+i].RefI.Reg == 0)
281 if (RC1[B1+i] != RC2[B2+i])
271 isEqual(const BitTracker::RegisterCell &RC1, uint16_t B1, const BitTracker::RegisterCell &RC2, uint16_t B2, uint16_t W) argument
/freebsd-11.0-release/contrib/subversion/
H A DMakefile.in665 subversion/tests/libsvn_diff/B2 \
/freebsd-11.0-release/contrib/gcc/config/ia64/
H A Dunwind-ia64.c1377 UNW_DEC_EPILOGUE(B2, t, (code & 0x1f), arg);
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1359 APInt B2 = B0 - Q*B1; B0 = B1; B1 = B2; local
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp348 AArch64::B0, AArch64::B1, AArch64::B2, AArch64::B3, AArch64::B4,

Completed in 294 milliseconds