Searched defs:Result (Results 101 - 125 of 342) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/CodeGen/
H A DMachineCodeEmitter.h261 void *Result; local
266 Result = 0;
269 Result = CurBufferPtr;
273 return Result;
H A DMachineRelocation.h58 void *Result; // If this has been resolved to a resolved pointer member in union:llvm::MachineRelocation::__anon8450
87 MachineRelocation Result; local
88 Result.Offset = offset;
89 Result.ConstantVal = cst;
90 Result.TargetReloType = RelocationType;
91 Result.AddrType = isGV;
92 Result.MayNeedFarStub = MayNeedFarStub;
93 Result.GOTRelative = GOTrelative;
94 Result.TargetResolve = false;
95 Result
107 MachineRelocation Result; local
124 MachineRelocation Result; local
144 MachineRelocation Result; local
163 MachineRelocation Result; local
182 MachineRelocation Result; local
[all...]
/external/llvm/include/llvm/Support/
H A DGCOV.h129 uint32_t Result; local
133 Result = *(const uint32_t *)(Str.data());
134 return Result;
140 uint64_t Result = Lo | (Hi << 32); local
141 return Result;
/external/llvm/lib/Archive/
H A DArchiveReader.cpp27 unsigned Result = 0; local
31 return Result;
32 Result |= (unsigned)((*At++) & 0x7F) << Shift;
35 return Result;
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp45 uint64_t Result = 0; local
47 uint64_t OldRes = Result;
48 Result *= 10;
49 Result += *Buffer-'0';
50 if (Result < OldRes) { // Uh, oh, overflow detected!!!
55 return Result;
69 uint64_t Result = 0; local
71 uint64_t OldRes = Result;
72 Result *= 16;
73 Result
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp104 std::string Result = Node->getOperationName(G); local
106 raw_string_ostream OS(Result);
109 return Result;
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp194 GenericValue *Result = new GenericValue(); local
195 *Result = unwrap(EE)->runFunction(unwrap<Function>(F), ArgVec);
196 return wrap(Result);
/external/llvm/lib/MC/
H A DMCContext.cpp106 MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary); local
108 return Result;
215 MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags, local
217 Entry.setValue(Result);
218 return Result;
222 MCSectionELF *Result = local
225 return Result;
240 MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(),
244 Entry.setValue(Result);
245 return Result;
[all...]
H A DMCExpr.cpp381 /// Result = (Result_A - Result_B + Result_Cst)
383 /// Result = LHS + RHS
385 /// Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst).
420 // Result = (LHS_A - LHS_B + LHS_Cst) + (RHS_A - RHS_B + RHS_Cst).
566 int64_t Result = 0; local
568 case MCBinaryExpr::Add: Result = LHS + RHS; break;
569 case MCBinaryExpr::And: Result = LHS & RHS; break;
570 case MCBinaryExpr::Div: Result = LHS / RHS; break;
571 case MCBinaryExpr::EQ: Result = LHS == RHS; break;
572 case MCBinaryExpr::GT: Result
[all...]
H A DSubtargetFeature.cpp94 std::string Result; local
98 Result = V[0];
102 Result += ",";
104 Result += V[i];
108 return Result;
/external/llvm/lib/Support/
H A DCrashRecoveryContext.cpp332 bool Result; member in struct:__anon8808::RunSafelyOnThreadInfo
339 Info->Result = Info->CRC->RunSafely(Info->UserFn, Info->UserData);
345 return Info.Result;
H A DTimer.cpp69 raw_ostream *Result = new raw_fd_ostream(OutputFilename.c_str(), local
72 return Result;
76 delete Result;
130 TimeRecord Result; local
134 Result.MemUsed = getMemUsage();
138 Result.MemUsed = getMemUsage();
141 Result.WallTime = now.seconds() + now.microseconds() / 1000000.0;
142 Result.UserTime = user.seconds() + user.microseconds() / 1000000.0;
143 Result.SystemTime = sys.seconds() + sys.microseconds() / 1000000.0;
144 return Result;
[all...]
H A DTriple.cpp517 unsigned Result = 0; local
521 Result = Result*10 + (Str[0] - '0');
527 return Result;
/external/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp198 StubLayout Result = { 4*4, 4 }; local
199 return Result;
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp356 StubLayout Result = {10*4, 4}; local
357 return Result;
/external/llvm/lib/Target/X86/
H A DX86JITInfo.cpp472 StubLayout Result = {14, 4}; local
473 return Result;
487 void *Result = (void*)JCE.getCurrentPCValue(); local
501 return Result;
522 return Result;
/external/llvm/lib/Transforms/Utils/
H A DAddrModeMatcher.cpp561 ExtAddrMode Result; local
563 MemoryInst, Result);
/external/llvm/lib/VMCore/
H A DAttributes.cpp30 std::string Result; local
32 Result += "zeroext ";
34 Result += "signext ";
36 Result += "noreturn ";
38 Result += "nounwind ";
40 Result += "uwtable ";
42 Result += "returns_twice ";
44 Result += "inreg ";
46 Result += "noalias ";
48 Result
[all...]
H A DInlineAsm.cpp214 ConstraintInfoVector Result; local
225 Info.Parse(StringRef(I, ConstraintEnd-I), Result)) {
226 Result.clear(); // Erroneous constraint?
230 Result.push_back(Info);
237 if (I == E) { Result.clear(); break; } // don't allow "xyz,"
241 return Result;
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp330 Module *Result = 0; local
331 Result = ParseBitcodeFile(Buffer.get(), Context, &ErrorMessage);
332 if (Result) {
333 DumpSymbolNamesFromModule(Result);
334 delete Result;
351 Module *Result = 0; local
353 Result = ParseBitcodeFile(buff.get(), Context, &ErrorMessage);
355 if (Result) {
356 DumpSymbolNamesFromModule(Result);
357 delete Result;
[all...]
/external/llvm/utils/PerfectShuffle/
H A DPerfectShuffle.cpp129 unsigned Result = 0; local
141 Result |= ResElt << (4*i);
143 return Result;
/external/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp72 std::vector<std::string> Result; local
148 Result.push_back(Res);
152 return Result;
/external/clang/lib/Frontend/
H A DChainedIncludesSource.cpp196 SmallVectorImpl<Decl*> &Result) {
197 return getFinalReader().FindExternalLexicalDecls(DC, isKindWeWant, Result);
194 FindExternalLexicalDecls(const DeclContext *DC, bool (*isKindWeWant)(Decl::Kind), SmallVectorImpl<Decl*> &Result) argument
/external/clang/lib/Lex/
H A DHeaderMap.cpp61 unsigned Result = 0; local
65 Result += tolower(*S) * 13;
66 return Result;
139 HMapBucket Result; local
140 Result.Key = HMAP_EmptyBucketKey;
148 Result.Prefix = 0;
149 Result.Suffix = 0;
150 return Result; // Invalid buffer, corrupt hmap.
154 Result.Key = getEndianAdjustedWord(BucketPtr->Key);
155 Result
[all...]
H A DPPExpressions.cpp81 static bool EvaluateDefined(PPValue &Result, Token &PeekTok, DefinedTracker &DT, argument
84 Result.setBegin(PeekTok.getLocation());
111 Result.Val = II->hasMacroDefinition();
112 Result.Val.setIsUnsigned(false); // Result is signed intmax_t.
115 if (Result.Val != 0 && ValueLive) {
127 Result.setEnd(PeekTok.getLocation());
136 Result.setEnd(PeekTok.getLocation());
140 Result.setEnd(PeekTok.getLocation());
151 /// return the computed value in Result
158 EvaluateValue(PPValue &Result, Token &PeekTok, DefinedTracker &DT, bool ValueLive, Preprocessor &PP) argument
[all...]

Completed in 353 milliseconds

1234567891011>>