HomeSort by relevance Sort by last modified time
    Searched defs:Res (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 29 const MCExpr *Res =
32 return MCBinaryExpr::CreateAdd(Res, Four, getContext());
  /external/clang/lib/Driver/
Arg.cpp 66 SmallString<256> Res;
67 llvm::raw_svector_ostream OS(Res);
99 SmallString<256> Res;
100 llvm::raw_svector_ostream OS(Res);
ArgList.cpp 68 Arg *Res = 0;
71 Res = *it;
72 Res->claim();
76 return Res;
80 Arg *Res = 0;
84 Res = *it;
85 Res->claim();
89 return Res;
94 Arg *Res = 0;
99 Res = *it
    [all...]
Compilation.cpp 111 bool Res = llvm::StringSwitch<bool>(Flag)
123 if (Res)
124 return Res;
130 Res = llvm::StringSwitch<bool>(Flag)
136 if (Res)
137 return Res;
293 int Res =
299 assert(Res && "Error string set with 0 result code!");
303 if (Res)
307 return Res;
    [all...]
  /external/llvm/lib/Option/
Arg.cpp 65 SmallString<256> Res;
66 llvm::raw_svector_ostream OS(Res);
98 SmallString<256> Res;
99 llvm::raw_svector_ostream OS(Res);
ArgList.cpp 67 Arg *Res = 0;
70 Res = *it;
71 Res->claim();
75 return Res;
79 Arg *Res = 0;
83 Res = *it;
84 Res->claim();
89 return Res;
94 Arg *Res = 0;
99 Res = *it
    [all...]
  /external/llvm/lib/Analysis/
LibCallAliasAnalysis.cpp 69 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
70 if (Res != LibCallLocationInfo::Yes) continue;
90 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
91 if (Res == LibCallLocationInfo::No) continue;
95 if (Res == LibCallLocationInfo::Unknown) {
MemDepPrinter.cpp 107 MemDepResult Res = MDA.getDependency(Inst);
108 if (!Res.isNonLocal()) {
109 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
118 const MemDepResult &Res = I->getResult();
119 InstDeps.insert(std::make_pair(getInstTypePair(Res), I->getBB()));
151 const MemDepResult &Res = I->getResult();
152 InstDeps.insert(std::make_pair(getInstTypePair(Res), I->getBB()));
  /external/llvm/lib/MC/
MCAsmInfo.cpp 138 const MCExpr *Res = MCSymbolRefExpr::Create(Sym, Context);
142 return MCBinaryExpr::CreateSub(Res, PC, Context);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 119 const MCExpr *Res =
122 return MCBinaryExpr::CreateAdd(Res, Four, Context);
X86MachObjectWriter.cpp 247 int64_t Res;
248 bool isAbs = Value->EvaluateAsAbsolute(Res, Layout,
251 FixedValue = Res;
537 int64_t Res;
539 Res, Layout, Writer->getSectionAddressMap())) {
540 FixedValue = Res;
  /external/valgrind/main/none/tests/amd64/
bug132918.c 8 struct { double d; int i; } Res;
10 static void do_fprem ( Res* res, double x, double y )
31 res->d = f64;
32 res->i = (int)(c3210 & 0x4700); /* mask for C3,2,1,0 */
35 static void show ( char* s, Res* res )
37 printf("%s -> 0x%04x %f\n", s, (int)res->i, (double)res->d);
42 Res r
    [all...]
  /external/clang/examples/clang-interpreter/
main.cpp 146 int Res = 255;
148 Res = Execute(Module, envp);
154 return Res;
  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 31 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
32 Builder.CreateStore(Res, Ptr);
45 Value *Res = NULL;
50 Res = Val;
53 Res = Builder.CreateAdd(Orig, Val);
56 Res = Builder.CreateSub(Orig, Val);
59 Res = Builder.CreateAnd(Orig, Val);
62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val));
65 Res = Builder.CreateOr(Orig, Val);
68 Res = Builder.CreateXor(Orig, Val)
    [all...]
CorrelatedValuePropagation.cpp 180 LazyValueInfo::Tristate Res = LVI->getPredicateOnEdge(C->getPredicate(),
182 if (Res != Result) return false;
  /external/eigen/bench/
product_threshold.cpp 38 template<int Mode, typename Lhs, typename Rhs, typename Res>
39 EIGEN_DONT_INLINE void prod(const Lhs& a, const Rhs& b, Res& c)
49 typedef Matrix<Scalar,M,N> Res; Res c; c.setRandom();
  /external/llvm/include/llvm/Object/
RelocVisitor.h 160 uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
161 return RelocToApply(Res, 4);
166 int32_t Res = (Value + Addend) & 0xFFFFFFFF;
167 return RelocToApply(Res, 4);
174 uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
175 return RelocToApply(Res, 4);
182 uint32_t Res = (Value + Addend) & 0xFFFFFFFF;
183 return RelocToApply(Res, 4);
190 int64_t Res = Value + Addend;
193 if (Res < INT32_MIN || Res > UINT32_MAX
    [all...]
  /external/clang/lib/Analysis/
FormatString.cpp 385 QualType Res;
392 Res = C.CharTy;
395 Res = T;
398 Res = C.getPointerType(C.CharTy);
401 Res = C.getPointerType(C.getWCharType());
404 Res = C.ObjCBuiltinIdTy;
407 Res = C.VoidPtrTy;
410 Res = C.getWIntType();
416 Res = C.getPointerType(Res);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
AnalyzerOptions.cpp 167 int Res = DefaultVal;
168 bool b = V.getAsInteger(10, Res);
171 return Res;
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 414 int64_t Res;
416 Res, Layout, Writer->getSectionAddressMap())) {
417 FixedValue = Res;
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 338 int Res = Parser->Run(NoInitialTextSection);
340 return Res;
458 int Res = 1;
462 Res = AsLexInput(SrcMgr, *MAI, Out.get());
465 Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI);
482 Res = Disassembler::disassemble(*TheTarget, TripleName, *STI, *Str,
486 if (Res == 0) Out->keep();
487 return Res;
  /external/llvm/tools/macho-dump/
macho-dump.cpp 95 int Res = 0;
101 Res = Error("unable to read relocation table entry '" + Twine(i) + "'");
124 return Res;
140 int Res = 0;
146 Res = Error("unable to read section '" + Twine(i) + "'");
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16),
160 return Res;
176 int Res = 0;
182 Res = Error("unable to read section '" + Twine(i) + "'");
186 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16)
    [all...]
  /device/asus/flo/bdAddrLoader/
addrloader.c 73 }Res;
129 Res res = FAIL; local
  /device/lge/mako/bdAddrLoader/
addrloader.c 73 }Res;
129 Res res = FAIL; local
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 58 std::pair<int, int> Res = getPreprocessedEntitiesInRangeSlow(Range);
61 CachedRangeQuery.Result = Res;
63 return std::make_pair(iterator(this, Res.first), iterator(this, Res.second));

Completed in 1174 milliseconds

1 2 3 4 5