Home
last modified time | relevance | path

Searched refs:ME (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/netbsd/external/gpl3/gdb/dist/include/elf/
H A Darc-reloc.def205 ( ME ( ( S + A ) ) ))
212 ( ME ( ( S + A ) ) ))
219 ( ME ( ( A - S ) ) ))
338 ( ME ( ( ( S + A ) - P ) ) ))
359 ( ME ( ( ( L + A ) - P ) ) ))
380 ( ME ( S ) ))
387 ( ME ( ( B + A ) ) ))
401 ( ME ( ( GOT_BEGIN - P ) ) ))
471 ( ME ( S - FINAL_SECTSTART ) + A ))
478 ( ME ( ( S - TLS_REL ) ) ))
[all …]
/netbsd/external/gpl3/binutils.old/dist/include/elf/
H A Darc-reloc.def205 ( ME ( ( S + A ) ) ))
212 ( ME ( ( S + A ) ) ))
219 ( ME ( ( A - S ) ) ))
338 ( ME ( ( ( S + A ) - P ) ) ))
359 ( ME ( ( ( L + A ) - P ) ) ))
380 ( ME ( S ) ))
387 ( ME ( ( B + A ) ) ))
401 ( ME ( ( GOT_BEGIN - P ) ) ))
471 ( ME ( S - FINAL_SECTSTART ) + A ))
478 ( ME ( ( S - TLS_REL ) ) ))
[all …]
/netbsd/external/gpl3/binutils/dist/include/elf/
H A Darc-reloc.def205 ( ME ( ( S + A ) ) ))
212 ( ME ( ( S + A ) ) ))
219 ( ME ( ( A - S ) ) ))
338 ( ME ( ( ( S + A ) - P ) ) ))
359 ( ME ( ( ( L + A ) - P ) ) ))
380 ( ME ( S ) ))
387 ( ME ( ( B + A ) ) ))
401 ( ME ( ( GOT_BEGIN - P ) ) ))
471 ( ME ( S - FINAL_SECTSTART ) + A ))
478 ( ME ( ( S - TLS_REL ) ) ))
[all …]
/netbsd/external/gpl3/gdb.old/dist/include/elf/
H A Darc-reloc.def205 ( ME ( ( S + A ) ) ))
212 ( ME ( ( S + A ) ) ))
219 ( ME ( ( A - S ) ) ))
338 ( ME ( ( ( S + A ) - P ) ) ))
359 ( ME ( ( ( L + A ) - P ) ) ))
380 ( ME ( S ) ))
387 ( ME ( ( B + A ) ) ))
401 ( ME ( ( GOT_BEGIN - P ) ) ))
471 ( ME ( S - FINAL_SECTSTART ) + A ))
478 ( ME ( ( S - TLS_REL ) ) ))
[all …]
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DFileEntry.h62 StringRef getName() const { return ME->first(); } in getName()
64 return *ME->second->V.get<FileEntry *>(); in getFileEntry()
66 DirectoryEntryRef getDir() const { return *ME->second->Dir; } in getDir()
125 MapValue(MapEntry &ME) : V(&ME) {} in MapValue()
129 bool isSameRef(const FileEntryRef &RHS) const { return ME == RHS.ME; } in isSameRef()
151 explicit FileEntryRef(const MapEntry &ME) : ME(&ME) { in FileEntryRef() argument
152 assert(ME.second && "Expected payload"); in FileEntryRef()
153 assert(ME.second->V && "Expected non-null"); in FileEntryRef()
166 FileEntryRef(optional_none_tag) : ME(nullptr) {} in FileEntryRef()
167 bool hasOptionalValue() const { return ME; } in hasOptionalValue()
[all …]
H A DDirectoryEntry.h47 const DirectoryEntry &getDirEntry() const { return *ME->getValue(); } in getDirEntry()
49 StringRef getName() const { return ME->getKey(); } in getName()
59 const MapEntry &getMapEntry() const { return *ME; } in getMapEntry()
62 bool isSameRef(DirectoryEntryRef RHS) const { return ME == RHS.ME; } in isSameRef()
65 DirectoryEntryRef(const MapEntry &ME) : ME(&ME) {} in DirectoryEntryRef() argument
91 DirectoryEntryRef(optional_none_tag) : ME(nullptr) {} in DirectoryEntryRef()
92 bool hasOptionalValue() const { return ME; } in hasOptionalValue()
100 : ME(llvm::DenseMapInfo<const MapEntry *>::getEmptyKey()) {}
102 : ME(llvm::DenseMapInfo<const MapEntry *>::getTombstoneKey()) {}
108 const MapEntry *ME;
/netbsd/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp49 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) { in VisitObjCMessageExpr() argument
50 if (ME->isDelegateInitCall() && in VisitObjCMessageExpr()
51 isRemovable(ME) && in VisitObjCMessageExpr()
53 ME->getExprLoc())) { in VisitObjCMessageExpr()
56 ME->getExprLoc()); in VisitObjCMessageExpr()
57 SourceRange ExprRange = ME->getSourceRange(); in VisitObjCMessageExpr()
H A DTransAutoreleasePool.cpp352 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E); in isPoolCreation() local
353 if (!ME) return false; in isPoolCreation()
354 if (ME->getMethodFamily() == OMF_new && in isPoolCreation()
355 ME->getReceiverKind() == ObjCMessageExpr::Class && in isPoolCreation()
356 isNSAutoreleasePool(ME->getReceiverInterface())) in isPoolCreation()
359 ME->getMethodFamily() == OMF_init) { in isPoolCreation()
360 Expr *rec = getEssential(ME->getInstanceReceiver()); in isPoolCreation()
375 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S); in isPoolDrain() local
376 if (!ME) return false; in isPoolDrain()
381 return ME->getMethodFamily() == OMF_release || in isPoolDrain()
[all …]
H A DTransZeroOutPropsInDealloc.cpp42 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) { in VisitObjCMessageExpr() argument
46 if (ME->getReceiverKind() != ObjCMessageExpr::Instance) in VisitObjCMessageExpr()
48 Expr *receiver = ME->getInstanceReceiver(); in VisitObjCMessageExpr()
61 if (PropDecl->getSetterName() == ME->getSelector()) { in VisitObjCMessageExpr()
71 Expr *RHS = ME->getArg(0); in VisitObjCMessageExpr()
75 if (RHSIsNull && isRemovable(ME)) in VisitObjCMessageExpr()
76 TA.removeStmt(ME); in VisitObjCMessageExpr()
H A DTransRetainReleaseDealloc.cpp294 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) { in getReferencedDecl() local
295 switch (ME->getMethodFamily()) { in getReferencedDecl()
300 return getReferencedDecl(ME->getInstanceReceiver()); in getReferencedDecl()
307 if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) in getReferencedDecl() local
308 return ME->getMemberDecl(); in getReferencedDecl()
404 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E)) in isDelegateMessage() local
405 return (ME->isInstanceMessage() && ME->getSelector() == DelegateSel); in isDelegateMessage()
/netbsd/external/gpl3/autoconf/dist/build-aux/
H A Dgitlog-to-changelog34 (my $ME = $0) =~ s|.*/||;
40 warn "$ME: failed to close standard output: $!\n";
55 Usage: $ME [OPTIONS] [ARGS]
59 $ME, they may be preceded by '--'.
82 $ME --since=2008-01-01 > ChangeLog
83 $ME -- -n 5 foo > last-5-commits-to-branch-foo
237 or die "$ME:$.: unexpected EOF\n";
242 or die "$ME:$.: malformed log entry\n";
244 or die "$ME:$.: invalid SHA1: $sha\n";
269 or die "$ME:$.: unexpected EOF\n";
[all …]
H A Dannounce-gen37 (my $ME = $0) =~ s|.*/||;
48 print $STREAM "Try '$ME --help' for more information.\n";
54 Usage: $ME [OPTIONS]
110 and (warn "$ME: command failed: '$cmd'\n"), $fail = 1;
160 or die "$ME: $f: cannot open for reading: $!\n";
198 or die "$ME: $news_file: cannot open for reading: $!\n";
284 or die "$ME: cannot run '$cmd': $!\n";
388 version => sub { print "$ME version $VERSION\n"; exit },
394 or (warn "$ME: release type not specified\n"), $fail = 1;
396 or (warn "$ME: package name not specified\n"), $fail = 1;
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp44 const MCExpr *ME; in GetSymbolRef() local
85 ME = MCSymbolRefExpr::create(Symbol, RelocationType, MC); in GetSymbolRef()
88 ME = MCBinaryExpr::createAdd(ME, MCConstantExpr::create(MO.getOffset(), MC), in GetSymbolRef()
91 ME = HexagonMCExpr::create(ME, MC); in GetSymbolRef()
92 HexagonMCInstrInfo::setMustExtend(*ME, MustExtend); in GetSymbolRef()
93 return MCOperand::createExpr(ME); in GetSymbolRef()
H A DBitTracker.cpp805 uint16_t DefBW = ME.getRegBitWidth(DefRR); in visitPHI()
807 RegisterCell DefC = ME.getCell(DefRR, Map); in visitPHI()
826 RegisterCell ResC = ME.getCell(RU, Map); in visitPHI()
837 ME.putCell(DefRR, DefC, Map); in visitPHI()
850 bool Eval = ME.evaluate(MI, Map, ResMap); in visitNonBranch()
883 uint16_t DefBW = ME.getRegBitWidth(RD); in visitNonBranch()
885 if (RefC != ME.getCell(RD, Map)) { in visitNonBranch()
886 ME.putCell(RD, RefC, Map); in visitNonBranch()
911 ME.putCell(RD, DefC, Map); in visitNonBranch()
992 return ME.getCell(RR, Map); in get()
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp147 void ExprEngine::VisitObjCMessage(const ObjCMessageExpr *ME, in VisitObjCMessage() argument
152 CEMgr.getObjCMethodCall(ME, Pred->getState(), Pred->getLocationContext()); in VisitObjCMessage()
199 Pred = Bldr.generateNode(ME, Pred, nilState, nullptr, in VisitObjCMessage()
220 Pred = Bldr.generateNode(ME, Pred, notNilState); in VisitObjCMessage()
250 if (ObjCNoRet.isImplicitNoReturn(ME)) { in VisitObjCMessage()
253 Bldr.generateSink(ME, Pred, State); in VisitObjCMessage()
260 if (ObjCNoRet.isImplicitNoReturn(ME)) { in VisitObjCMessage()
263 Bldr.generateSink(ME, Pred, Pred->getState()); in VisitObjCMessage()
/netbsd/external/apache2/llvm/dist/clang/lib/Analysis/
H A DObjCNoReturn.cpp48 bool ObjCNoReturn::isImplicitNoReturn(const ObjCMessageExpr *ME) { in isImplicitNoReturn() argument
49 Selector S = ME->getSelector(); in isImplicitNoReturn()
51 if (ME->isInstanceMessage()) { in isImplicitNoReturn()
56 if (const ObjCInterfaceDecl *ID = ME->getReceiverInterface()) { in isImplicitNoReturn()
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DRunLoopAutoreleaseLeakChecker.cpp91 const auto *ME = Match.getNodeAs<ObjCMessageExpr>(OtherMsgBind); in emitDiagnostics() local
92 assert(ME); in emitDiagnostics()
103 assert(ME != RLR); in emitDiagnostics()
106 if (seenBefore(DeclBody, RLR, ME)) in emitDiagnostics()
113 ME, BR.getSourceManager(), ADC); in emitDiagnostics()
114 SourceRange Range = ME->getSourceRange(); in emitDiagnostics()
H A DInvalidatedIteratorChecker.cpp46 void checkPreStmt(const MemberExpr *ME, CheckerContext &C) const;
107 void InvalidatedIteratorChecker::checkPreStmt(const MemberExpr *ME, in checkPreStmt() argument
109 if (!ME->isArrow() || ME->isImplicitAccess()) in checkPreStmt()
113 SVal BaseVal = State->getSVal(ME->getBase(), C.getLocationContext()); in checkPreStmt()
H A DIvarInvalidationChecker.cpp139 void checkObjCMessageExpr(const ObjCMessageExpr *ME);
163 void VisitObjCMessageExpr(const ObjCMessageExpr *ME);
605 const ObjCMessageExpr *ME) { in checkObjCMessageExpr() argument
606 const ObjCMethodDecl *MD = ME->getMethodDecl(); in checkObjCMessageExpr()
691 const ObjCMessageExpr *ME) { in VisitObjCMessageExpr() argument
692 const ObjCMethodDecl *MD = ME->getMethodDecl(); in VisitObjCMessageExpr()
693 const Expr *Receiver = ME->getInstanceReceiver(); in VisitObjCMessageExpr()
703 if (MD && (ME->getNumArgs() == 1) && isZero(ME->getArg(0))) { in VisitObjCMessageExpr()
719 VisitStmt(ME); in VisitObjCMessageExpr()
H A DMallocOverflowSecurityChecker.cpp144 static const Decl *getDecl(const MemberExpr *ME) { in getDecl() argument
145 return ME->getMemberDecl(); in getDecl()
165 else if (const auto *ME = dyn_cast<MemberExpr>(E)) { in CheckExpr() local
166 Erase<MemberExpr>(ME, PredTrue); in CheckExpr()
222 else if (const auto *ME = dyn_cast<MemberExpr>(E)) in CheckAssignmentExpr() local
223 Erase<MemberExpr>(ME, pred); in CheckAssignmentExpr()
/netbsd/games/fortune/datfiles/
H A Dunamerican-o.real5 SELL ME DRUGS
7 TELEVISION LOVES ME
47 JESUS HATES ME
154 TOUCH ME I'M SICK
180 THIS ISN'T ME
241 DON'T LET ME FAIL
271 SOMEBODY DOSE ME
319 HOOK ME UP BABY
377 SHOW ME THE WAY
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCTargetDesc.h58 static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { in isRunOfOnes() argument
66 ME = countLeadingZeros((Val - 1) ^ Val); in isRunOfOnes()
72 ME = countLeadingZeros(Val) - 1; in isRunOfOnes()
82 static inline bool isRunOfOnes64(uint64_t Val, unsigned &MB, unsigned &ME) { in isRunOfOnes64() argument
90 ME = countLeadingZeros((Val - 1) ^ Val); in isRunOfOnes64()
96 ME = countLeadingZeros(Val) - 1; in isRunOfOnes64()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnyCall.h78 AnyCall(const ObjCMessageExpr *ME) in AnyCall() argument
79 : E(ME), D(ME->getMethodDecl()), K(ObjCMethod) {} in AnyCall()
113 if (const auto *ME = dyn_cast<ObjCMessageExpr>(E)) { in forExpr() local
114 return AnyCall(ME); in forExpr()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVMCInstLower.cpp78 const MCExpr *ME = in lowerSymbolOperand() local
82 ME = MCBinaryExpr::createAdd( in lowerSymbolOperand()
83 ME, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx); in lowerSymbolOperand()
86 ME = RISCVMCExpr::create(ME, Kind, Ctx); in lowerSymbolOperand()
87 return MCOperand::createExpr(ME); in lowerSymbolOperand()
/netbsd/external/gpl2/lvm2/dist/test/
H A Dmkdtemp28 ME=$(basename "$0")
29 die() { echo >&2 "$ME: $@"; exit 1; }
67 *) die "Usage: $ME DIR TEMPLATE";;

12345678910>>...12