HomeSort by relevance Sort by last modified time
    Searched refs:Res (Results 176 - 200 of 274) sorted by null

1 2 3 4 5 6 78 91011

  /hardware/qcom/display/msm8226/liboverlay/
overlayMdp.cpp 50 Res::fbPath, O_RDWR)){
398 if(!utils::openDev(mFd, fbnum, Res::fbPath, O_RDWR)){
overlayMdssRot.cpp 67 if(!utils::openDev(mFd, 0, Res::fbPath, O_RDWR)) {
  /external/clang/lib/Sema/
SemaExprCXX.cpp 649 ExprResult Res = DefaultFunctionArrayConversion(E);
650 if (Res.isInvalid())
652 E = Res.get();
695 Res = PerformMoveOrCopyInitialization(Entity, NRVOVariable,
698 if (Res.isInvalid())
700 E = Res.get();
    [all...]
SemaStmt.cpp     [all...]
SemaPseudoObject.cpp     [all...]
SemaExpr.cpp 624 ExprResult Res = ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, E,
632 Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(),
636 return Res;
640 ExprResult Res = DefaultFunctionArrayConversion(E);
641 if (Res.isInvalid())
643 Res = DefaultLvalueConversion(Res.get());
644 if (Res.isInvalid())
646 return Res;
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]
CodeGenInstruction.cpp 381 std::string Res = "";
393 Res += Cur.slice(0, VariantsStart);
414 Res += Selection.split('|').first;
421 return Res;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp     [all...]
CGDebugInfo.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 804 RecordDecl::lookup_const_result Res = RD->lookup(FieldName);
809 if (Res.size() != 1)
811 if (const FieldDecl *FD = dyn_cast<FieldDecl>(Res.front()))
813 if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(Res.front()))
  /external/llvm/include/llvm/Support/
ARMWinEH.h 251 /// | Ep Start Idx | Cond |Res| Epilogue Start Offset |
259 /// Res : 2-bit field reserved for future expansion (must be set to 0)
299 uint8_t Res() const {
  /external/llvm/lib/IR/
GCOV.cpp 403 uint8_t Res = (Numerator*100+Divisor/2) / Divisor;
404 if (Res == 0)
406 if (Res == 100)
408 return Res;
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 851 SDNode *Res = CurDAG->getMachineNode(LdiOp, SDLoc(Node), ViaVecTy, Imm);
861 Res = CurDAG->getMachineNode(Mips::COPY_TO_REGCLASS, SDLoc(Node),
862 ResVecTy, SDValue(Res, 0),
867 return std::make_pair(true, Res);
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 698 const MCExpr *Res = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None,
702 Res = SparcMCExpr::Create(SparcMCExpr::VK_Sparc_WPLT30, Res,
704 Op = SparcOperand::CreateImm(Res, S, E);
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 202 void relaxInstruction(const MCInst &Inst, MCInst &Res) const override {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 133 void relaxInstruction(const MCInst &Inst, MCInst &Res) const override;
280 void X86AsmBackend::relaxInstruction(const MCInst &Inst, MCInst &Res) const {
292 Res = Inst;
293 Res.setOpcode(RelaxedOp);
  /hardware/qcom/display/msm8084/liboverlay/
overlayMdssRot.cpp 69 if(!utils::openDev(mFd, 0, Res::fbPath, O_RDWR)) {
  /hardware/qcom/display/msm8960/liboverlay/
overlayMdssRot.cpp 66 if(!utils::openDev(mFd, 0, Res::fbPath, O_RDWR)) {
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 507 Value *Res = SimplifyCmpInst(Cmp->getPredicate(), LHS, RHS, DL);
508 if (!Res) {
517 Res = ConstantInt::get(Type::getInt1Ty(LHS->getContext()), ResT);
520 if (Constant *KC = getKnownConstant(Res, WantInteger))
539 LazyValueInfo::Tristate Res =
542 if (Res == LazyValueInfo::Unknown)
545 Constant *ResC = ConstantInt::get(Cmp->getType(), Res);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 504 bool Res = setupEntryBlockAndCallSites(F);
505 return Res;
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 161 int64_t Res = cast<MCConstantExpr>(E)->getValue();
162 return Res < 0 ? -1 : Res;
194 int64_t Res;
201 case MCBinaryExpr::Add: Res = LHSVal + RHSVal; break;
202 case MCBinaryExpr::Mul: Res = LHSVal * RHSVal; break;
205 return Res < 0 ? -1 : Res;
    [all...]

Completed in 1480 milliseconds

1 2 3 4 5 6 78 91011