Home
last modified time | relevance | path

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

12345678910>>...12

/netbsd-src/external/gpl3/binutils.old/dist/include/elf/
H A Darc-reloc.def100 ( ME ( ( ( S + A ) - _SDA_BASE_ ) ) ))
114 ( ME ( ( ( ( S + A ) - P ) >> 1 ) ) ))
121 ( ME ( ( ( ( S + A ) - P ) >> 2 ) ) ))
128 ( ME ( ( ( ( S + A ) - P ) >> 1 ) ) ))
135 ( ME ( ( ( ( S + A ) - P ) >> 2 ) ) ))
149 ( ME ( ( ( S + A ) - _SDA_BASE_ ) ) ))
156 ( ME ( ( ( ( S + A ) - _SDA_BASE_ ) >> 1 ) ) ))
163 ( ME ( ( ( ( S + A ) - _SDA_BASE_ ) >> 2 ) ) ))
205 ( ME ( ( S + A ) ) ))
212 ( ME ( ( S + A ) ) ))
[all …]
/netbsd-src/external/gpl3/binutils/dist/include/elf/
H A Darc-reloc.def100 ( ME ( ( ( S + A ) - _SDA_BASE_ ) ) ))
114 ( ME ( ( ( ( S + A ) - P ) >> 1 ) ) ))
121 ( ME ( ( ( ( S + A ) - P ) >> 2 ) ) ))
128 ( ME ( ( ( ( S + A ) - P ) >> 1 ) ) ))
135 ( ME ( ( ( ( S + A ) - P ) >> 2 ) ) ))
149 ( ME ( ( ( S + A ) - _SDA_BASE_ ) ) ))
156 ( ME ( ( ( ( S + A ) - _SDA_BASE_ ) >> 1 ) ) ))
163 ( ME ( ( ( ( S + A ) - _SDA_BASE_ ) >> 2 ) ) ))
205 ( ME ( ( S + A ) ) ))
212 ( ME ( ( S + A ) ) ))
[all …]
/netbsd-src/sys/dev/acpi/
H A Dapei.c372 const struct cper_memory_error *ME = buf; in apei_cper_memory_error_report()
382 CPER_MEMORY_ERROR_VALIDATION_BITS_FMT, ME->ValidationBits); in apei_cper_memory_error_report()
384 if (ME->ValidationBits & CPER_MEMORY_ERROR_VALID_ERROR_STATUS) { in apei_cper_memory_error_report()
416 "\0", ME->ErrorStatus); in apei_cper_memory_error_report()
419 if (ME->ValidationBits & CPER_MEMORY_ERROR_VALID_PHYSICAL_ADDRESS) { in apei_cper_memory_error_report()
421 ctx, ME->PhysicalAddress); in apei_cper_memory_error_report()
423 if (ME->ValidationBits & in apei_cper_memory_error_report()
426 "\n", ctx, ME->PhysicalAddressMask); in apei_cper_memory_error_report()
428 if (ME->ValidationBits & CPER_MEMORY_ERROR_VALID_NODE) { in apei_cper_memory_error_report()
430 ME in apei_cper_memory_error_report()
368 const struct cper_memory_error *ME = buf; apei_cper_memory_error_report() local
[all...]
/netbsd-src/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()
154 assert(ME.second->V.is<FileEntry *>() && "Expected FileEntry"); in FileEntryRef()
159 const clang::FileEntryRef::MapEntry &getMapEntry() const { return *ME; } in getMapEntry()
[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-src/external/gpl3/gdb/dist/gnulib/import/extra/
H A Dgitlog-to-changelog49 (my $ME = $0) =~ s|.*/||;
55 warn "$ME: failed to close standard output: $!\n";
65 print $STREAM "Try '$ME --help' for more information.\n";
70 Usage: $ME [OPTIONS] [ARGS]
74 $ME, they may be preceded by '--'.
333 or die "$ME:$.:$sha: failed to eval \"$code\":\n$@\n";
352 or die "$ME:$.: unexpected EOF\n";
354 or die "$ME:$.: Invalid line "
409 warn "$ME: warning: skipping $sha due to $skipflag\n";
431 or warn "$ME: warning: missing email address for "
[all …]
/netbsd-src/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()
358 if (ME->getReceiverKind() == ObjCMessageExpr::Instance && 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()
[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-src/external/gpl3/autoconf/dist/build-aux/
H A Dgitlog-to-changelog34 (my $ME = $0) =~ s|.*/||;
40 warn "$ME: failed to close standard output: $!\n";
50 print $STREAM "Try '$ME --help' for more information.\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
153 or die "$ME: $f: failed to open for reading: $!\n";
170 or (warn "$ME: $f:$.: invalid line; expected an SHA1\n"),
175 and (warn "$ME: $f:$.: duplicate SHA1\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";
226 or die "$ME: $news_file: no matching lines for '$curr_version'\n";
228 or die "$ME: $news_file: no news item found for '$curr_version'\n";
284 or die "$ME: cannot run '$cmd': $!\n";
314 or warn "$ME: warning: '$cmd' had unexpected exit code or signal ($?)\n";
[all …]
/netbsd-src/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.cpp184 dbgs() << printReg(P.first, &ME.TRI) << " -> " << P.second << "\n"; in print_cells()
188 : ME(E), MF(F), MRI(F.getRegInfo()), Map(*new CellMapType), Trace(false) { in BitTracker()
805 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()
828 dbgs() << " input reg: " << printReg(RU.Reg, &ME.TRI, RU.Sub) in visitPHI()
835 dbgs() << "Output: " << printReg(DefRR.Reg, &ME.TRI, DefRR.Sub) in visitPHI()
837 ME.putCell(DefRR, DefC, Map); in visitPHI()
850 bool Eval = ME.evaluate(MI, Map, ResMap); in visitNonBranch()
858 dbgs() << " input reg: " << printReg(RU.Reg, &ME.TRI, RU.Sub) in visitNonBranch()
[all …]
/netbsd-src/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-src/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-src/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-src/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-src/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-src/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-src/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-src/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