HomeSort by relevance Sort by last modified time
    Searched refs:ME (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /system/extras/ext4_utils/
test_ext4fixup 5 ME=`basename $0`
9 echo "$ME: Usage: $ME <iterations> <maxcount> <filesystem_image>" >&2
21 echo "$ME: Filesystem image $NEW_FS_IMAGE does not exist" >&2
35 echo "$ME: ext4fixup failed!\n"
63 echo "$ME: test failed with parameters $PHASE, $LOC, $COUNT"
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 113 static int dumpInfo(bcinfo::MetadataExtractor *ME) {
114 if (!ME) {
124 fprintf(info, "exportVarCount: %u\n", ME->getExportVarCount());
125 const char **varNameList = ME->getExportVarNameList();
126 for (size_t i = 0; i < ME->getExportVarCount(); i++) {
130 fprintf(info, "exportFuncCount: %u\n", ME->getExportFuncCount());
131 const char **funcNameList = ME->getExportFuncNameList();
132 for (size_t i = 0; i < ME->getExportFuncCount(); i++) {
137 ME->getExportForEachSignatureCount());
138 const char **nameList = ME->getExportForEachNameList()
    [all...]
  /external/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 50 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) {
51 if (ME->isDelegateInitCall() &&
52 isRemovable(ME) &&
54 ME->getExprLoc())) {
57 ME->getExprLoc());
58 SourceRange ExprRange = ME->getSourceRange();
TransAutoreleasePool.cpp 353 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
354 if (!ME) return false;
355 if (ME->getMethodFamily() == OMF_new &&
356 ME->getReceiverKind() == ObjCMessageExpr::Class &&
357 isNSAutoreleasePool(ME->getReceiverInterface()))
359 if (ME->getReceiverKind() == ObjCMessageExpr::Instance &&
360 ME->getMethodFamily() == OMF_init) {
361 Expr *rec = getEssential(ME->getInstanceReceiver());
376 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S);
377 if (!ME) return false
    [all...]
TransZeroOutPropsInDealloc.cpp 43 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) {
47 if (ME->getReceiverKind() != ObjCMessageExpr::Instance)
49 Expr *receiver = ME->getInstanceReceiver();
62 if (PropDecl->getSetterName() == ME->getSelector()) {
72 Expr *RHS = ME->getArg(0);
76 if (RHSIsNull && isRemovable(ME))
77 TA.removeStmt(ME);
TransRetainReleaseDealloc.cpp 228 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
229 return ME->getMemberDecl();
325 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E))
326 return (ME->isInstanceMessage() && ME->getSelector() == DelegateSel);
Transforms.cpp 74 ME = dyn_cast<ObjCMessageExpr>(E->getRHS()->IgnoreParenCasts()))
75 if (ME->getMethodFamily() == OMF_retain)
163 ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(E);
164 if (!ME)
166 switch (ME->getMethodFamily()) {
171 switch (ME->getReceiverKind()) {
175 return hasSideEffects(ME->getInstanceReceiver(), Ctx);
527 ME = I->instmeth_end(); MI != ME; ++MI) {
  /external/ipsec-tools/src/libipsec/
policy_parse.h 54 ME = 270,
73 #define ME 270
  /external/llvm/lib/Target/Hexagon/
HexagonMCInstLower.cpp 29 const MCExpr *ME;
31 ME = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None, MC);
34 ME = MCBinaryExpr::CreateAdd(ME, MCConstantExpr::Create(MO.getOffset(), MC),
37 return (MCOperand::CreateExpr(ME));
  /external/icu4c/config/
icu-config-bottom 18 ME=`basename "$0"`
72 echo "usage: ${ME} " `allflags | cut -c-25 | sed -e 's%.*%[ & ]%'`
78 echo "${ME}: icu-config: ICU configuration helper script"
99 echo "### $ME: Can't find ${ICUUC_FILE} - ICU prefix is wrong." 1>&2
103 echo "### $ME: Exitting." 1>&2
161 echo "### $ME: Error: --noverify must be the first argument." 1>&2
287 HERE=`echo $0 | sed -e "s/$ME//g"`
383 echo ${ME}: ERROR Unknown Option $arg 1>&2
386 echo "### $ME: Exitting." 1>&2
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 32 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S))
33 if (ME->getSelector() == Dealloc) {
34 switch (ME->getReceiverKind()) {
58 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S))
59 if (ME->getSelector() == Release)
60 if (ME->getInstanceReceiver())
61 if (Expr *Receiver = ME->getInstanceReceiver()->IgnoreParenCasts())
67 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S))
68 if (ME->getInstanceReceiver())
69 if (Expr *Receiver = ME->getInstanceReceiver()->IgnoreParenCasts()
    [all...]
CallAndMessageChecker.cpp 333 const ObjCMessageExpr *ME = msg.getOriginExpr();
334 R->addRange(ME->getReceiverRange());
337 if (const Expr *ReceiverE = ME->getInstanceReceiver())
367 const ObjCMessageExpr *ME = msg.getOriginExpr();
371 os << "The receiver of message '" << ME->getSelector().getAsString()
377 report->addRange(ME->getReceiverRange());
379 if (const Expr *receiver = ME->getInstanceReceiver()) {
DereferenceChecker.cpp 71 const MemberExpr *ME = cast<MemberExpr>(Ex);
73 << " field '" << ME->getMemberNameInfo() << "')";
74 SourceLocation L = ME->getMemberLoc();
  /external/qemu/memcheck/
memcheck_proc_management.c 73 ME("memcheck: Unable to allocate new thread descriptor.");
103 ME("memcheck: Unable to allocate new process descriptor");
122 ME("memcheck: Unable to get parent process pid=%u for new process pid=%u",
134 ME("memcheck: Unable to copy process' %s[pid=%u] allocation map to new process pid=%u",
144 ME("memcheck: Unable to copy process' %s[pid=%u] mmrange map to new process pid=%u",
274 ME("memcheck: Unable to allocate %u bytes for image path %s to set it for pid=%u",
364 ME("memcheck: Unable to find mapping for guest PC 0x%08X in process %s[pid=%u]",
387 ME("memcheck: Unable to allocate %u bytes for calling stack.",
410 ME("memcheck: Unable to allocate %u bytes for module path in the thread calling stack.",
481 ME("memcheck: FORK(%u, %u): Unable to look up parent process. Current tid=%u"
    [all...]
memcheck_logging.h 31 #define ME(...) \
memcheck_mmrange_map.c 131 ME("memcheck: Unable to allocate new MMRangeMapEntry on insert.");
194 ME("memcheck: Unable to allocate new MMRangeMapEntry on copy.");
200 ME("memcheck: Unable to allocate new path for MMRangeMapEntry on copy.");
207 ME("memcheck: Unable to insert new range map entry on copy. Insert returned %u",
memcheck.c 382 ME("memcheck: Unable to obtain process for libc_init pid=%u", pid);
414 ME("memcheck: Unable to obtain process for allocation pid=%u",
430 ME("memcheck: Unable to allocate %u bytes for the calling stack",
457 ME("memcheck: Duplicate allocation blocks:");
468 ME("memcheck: Unable to insert an entry to the allocation map:");
490 ME("memcheck: Unable to obtain process for pid=%u on free",
536 ME("memcheck: Unable to obtain process for pid=%u on query_%s",
memcheck_malloc_map.c 170 ME("memcheck: Unable to allocate new AllocMapEntry on insert.");
233 ME("memcheck: Unable to allocate new AllocMapEntry on copy.");
256 ME("memcheck: Unable to insert new map entry on copy. Insert returned %u",
  /external/llvm/lib/Analysis/IPA/
FindUsedTypes.cpp 70 for (Module::iterator MI = m.begin(), ME = m.end(); MI != ME; ++MI) {
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 81 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
87 unsigned &SH, unsigned &MB, unsigned &ME);
326 bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
331 ME = CountLeadingZeros_32((Val - 1) ^ Val);
337 ME = CountLeadingZeros_32(Val) - 1;
349 unsigned &MB, unsigned &ME) {
384 return isRunOfOnes(Mask, MB, ME);
431 unsigned MB, ME;
432 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
453 getI32Imm(ME) };
    [all...]
  /external/clang/test/SemaTemplate/
template-id-printing.cpp 37 namespace ME {
52 } // namespace ME
  /external/llvm/lib/CodeGen/
RegisterScavenging.cpp 268 MachineBasicBlock::iterator ME = MBB->getFirstTerminator();
269 assert(StartMI != ME && "MI already at terminator");
274 for (++MI; InstrLimit > 0 && MI != ME; ++MI, --InstrLimit) {
317 if (MI == ME) RestorePointMI = ME;
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 36 unsigned char ME = MI->getOperand(4).getImm();
38 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
41 if (SH <= 31 && MB == (32-SH) && ME == 31) {
68 unsigned char ME = MI->getOperand(3).getImm();
70 if (63-SH == ME) {
  /external/qemu/tcg/ppc/
tcg-target.c 402 #define ME(e) ((e)<<1)
561 | ME (31 - CPU_TLB_ENTRY_BITS)
576 | ME (31 - TARGET_PAGE_BITS)
757 | ME (31 - CPU_TLB_ENTRY_BITS)
772 | ME (31 - TARGET_PAGE_BITS)
809 | ME (31)));
817 | ME (31)));
1154 | ME (31)
1221 | ME (31)
1396 int mb, me; local
    [all...]
  /frameworks/compile/slang/
slang_rs.cpp 172 llvm::StringMapEntry<ReflectedDefinitionTy> *ME =
175 ME->setValue(std::make_pair(ERT, CurInputFile));
177 if (!ReflectedDefinitions.insert(ME))
178 delete ME;

Completed in 436 milliseconds

1 2 3 4