Searched refs:Result (Results 1 - 25 of 435) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineRelocation.h58 void *Result; // If this has been resolved to a resolved pointer member in union:llvm::MachineRelocation::__anon1888
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...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DMacroArgs.cpp48 MacroArgs *Result; local
51 Result = (MacroArgs*)malloc(sizeof(MacroArgs) +
54 new (Result) MacroArgs(UnexpArgTokens.size(), VarargsElided);
56 Result = *ResultEnt;
58 *ResultEnt = Result->ArgCache;
59 Result->NumUnexpArgTokens = UnexpArgTokens.size();
60 Result->VarargsElided = VarargsElided;
66 const_cast<Token*>(Result->getUnexpArgument(0)));
68 return Result;
117 const Token *Result local
156 std::vector<Token> &Result = PreExpArgTokens[Arg]; local
206 SmallString<128> Result; local
[all...]
H A DLexer.cpp222 std::string Result = Str; local
224 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
225 if (Result[i] == '\\' || Result[i] == Quote) {
226 Result.insert(Result.begin()+i, '\\');
230 return Result;
361 std::string Result;
362 Result.resize(Tok.getLength());
363 Result
436 getRawToken(SourceLocation Loc, Token &Result, const SourceManager &SM, const LangOptions &LangOpts, bool IgnoreWhiteSpace) argument
1450 LexIdentifier(Token &Result, const char *CurPtr) argument
1528 ConversionResult Result = local
1575 LexNumericConstant(Token &Result, const char *CurPtr) argument
1630 LexUDSuffix(Token &Result, const char *CurPtr, bool IsStringLiteral) argument
1703 LexStringLiteral(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1760 LexRawStringLiteral(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1840 LexAngledStringLiteral(Token &Result, const char *CurPtr) argument
1876 LexCharConstant(Token &Result, const char *CurPtr, tok::TokenKind Kind) argument
1940 SkipWhitespace(Token &Result, const char *CurPtr, bool &TokAtPhysicalStartOfLine) argument
1999 SkipLineComment(Token &Result, const char *CurPtr, bool &TokAtPhysicalStartOfLine) argument
2128 SaveLineComment(Token &Result, const char *CurPtr) argument
2230 SkipBlockComment(Token &Result, const char *CurPtr, bool &TokAtPhysicalStartOfLine) argument
2398 ReadToEndOfLine(SmallVectorImpl<char> *Result) argument
2452 LexEndOfFile(Token &Result, const char *CurPtr) argument
2669 tryReadUCN(const char *&StartPtr, const char *SlashLoc, Token *Result) argument
2781 CheckUnicodeWhitespace(Token &Result, uint32_t C, const char *CurPtr) argument
2796 LexUnicode(Token &Result, uint32_t C, const char *CurPtr) argument
2835 PropagateLineStartLeadingSpaceInfo(Token &Result) argument
2842 Lex(Token &Result) argument
2877 LexTokenInternal(Token &Result, bool TokAtPhysicalStartOfLine) argument
[all...]
H A DHeaderMap.cpp61 unsigned Result = 0; local
65 Result += toLowercase(*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...]
/freebsd-9.3-release/sys/contrib/dev/acpica/compiler/
H A Ddtexpress.c88 UINT64 Result; local
96 Result = DtEvaluateExpression (Field->Value);
97 *ReturnValue = Result;
122 UINT64 Result; local
130 Result = ~RightValue;
134 Result = !RightValue;
138 Result = LeftValue * RightValue;
148 Result = LeftValue / RightValue;
158 Result = LeftValue % RightValue;
162 Result
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp78 TokenInfo Result; local
79 Result.Range.Start = currentLocation();
82 Result.Kind = TokenInfo::TK_Eof;
83 Result.Text = "";
84 return Result;
89 Result.Kind = TokenInfo::TK_Comma;
90 Result.Text = Code.substr(0, 1);
94 Result.Kind = TokenInfo::TK_Period;
95 Result.Text = Code.substr(0, 1);
99 Result
143 consumeUnsignedLiteral(TokenInfo *Result) argument
174 consumeStringLiteral(TokenInfo *Result) argument
314 VariantMatcher Result = S->actOnMatcherExpression( local
409 llvm::Optional<DynTypedMatcher> Result = local
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Object/
H A DObjectFile.h103 error_code getNext(RelocationRef &Result) const;
105 error_code getAddress(uint64_t &Result) const;
106 error_code getOffset(uint64_t &Result) const;
108 error_code getType(uint64_t &Result) const;
113 error_code getHidden(bool &Result) const;
118 error_code getTypeName(SmallVectorImpl<char> &Result) const;
124 error_code getValueString(SmallVectorImpl<char> &Result) const;
148 error_code getNext(SectionRef &Result) const;
150 error_code getName(StringRef &Result) const;
151 error_code getAddress(uint64_t &Result) cons
[all...]
H A DELFObjectFile.h71 virtual error_code getLibraryNext(DataRefImpl Data, LibraryRef &Result) const;
89 bool &Result) const;
101 SmallVectorImpl<char> &Result) const;
104 SmallVectorImpl<char> &Result) const;
212 SymbolRef &Result) const {
213 Result = SymbolRef(toDRI(++toELFSymIter(Symb)), this);
219 StringRef &Result) const {
223 Result = *Name;
243 uint64_t &Result) const {
250 Result
[all...]
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Ddnlcps.d59 @Result[execname, pid] = lquantize(this->code, 0, 1, 1);
67 printa(" CMD: %-16s PID: %d\n%@d\n", @Result);
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Kernel/
H A Ddnlcps.d59 @Result[execname, pid] = lquantize(this->code, 0, 1, 1);
67 printa(" CMD: %-16s PID: %d\n%@d\n", @Result);
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCExpr.cpp61 int64_t Result = Value.getConstant(); local
66 Result = Result & 0xffff;
69 Result = (Result >> 16) & 0xffff;
72 Result = ((Result + 0x8000) >> 16) & 0xffff;
75 Result = (Result >> 32) & 0xffff;
78 Result
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp41 const ast_matchers::MatchFinder::MatchResult &Result) {
42 if (const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId)) {
44 *Result.SourceManager,
54 const ast_matchers::MatchFinder::MatchResult &Result) {
55 const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId);
56 const Stmt *ToMatch = Result.Nodes.getStmtAs<Stmt>(ToId);
59 *Result.SourceManager, *FromMatch, *ToMatch));
67 const ast_matchers::MatchFinder::MatchResult &Result) {
68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) {
71 Replace.insert(replaceStmtWithStmt(*Result
40 run( const ast_matchers::MatchFinder::MatchResult &Result) argument
53 run( const ast_matchers::MatchFinder::MatchResult &Result) argument
66 run( const ast_matchers::MatchFinder::MatchResult &Result) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Index/
H A DCommentToXML.cpp202 llvm::raw_svector_ostream &Result) {
203 Result << "<" << C->getTagName();
207 Result << " ";
209 Result << Attr.Name;
211 Result << "=\"" << Attr.Value << "\"";
216 Result << ">";
218 Result << "/>";
228 FC(FC), Result(Str), Traits(Traits)
259 llvm::raw_svector_ostream Result; member in class:__anon3175::CommentASTToHTMLConverter
284 Result << " ";
201 printHTMLStartTagComment(const HTMLStartTagComment *C, llvm::raw_svector_ostream &Result) argument
574 llvm::raw_svector_ostream Result; member in class:__anon3176::CommentASTToXMLConverter
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DStringSwitch.h48 const T *Result; member in class:llvm::StringSwitch
52 : Str(S), Result(0) { }
56 if (!Result && N-1 == Str.size() &&
58 Result = &Value;
66 if (!Result && Str.size() >= N-1 &&
68 Result = &Value;
76 if (!Result && Str.size() >= N-1 &&
78 Result = &Value;
112 if (Result)
113 return *Result;
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DLexer.h139 bool Lex(Token &Result);
148 void IndirectLex(Token &Result) { Lex(Result); } argument
154 bool LexFromRawLexer(Token &Result) { argument
156 Lex(Result);
208 void ReadToEndOfLine(SmallVectorImpl<char> *Result = 0);
285 static bool getRawToken(SourceLocation Loc, Token &Result,
446 bool LexTokenInternal(Token &Result, bool TokAtPhysicalStartOfLine);
448 bool CheckUnicodeWhitespace(Token &Result, uint32_t C, const char *CurPtr);
453 bool LexUnicode(Token &Result, uint32_
460 FormTokenWithChars(Token &Result, const char *TokEnd, tok::TokenKind Kind) argument
[all...]
H A DPTHLexer.h53 bool LexEndOfFile(Token &Result);
93 void IndirectLex(Token &Result) { Lex(Result); } argument
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp75 LineNumberInfo Result; local
77 Result.Offset = Address - StartAddress;
78 Result.LineNumber = Loc.getLine();
80 return Result;
86 LineNumberInfo Result; local
88 Result.Offset = Address - StartAddress;
89 Result.LineNumber = Line.getLine();
91 return Result;
99 iJIT_Method_Load Result; local
100 memset(&Result,
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DCOFFObjectFile.cpp95 SymbolRef &Result) const {
99 Result = SymbolRef(Symb, this);
104 StringRef &Result) const {
106 return getSymbolName(symb, Result);
110 uint64_t &Result) const {
117 Result = UnknownAddressOrSize;
119 Result = Section->PointerToRawData + symb->Value;
121 Result = symb->Value;
126 uint64_t &Result) const {
133 Result
[all...]
/freebsd-9.3-release/contrib/llvm/tools/llvm-readobj/
H A DObjDumper.h49 OwningPtr<ObjDumper> &Result);
53 OwningPtr<ObjDumper> &Result);
57 OwningPtr<ObjDumper> &Result);
/freebsd-9.3-release/usr.sbin/ppp/
H A Dsig.c66 sig_type Result; local
74 Result = handler[sig - 1];
83 return Result;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp383 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result);
385 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result);
387 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result);
405 std::string &Result);
407 void RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result);
411 std::string &Result);
413 bool RewriteObjCFieldDeclType(QualType &Type, std::string &Result);
416 std::string &Result);
456 std::string &Result);
458 std::string &Result);
841 WriteInternalIvarName(const ObjCInterfaceDecl *IDecl, ObjCIvarDecl *IvarDecl, std::string &Result) argument
2024 std::string Result; local
3806 RewriteObjCFieldDeclType(QualType &Type, std::string &Result) argument
3875 RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result) argument
3905 RewriteLocallyDefinedNamedAggregates(FieldDecl *fieldDecl, std::string &Result) argument
4019 ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result) argument
4032 ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result) argument
4045 ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result) argument
4060 RewriteObjCInternalStruct(ObjCInterfaceDecl *CDecl, std::string &Result) argument
4137 RewriteIvarOffsetSymbols(ObjCInterfaceDecl *CDecl, std::string &Result) argument
6031 Write_ProtocolExprReferencedMetadata(ASTContext *Context, ObjCProtocolDecl *PDecl, std::string &Result) argument
6278 RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, std::string &Result) argument
6394 WriteModernMetadataDeclarations(ASTContext *Context, std::string &Result) argument
6472 Write_protocol_list_t_TypeDecl(std::string &Result, long super_protocol_count) argument
6481 Write_method_list_t_TypeDecl(std::string &Result, unsigned int method_count) argument
6491 Write__prop_list_t_TypeDecl(std::string &Result, unsigned int property_count) argument
6501 Write__ivar_list_t_TypeDecl(std::string &Result, unsigned int ivar_count) argument
6511 Write_protocol_list_initializer(ASTContext *Context, std::string &Result, ArrayRef<ObjCProtocolDecl *> SuperProtocols, StringRef VarName, StringRef ProtocolName) argument
6534 Write_method_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef TopLevelDeclName, bool MethodImpl) argument
6575 Write_prop_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCPropertyDecl *> Properties, const Decl *Container, StringRef VarName, StringRef ProtocolName) argument
6623 Write__class_ro_t_initializer(ASTContext *Context, std::string &Result, unsigned int flags, const std::string &InstanceStart, const std::string &InstanceSize, ArrayRef<ObjCMethodDecl *>baseMethods, ArrayRef<ObjCProtocolDecl *>baseProtocols, ArrayRef<ObjCIvarDecl *>ivars, ArrayRef<ObjCPropertyDecl *>Properties, StringRef VarName, StringRef ClassName) argument
6690 Write_class_t(ASTContext *Context, std::string &Result, StringRef VarName, const ObjCInterfaceDecl *CDecl, bool metaclass) argument
6830 Write_category_t(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ObjCCategoryDecl *CatDecl, ObjCInterfaceDecl *ClassDecl, ArrayRef<ObjCMethodDecl *> InstanceMethods, ArrayRef<ObjCMethodDecl *> ClassMethods, ArrayRef<ObjCProtocolDecl *> RefedProtocols, ArrayRef<ObjCPropertyDecl *> ClassProperties) argument
6912 Write__extendedMethodTypes_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCMethodDecl *> Methods, StringRef VarName, StringRef ProtocolName) argument
6938 Write_IvarOffsetVar(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCIvarDecl *> Ivars, ObjCInterfaceDecl *CDecl) argument
6981 Write__ivar_list_t_initializer(RewriteModernObjC &RewriteObj, ASTContext *Context, std::string &Result, ArrayRef<ObjCIvarDecl *> OriginalIvars, StringRef VarName, ObjCInterfaceDecl *CDecl) argument
7056 RewriteObjCProtocolMetaData(ObjCProtocolDecl *PDecl, std::string &Result) argument
7221 RewriteObjCProtocolListMetaData( const ObjCList<ObjCProtocolDecl> &Protocols, StringRef prefix, StringRef ClassName, std::string &Result) argument
7278 RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl, std::string &Result) argument
7446 RewriteClassSetupInitHook(std::string &Result) argument
7462 RewriteMetaDataIntoBuffer(std::string &Result) argument
7540 WriteImageInfo(std::string &Result) argument
7551 RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, std::string &Result) argument
7641 RewriteCategorySetupInitHook(std::string &Result) argument
7664 RewriteObjCMethodsMetaData(MethodIterator MethodBegin, MethodIterator MethodEnd, bool IsInstanceMethod, StringRef prefix, StringRef ClassName, std::string &Result) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp55 BoundNodesTreeBuilder Result; local
61 Result.addMatch(BuilderInner);
64 *Builder = Result;
73 BoundNodesTreeBuilder Result = *Builder; local
74 if (InnerMatchers[i].matches(DynNode, Finder, &Result)) {
75 *Builder = Result;
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DLazyValueInfo.cpp366 LVILatticeVal &Result);
534 LVILatticeVal Result; local
586 LVILatticeVal Result; // Start Undefined. local
616 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
618 Result.markOverdefined();
620 BBLV = Result;
633 Result.mergeIn(EdgeResult);
637 if (Result.isOverdefined()) {
644 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
647 BBLV = Result;
662 LVILatticeVal Result; // Start Undefined. local
726 LVILatticeVal Result; local
779 getEdgeValueLocal(Value *Val, BasicBlock *BBFrom, BasicBlock *BBTo, LVILatticeVal &Result) argument
870 getEdgeValue(Value *Val, BasicBlock *BBFrom, BasicBlock *BBTo, LVILatticeVal &Result) argument
918 LVILatticeVal Result = getBlockValue(V, BB); local
929 LVILatticeVal Result; local
1037 LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB); local
1053 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB); local
1071 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB); local
[all...]
H A DScalarEvolutionNormalization.cpp119 const SCEV *Result = SE.getAddRecExpr(Operands, L, SCEV::FlagAnyWrap); local
134 Result = SE.getMinusSCEV(Result, AR->getStepRecurrence(SE));
142 assert(S == TransformSubExpr(Result, User, OperandValToReplace) &&
151 Result = SE.getMinusSCEV(Result, TransformedStep);
155 assert(S == TransformSubExpr(Result, User, OperandValToReplace) &&
161 Result = cast<SCEVAddRecExpr>(Result)->getPostIncExpr(SE);
164 return Result;
211 const SCEV *Result = Transformed.lookup(S); local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/bugpoint/
H A DBugDriver.cpp60 std::string Result; local
62 if (i) Result += " ";
63 Result += "-";
64 Result += Passes[i];
66 return Result;
88 Module *Result = ParseIRFile(Filename, Err, Ctxt); local
89 if (!Result)
94 if (Result) {
96 Triple TheTriple(Result->getTargetTriple());
104 Result
[all...]

Completed in 306 milliseconds

1234567891011>>