Searched refs:M1 (Results 1 - 25 of 25) sorted by relevance

/freebsd-11.0-release/share/examples/printing/
H A Dhpdf53 dvilj2p -M1 -q -e- dfhp$$.dvi
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DMultilib.h119 MultilibSet &Either(const Multilib &M1, const Multilib &M2);
120 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
122 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
124 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DMultilib.cpp153 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2) { argument
154 return Either({M1, M2});
157 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument
159 return Either({M1, M2, M3});
162 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument
164 return Either({M1, M2, M3, M4});
167 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2, argument
170 return Either({M1, M2, M3, M4, M5});
/freebsd-11.0-release/contrib/gcc/
H A Dlambda-mat.c600 lambda_matrix M1, M2, M3, I; local
605 /* M1 is the transpose of B. */
606 M1 = lambda_matrix_new (colsize, colsize);
607 lambda_matrix_transpose (B, M1, rowsize, colsize);
611 lambda_matrix_mult (B, M1, M2, rowsize, colsize, rowsize);
618 lambda_matrix_mult (M1, M3, M2, colsize, rowsize, rowsize);
620 /* M1 = B^T (inv(B B^T)) B */
621 lambda_matrix_mult (M2, B, M1, colsize, rowsize, colsize);
622 lambda_matrix_negate (M1, M1, colsiz
[all...]
H A Dc-common.c6272 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
/freebsd-11.0-release/crypto/openssl/crypto/md5/asm/
H A Dmd5-ia64.S40 // {in,out}9 Block Value 1 M1
126 #define M1 in9 define
310 // loading into M12 here produces the M0 value, M13 -> M1, etc.
544 G(D, A, B, C, M1) \
545 COMPUTE(D, A, 9, M1, RotateM1) \
554 H(D, A, B, C, M1) \
555 COMPUTE(D, A, 11, M1, RotateM1) \
564 I(D, A, B, C, M1) \
565 COMPUTE(D, A, 10, M1, RotateM1) \
677 mov M0 = M1
[all...]
/freebsd-11.0-release/contrib/llvm/tools/bugpoint/
H A DExtractFunction.cpp245 /// SplitStaticCtorDtor - A module was recently split into two parts, M1/M2, and
246 /// M1 has all of the global variables. If M2 contains any functions that are
249 static void SplitStaticCtorDtor(const char *GlobalName, Module *M1, Module *M2, argument
251 GlobalVariable *GV = M1->getNamedGlobal(GlobalName);
288 new GlobalVariable(*M1, M1Init->getType(), false,
294 assert(GV && "Not a clone of M1?");
H A DMiscompilation.cpp220 std::unique_ptr<Module> M1,
224 if (Linker::linkModules(*M1, std::move(M2)))
228 Broken = BD.diffProgram(M1.get(), "", "", false, &Error);
231 return M1;
219 testMergedProgram(const BugDriver &BD, std::unique_ptr<Module> M1, std::unique_ptr<Module> M2, std::string &Error, bool &Broken) argument
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp363 if (const MDNode *M1 =
367 if (!Aliases(M1, M2))
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp596 Value *M1 = ConstantExpr::getFMul(C1, C); local
597 Value *M0 = isNormalFp(cast<Constant>(M1)) ?
600 if (M0 && M1) {
602 std::swap(M0, M1);
605 ? BinaryOperator::CreateFAdd(M0, M1)
606 : BinaryOperator::CreateFSub(M0, M1);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp485 ProgramState::GenericDataMap M1 = St->getGDM(); local
486 ProgramState::GenericDataMap M2 = GDMFactory.add(M1, Key, Data);
488 if (M1 == M2)
/freebsd-11.0-release/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-x86_64.pl1370 my ($M1,$T2a,$T2b,$TMP2,$M2,$T2a,$T2b,$TMP2)=map("%xmm$_",(8..15));
1561 my ($M1,$T1a,$T1b,$T1c,$TMP1)=map("%ymm$_",(10..14));
1595 vmovdqa .LTwo(%rip), $M1
1612 vpcmpeqd $INDEX, $M1, $TMP1
1615 vpaddd $TWO, $M1, $M1
1663 my ($M1,$T1a,$T1b,$TMP1)=map("%ymm$_",(8..11));
1699 vmovdqa .LTwo(%rip), $M1
1719 vpcmpeqd $INDEX, $M1, $TMP1
1723 vpaddd $THREE, $M1,
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1402 OpenMPScheduleClauseModifier M1; member in struct:__anon3814::ScheduleKindModifiersTy
1405 OpenMPScheduleClauseModifier M1,
1407 : Kind(Kind), M1(M1), M2(M2) {}
1416 OpenMPScheduleClauseModifier M1 = OMPC_SCHEDULE_MODIFIER_unknown; local
1421 M1 = C->getFirstScheduleModifier();
1444 return std::make_pair(Chunk, ScheduleKindModifiersTy(ScheduleKind, M1, M2));
1521 const OpenMPScheduleClauseModifier M1 = ScheduleInfo.second.M1; local
1565 M1
1404 ScheduleKindModifiersTy(OpenMPScheduleClauseKind Kind, OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DLowerBitSets.cpp1030 std::sort(BitSets.begin(), BitSets.end(), [&](Metadata *M1, Metadata *M2) {
1031 return BitSetIdIndices[M1] < BitSetIdIndices[M2];
/freebsd-11.0-release/contrib/groff/src/preproc/pic/
H A Dcommon.cpp111 position M1 = position(rho * cos(phi1), rho * sin(phi1)) + M; local
113 double dist1 = hypot(z1 - M1) / sqrt(z1 * z1);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp714 if (const MDNode *M1 = dyn_cast<MDNode>(M->getOperand(i)))
715 if (MD.insert(M1))
716 Queue.push_back(M1);
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonGenInsert.cpp1070 unsigned M0 = BaseOrd[MaxIF.SrcR], M1 = BaseOrd[MaxIF.InsR];
1075 if (M1 > R1)
1077 if (M1 == R1) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp6164 static bool checkScheduleModifiers(Sema &S, OpenMPScheduleClauseModifier M1,
6167 if (M1 == OMPC_SCHEDULE_MODIFIER_unknown && M1Loc.isValid()) {
6187 OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2,
6191 if (checkScheduleModifiers(*this, M1, M2, M1Loc, M2Loc) ||
6192 checkScheduleModifiers(*this, M2, M1, M2Loc, M1Loc))
6197 if ((M1 == M2 && M1 != OMPC_SCHEDULE_MODIFIER_unknown) ||
6198 (M1 == OMPC_SCHEDULE_MODIFIER_monotonic &&
6200 (M1 == OMPC_SCHEDULE_MODIFIER_nonmonotonic &&
6204 << getOpenMPSimpleClauseTypeName(OMPC_schedule, M1);
[all...]
H A DTreeTransform.h1485 OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2,
1490 M1, M2, Kind, ChunkSize, StartLoc, LParenLoc, M1Loc, M2Loc, KindLoc,
1484 RebuildOMPScheduleClause( OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2, OpenMPScheduleClauseKind Kind, Expr *ChunkSize, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation M1Loc, SourceLocation M2Loc, SourceLocation KindLoc, SourceLocation CommaLoc, SourceLocation EndLoc) argument
/freebsd-11.0-release/contrib/binutils/opcodes/
H A Dmips-opc.c111 #define M1 INSN_10000 macro
800 {"mfpc", "t,P", 0x4000c801, 0xffe0ffc1, LCD|WR_t|RD_C0, 0, M1|N5 },
801 {"mfps", "t,P", 0x4000c800, 0xffe0ffc1, LCD|WR_t|RD_C0, 0, M1|N5 },
885 {"mtpc", "t,P", 0x4080c801, 0xffe0ffc1, COD|RD_t|WR_C0, 0, M1|N5 },
886 {"mtps", "t,P", 0x4080c800, 0xffe0ffc1, COD|RD_t|WR_C0, 0, M1|N5 },
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp1745 auto LessThan = [](const MergeCandidate* M0, const MergeCandidate *M1) {
1746 return M0->InsertPos < M1->InsertPos;
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DOpenMPClause.h752 /// \param M1 The first modifier applied to 'schedule' clause.
761 OpenMPScheduleClauseModifier M1, SourceLocation M1Loc,
767 Modifiers[FIRST] = M1;
757 OMPScheduleClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation KLoc, SourceLocation CommaLoc, SourceLocation EndLoc, OpenMPScheduleClauseKind Kind, Expr *ChunkSize, Expr *HelperChunkSize, OpenMPScheduleClauseModifier M1, SourceLocation M1Loc, OpenMPScheduleClauseModifier M2, SourceLocation M2Loc) argument
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp615 Register = Hexagon::M1;
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3725 int M1 = SV1->getMaskElt(i); local
3728 if (M0 < 0 && M1 < 0) {
3734 if (M0 < 0 || M1 < 0 ||
3735 (M0 < (int)NumElts && M1 < (int)NumElts) ||
3736 (M0 >= (int)NumElts && M1 >= (int)NumElts)) {
3741 Mask1.push_back(M0 < (int)NumElts ? M0 : M1 + NumElts);
3742 Mask2.push_back(M1 < (int)NumElts ? M1 : M0 + NumElts);
13462 // shuffle(shuffle(A, B, M0), C, M1) -> shuffle(A, B, M2)
13463 // shuffle(shuffle(A, B, M0), C, M1)
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h8063 OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2,

Completed in 544 milliseconds