Searched refs:IM (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_casinh.c16 #define IM(z) (((double *)(&z))[1]) macro
68 IM(input) = values[i].input_im;
70 IM(result) = values[i].result_im;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h1739 IntervalMap &IM = *this->map;
1744 if (IM.rootSize < RootBranch::Capacity) {
1745 IM.rootBranch().insert(P.offset(0), IM.rootSize, Node, Stop);
1746 P.setSize(0, ++IM.rootSize);
1753 IdxPair Offset = IM.splitRoot(P.offset(0));
1754 P.replaceRoot(&IM.rootBranch(), IM.rootSize, Offset);
1784 IntervalMap &IM = *this->map;
1788 unsigned Size = IM
[all...]
/freebsd-11-stable/contrib/telnet/telnetd/
H A Dtelnetd.c737 char *IM; local
906 IM = Getstr("im", &cp);
912 IM = 0;
914 if (IM == 0)
915 IM = strdup("");
917 IM = strdup(DEFAULT_IM);
921 if (hostinfo && *IM)
922 putf(IM, ptyibuf2);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp257 InspectMemInstr &IM) const;
263 RegDefsUses &RegDU, InspectMemInstr &IM, Iter Slot,
691 InspectMemInstr &IM, Iter Slot,
726 if (delayHasHazard(*CurrI, RegDU, IM))
834 std::unique_ptr<InspectMemInstr> IM; local
851 IM.reset(new LoadFromStackOrConst());
854 IM.reset(new MemDefsUses(Fn->getDataLayout(), &MFI));
857 if (!searchRange(MBB, SuccBB->begin(), SuccBB->end(), RegDU, *IM, Slot,
946 InspectMemInstr &IM) const {
952 HasHazard |= IM
689 searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End, RegDefsUses &RegDU, InspectMemInstr &IM, Iter Slot, IterTy &Filler) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp515 Instruction *IM = dyn_cast<Instruction>(IW->getOperand(i)); local
516 if (!IM || IM->getOpcode() == Instruction::PHI)
519 // If IM is in another BB, no need to move it, because this pass only
521 if (IM->getParent() != I->getParent())
524 if (!OBB.dominates(IM, I)) {
525 InstructionsToMove.insert(IM);
526 Worklist.push_back(IM);
536 Instruction *IM = &*BBI; local
538 IM
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp442 auto &IM = IOL[DepWrite]; local
456 auto ILI = IM.lower_bound(LaterIntStart);
457 if (ILI != IM.end() && ILI->second <= LaterIntEnd) {
463 ILI = IM.erase(ILI);
471 while (ILI != IM.end() && ILI->second <= LaterIntEnd) {
474 ILI = IM.erase(ILI);
478 IM[LaterIntEnd] = LaterIntStart;
480 ILI = IM.begin();
/freebsd-11-stable/libexec/getty/
H A Dmain.c329 if (IM && *IM && !(PL && PP))
330 putf(IM);
H A Dgettytab.h62 #define IM gettystrs[2].value macro
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h492 [=](const IdxMBBPair &IM) { return IM.first < To; });
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dtelnetd.c829 char *IM; local
977 IM = DEFAULT_IM;
980 if (hostinfo && *IM)
981 putf(IM, ptyibuf2);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp600 MSInheritanceModel IM = RD->getMSInheritanceModel(); local
609 if (IM == MSInheritanceModel::Virtual)
618 switch (IM) {
632 if (inheritanceModelHasVBPtrOffsetField(IM))
634 if (inheritanceModelHasVBTableOffsetField(IM))
646 MSInheritanceModel IM = RD->getMSInheritanceModel(); local
649 switch (IM) {
680 if (VBTableOffset == 0 && IM == MSInheritanceModel::Virtual)
684 if (IM == MSInheritanceModel::Single) {
688 if (IM
[all...]
H A DDeclObjC.cpp1797 if (auto *IM = dyn_cast<ObjCImplementationDecl>(DC))
1798 ID = IM->getClassInterface();
H A DASTContext.cpp10689 for (ObjCMethodDecl::param_const_iterator IM = MethodImpl->param_begin(),
10692 IM != EM && IF != EF; ++IM, ++IF) {
10694 const ParmVarDecl *ImplVar = (*IM);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp2285 HexagonBlockRanges::InstrIndexMap &IM = F->second; local
2286 HexagonBlockRanges::RegToRangeMap LM = HBR.computeLiveMap(IM);
2287 HexagonBlockRanges::RegToRangeMap DM = HBR.computeDeadMap(IM, LM);
2301 MachineInstr &SI = *IM.getInstr(Range.start());
2302 MachineInstr &EI = *IM.getInstr(Range.end());
2311 unsigned FoundR = this->findPhysReg(MF, Range, IM, DM, RC);
2346 IM.replaceInstr(&SI, CopyIn);
2371 IM.replaceInstr(&MI, CopyOut);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp625 for (unsigned IM = (unsigned)ISD::PRE_INC;
626 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
627 setIndexedLoadAction(IM, VT, Expand);
628 setIndexedStoreAction(IM, VT, Expand);
629 setIndexedMaskedLoadAction(IM, VT, Expand);
630 setIndexedMaskedStoreAction(IM, VT, Expand);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp2558 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
2561 IM != EM && IF != EF; ++IM, ++IF) {
2562 CheckMethodOverrideParam(*this, ImpMethodDecl, MethodDecl, *IM, *IF,
2581 for (ObjCMethodDecl::param_iterator IM = Method->param_begin(),
2584 IM != EM && IF != EF; ++IM, ++IF) {
2585 CheckMethodOverrideParam(*this, Method, Overridden, *IM, *IF,
2615 for (ObjCMethodDecl::param_iterator IM = ImpMethodDecl->param_begin(),
2618 IM !
[all...]
H A DSemaType.cpp8040 MSInheritanceModel IM; local
8045 IM = RD->calculateInheritanceModel();
8048 IM = MSInheritanceModel::Single;
8051 IM = MSInheritanceModel::Multiple;
8054 IM = MSInheritanceModel::Unspecified;
8063 MSInheritanceAttr::Spelling(IM)));
H A DSemaObjCProperty.cpp2280 ObjCMethodDecl *IM = PID->getGetterMethodDecl(); local
2281 if (IM && !IM->isSynthesizedAccessorStub())
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp174 for (auto &IM : InnerMatchers) {
176 RestrictKind, IM.RestrictKind);
/freebsd-11-stable/contrib/gcc/
H A Dtree.h221 #define DEF_BUILTIN(ENUM, N, C, T, LT, B, F, NA, AT, IM, COND) ENUM,
H A Dbuiltins.c59 #define DEF_BUILTIN(X, N, C, T, LT, B, F, NA, AT, IM, COND) #X,

Completed in 328 milliseconds