HomeSort by: relevance | last modified time | path
    Searched defs:ME (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVMCAsmInfo.cpp 43 const MCExpr *ME =
46 return RISCVMCExpr::create(ME, RISCVMCExpr::VK_RISCV_32_PCREL, Ctx);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 44 const MCExpr *ME;
85 ME = MCSymbolRefExpr::create(Symbol, RelocationType, MC);
88 ME = MCBinaryExpr::createAdd(ME, MCConstantExpr::create(MO.getOffset(), MC),
91 ME = HexagonMCExpr::create(ME, MC);
92 HexagonMCInstrInfo::setMustExtend(*ME, MustExtend);
93 return MCOperand::createExpr(ME);
BitTracker.h 112 const MachineEvaluator &ME;
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVMCInstLower.cpp 78 const MCExpr *ME =
82 ME = MCBinaryExpr::createAdd(
83 ME, MCConstantExpr::create(MO.getOffset(), Ctx), Ctx);
86 ME = RISCVMCExpr::create(ME, Kind, Ctx);
87 return MCOperand::createExpr(ME);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
ScopeInfo.cpp 81 const MemberExpr *ME = cast<MemberExpr>(E);
82 D = ME->getMemberDecl();
83 IsExact = isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts());
238 } else if (auto *ME = dyn_cast<MemberExpr>(E)) {
239 Callback(cast<VarDecl>(ME->getMemberDecl()), E);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
DirectoryEntry.h 47 const DirectoryEntry &getDirEntry() const { return *ME->getValue(); }
49 StringRef getName() const { return ME->getKey(); }
59 const MapEntry &getMapEntry() const { return *ME; }
62 bool isSameRef(DirectoryEntryRef RHS) const { return ME == RHS.ME; }
65 DirectoryEntryRef(const MapEntry &ME) : ME(&ME) {}
91 DirectoryEntryRef(optional_none_tag) : ME(nullptr) {}
92 bool hasOptionalValue() const { return ME; }
    [all...]
FileEntry.h 62 StringRef getName() const { return ME->first(); }
64 return *ME->second->V.get<FileEntry *>();
66 DirectoryEntryRef getDir() const { return *ME->second->Dir; }
125 MapValue(MapEntry &ME) : V(&ME) {}
129 bool isSameRef(const FileEntryRef &RHS) const { return ME == RHS.ME; }
151 explicit FileEntryRef(const MapEntry &ME) : ME(&ME) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DereferenceChecker.cpp 76 const MemberExpr *ME = cast<MemberExpr>(Ex);
78 << " field '" << ME->getMemberNameInfo() << "')";
79 SourceLocation L = ME->getMemberLoc();
RunLoopAutoreleaseLeakChecker.cpp 91 const auto *ME = Match.getNodeAs<ObjCMessageExpr>(OtherMsgBind);
92 assert(ME);
103 assert(ME != RLR);
106 if (seenBefore(DeclBody, RLR, ME))
113 ME, BR.getSourceManager(), ADC);
114 SourceRange Range = ME->getSourceRange();
CallAndMessageChecker.cpp 611 const ObjCMessageExpr *ME = msg.getOriginExpr();
612 R->addRange(ME->getReceiverRange());
615 if (const Expr *ReceiverE = ME->getInstanceReceiver())
640 const ObjCMessageExpr *ME = msg.getOriginExpr();
647 ME->getSelector().print(os);
659 report->addRange(ME->getReceiverRange());
661 if (const Expr *receiver = ME->getInstanceReceiver()) {
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 352 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
353 if (!ME) return false;
354 if (ME->getMethodFamily() == OMF_new &&
355 ME->getReceiverKind() == ObjCMessageExpr::Class &&
356 isNSAutoreleasePool(ME->getReceiverInterface()))
358 if (ME->getReceiverKind() == ObjCMessageExpr::Instance &&
359 ME->getMethodFamily() == OMF_init) {
360 Expr *rec = getEssential(ME->getInstanceReceiver());
375 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S);
376 if (!ME) return false
    [all...]
Transforms.cpp 81 ME = dyn_cast<ObjCMessageExpr>(E->IgnoreParenCasts()))
82 if (ME->getMethodFamily() == OMF_retain)
173 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
174 if (!ME)
176 switch (ME->getMethodFamily()) {
181 switch (ME->getReceiverKind()) {
185 return hasSideEffects(ME->getInstanceReceiver(), Ctx);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCInstPrinter.cpp 117 unsigned char ME = MI->getOperand(4).getImm();
119 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
122 if (SH <= 31 && MB == (32-SH) && ME == 31) {
140 unsigned char ME = MI->getOperand(3).getImm();
142 if (63-SH == ME) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCBranchCoalescing.cpp 398 MachineBasicBlock::iterator ME = SourceMBB->getFirstNonPHI();
400 if (MI == ME) {
406 for (MachineBasicBlock::iterator Iter = MI; Iter != ME; Iter++) {
414 TargetMBB->splice(TargetMBB->begin(), SourceMBB, MI, ME);
PPCISelDAGToDAG.cpp 199 unsigned &SH, unsigned &MB, unsigned &ME);
648 unsigned &MB, unsigned &ME) {
683 return isRunOfOnes(Mask, MB, ME);
817 unsigned MB, ME;
818 if (isRunOfOnes(InsertMask, MB, ME)) {
843 getI32Imm(ME, dl) };
4718 unsigned SH, MB, ME;
4721 if (isRotateAndMask(Val.getNode(), Imm, false, SH, MB, ME)) {
4724 getI32Imm(ME, dl)};
4731 if (isRunOfOnes(Imm, MB, ME) && Val.getOpcode() != ISD::ROTL)
    [all...]
  /src/games/snake/snake/
snake.c 89 #define ME 'I'
360 pchar(&you, ME);
375 pchar(&you, ME);
391 pchar(&you, ME);
408 pchar(&you, ME);
454 pchar(&you, ME);
718 pchar(&you, ME);
947 pchar(&you, ME);
951 pchar(sp, ME);
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ReachableCode.cpp 577 const MemberExpr *ME = cast<MemberExpr>(S);
578 R1 = ME->getSourceRange();
579 return ME->getMemberLoc();
RetainSummaryManager.cpp 676 const auto *ME = cast_or_null<ObjCMessageExpr>(C.getExpr());
677 if (!ME) {
679 } else if (ME->isInstanceMessage()) {
680 Summ = getInstanceMethodSummary(ME, ReceiverType);
682 Summ = getClassMethodSummary(ME);
1115 RetainSummaryManager::getClassMethodSummary(const ObjCMessageExpr *ME) {
1116 assert(!ME->isInstanceMessage());
1117 const ObjCInterfaceDecl *Class = ME->getReceiverInterface();
1119 return getMethodSummary(ME->getSelector(), Class, ME->getMethodDecl()
    [all...]
ThreadSafetyCommon.cpp 84 const auto *ME = dyn_cast<MemberExpr>(E->IgnoreParenCasts());
85 return ME ? ME->isArrow() : false;
107 if (const auto *ME = dyn_cast<MemberExpr>(DeclExp)) {
108 Ctx.SelfArg = ME->getBase();
109 Ctx.SelfArrow = ME->isArrow();
345 til::SExpr *SExprBuilder::translateMemberExpr(const MemberExpr *ME,
347 til::SExpr *BE = translate(ME->getBase(), Ctx);
350 const auto *D = cast<ValueDecl>(ME->getMemberDecl()->getCanonicalDecl());
401 const CXXMemberCallExpr *ME, CallingContext *Ctx)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterScavenging.cpp 294 MachineBasicBlock::iterator ME = MBB->getFirstTerminator();
295 assert(StartMI != ME && "MI already at terminator");
300 for (++MI; InstrLimit > 0 && MI != ME; ++MI, --InstrLimit) {
342 if (MI == ME) RestorePointMI = ME;
  /src/sys/dev/acpi/
apei.c 372 const struct cper_memory_error *ME = buf;
382 CPER_MEMORY_ERROR_VALIDATION_BITS_FMT, ME->ValidationBits);
384 if (ME->ValidationBits & CPER_MEMORY_ERROR_VALID_ERROR_STATUS) {
416 "\0", ME->ErrorStatus);
419 if (ME->ValidationBits & CPER_MEMORY_ERROR_VALID_PHYSICAL_ADDRESS) {
421 ctx, ME->PhysicalAddress);
423 if (ME->ValidationBits &
426 "\n", ctx, ME->PhysicalAddressMask);
428 if (ME->ValidationBits & CPER_MEMORY_ERROR_VALID_NODE) {
430 ME->Node)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.cpp 137 const auto *ME = cast<MemberExpr>(RefExpr);
138 return cast<ValueDecl>(ME->getMemberDecl()->getCanonicalDecl());
  /src/sys/arch/powerpc/powerpc/
db_disasm.c 913 u_int me, mel, meh; local
916 me = meh << 4 | mel;
917 db_printf(", 0x%x", me);
927 u_int ME;
930 ME = extract_field(instr, 31 - 30, 5);
931 db_printf(", %d", ME);
948 u_int me, mel, meh; local
951 me = meh << 4 | mel;
952 db_printf(", %d", me);
  /src/usr.bin/deroff/
deroff.c 92 * Modified by Robert Henry to process -me and -man macros.
113 #define ME 2 /* -me */
117 static char *mactab[] = { "-ms", "-mm", "-me", "-ma" };
166 static int argconcat = 0; /* concat arguments together (-me only) */
274 mac = ME;
302 mac = ME;
913 * put out a macro using the me conventions
1032 * for me:
1073 if ((mac == ME && a1 == ')'
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXCursor.cpp 1666 const MemberExpr *ME = nullptr;
1668 ME = cast<MemberExpr>(E);
1670 ME = dyn_cast_or_null<MemberExpr>(CE->getCallee());
1672 if (ME) {
1674 dyn_cast_or_null<CXXMethodDecl>(ME->getMemberDecl()))
1676 ME->performsVirtualDispatch(
1697 const MemberExpr *ME = nullptr;
1699 ME = cast<MemberExpr>(E);
1701 ME = dyn_cast_or_null<MemberExpr>(CE->getCallee());
1703 if (ME) {
    [all...]

Completed in 56 milliseconds

1 2 3