HomeSort by relevance Sort by last modified time
    Searched defs:RM (Results 1 - 17 of 17) sorted by null

  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.cpp 62 Reloc::Model RM = Subtarget.getRelocationModel();
63 if (RM == Reloc::PIC_ || RM == Reloc::Default)
65 else if (RM == Reloc::Static)
  /external/libpng/contrib/pngminim/decoder/
makefile 8 RM=rm -f
40 $(RM) pngm2pnm$(O)
41 $(RM) pngm2pnm$(E)
42 $(RM) $(OBJS)
  /external/libpng/contrib/pngminim/encoder/
makefile 8 RM=rm -f
39 $(RM) pnm2pngm$(O)
40 $(RM) pnm2pngm$(E)
41 $(RM) $(OBJS)
  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 56 MemRegionManager& RM = C.getStoreManager().getRegionManager();
58 RM.getAllocaRegion(CE, C.blockCount(), C.getLocationContext());
  /external/libpng/contrib/pngminim/preader/
makefile 8 RM=rm -f
56 $(RM) rpng2-x$(O)
57 $(RM) rpng2-x$(E)
58 $(RM) $(OBJS)
  /external/llvm/lib/Target/
TargetMachineC.cpp 64 Reloc::Model RM;
67 RM = Reloc::Static;
70 RM = Reloc::PIC_;
73 RM = Reloc::DynamicNoPIC;
76 RM = Reloc::Default;
119 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM,
  /hardware/ti/omap4xxx/domx/make/
start.mk 81 RM = rm $(1)
83 RMDIR = rm -r $(1)
  /frameworks/compile/slang/
slang_backend.cpp 143 llvm::Reloc::Model RM = llvm::Reloc::Static;
172 Options, RM, CM);
  /external/clang/lib/CodeGen/
BackendUtil.cpp 390 llvm::Reloc::Model RM = llvm::Reloc::Default;
392 RM = llvm::Reloc::Static;
394 RM = llvm::Reloc::PIC_;
398 RM = llvm::Reloc::DynamicNoPIC;
463 RM, CM, OptLevel);
  /external/linux-tools-perf/Documentation/
Makefile 44 RM ?= rm -f
193 $(QUIET_GEN)$(RM) $@+ $@ && \
212 $(QUIET_GEN)$(RM) $@ && \
217 $(RM) *.xml *.xml+ *.html *.html+ *.1 *.5 *.7
218 $(RM) *.texi *.texi+ *.texi++ perf.info perfman.info
219 $(RM) howto-index.txt howto/*.html doc.dep
220 $(RM) technical/api-*.html technical/api-index.txt
221 $(RM) $(cmds_txt) *.made
224 $(QUIET_ASCIIDOC)$(RM) $@+ $@ &&
    [all...]
  /external/mdnsresponder/mDNSPosix/
Makefile 62 RM = rm
228 @if test -d $(OBJDIR) ; then rm -r $(OBJDIR) ; fi
229 @if test -d $(BUILDDIR) ; then rm -r $(BUILDDIR) ; fi
380 @if test -d $(OBJDIR) ; then rm -r $(OBJDIR) ; fi
381 @if test -f $(PROJECT_DERIVED_FILE_DIR)/DNSSD.java.h ; then $(RM) $(PROJECT_DERIVED_FILE_DIR)/DNSSD.java.h ; fi
382 @if test -f $(BUILDDIR)/dns_sd.jar ; then $(RM) $(BUILDDIR)/dns_sd.jar ; fi
  /external/llvm/lib/Target/Mips/
MipsSubtarget.h 104 Reloc::Model RM;
121 const std::string &FS, bool little, Reloc::Model RM);
160 Reloc::Model getRelocationModel() const {return RM;}
  /external/linux-tools-perf/
Makefile 139 RM = rm -f
758 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
806 $(RM) TAGS
810 $(RM) tags
814 $(RM) cscope*
896 $(RM) $(OUTPUT){*.o,*/*.o,*/*/*.o,*/*/*/*.o,$(LIB_FILE),perf-archive}
897 $(RM) $(ALL_PROGRAMS) perf
898 $(RM) *.spec *.pyc *.pyo */*.pyc */*.pyo $(OUTPUT)common-cmds.h TAGS tags cscope*
900 $(RM) $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)PERF-CFLAG
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 604 RegionStoreManager &RM;
617 ClusterAnalysis(RegionStoreManager &rm, ProgramStateManager &StateMgr,
619 : RM(rm), Ctx(StateMgr.getContext()),
876 invalidateRegionsWorker(RegionStoreManager &rm,
    [all...]
  /external/v8/src/arm/
constants-arm.h 410 RM = 2 << 22, // Round towards Minus Infinity.
416 kRoundToMinusInf = RM,
461 // blxcc rm
  /external/webkit/Source/JavaScriptCore/assembler/
ARMAssembler.h 435 void mul_r(int rd, int rn, int rm, Condition cc = AL)
437 m_buffer.putInt(static_cast<ARMWord>(cc) | MUL | RN(rd) | RS(rn) | RM(rm));
440 void muls_r(int rd, int rn, int rm, Condition cc = AL)
442 m_buffer.putInt(static_cast<ARMWord>(cc) | MUL | SET_CC | RN(rd) | RS(rn) | RM(rm));
445 void mull_r(int rdhi, int rdlo, int rn, int rm, Condition cc = AL)
447 m_buffer.putInt(static_cast<ARMWord>(cc) | MULL | RN(rdhi) | RD(rdlo) | RS(rn) | RM(rm));
495 void dtr_ur(bool isLoad, int rd, int rb, int rm, Condition cc = AL
497 emitInst(static_cast<ARMWord>(cc) | DTR | (isLoad ? DT_LOAD : 0) | DT_UP | OP2_OFSREG, rd, rb, rm); local
512 emitInst(static_cast<ARMWord>(cc) | LDRH | HDT_UH | DT_UP | DT_PRE, rd, rn, rm); local
527 emitInst(static_cast<ARMWord>(cc) | STRH | HDT_UH | DT_UP | DT_PRE, rd, rn, rm); local
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 995 milliseconds