Searched defs:Node (Results 226 - 250 of 254) sorted by relevance

1234567891011

/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp629 LeaderTableEntry *Node = TableAllocator.Allocate<LeaderTableEntry>(); local
630 Node->Val = V;
631 Node->BB = BB;
632 Node->Next = Curr.Next;
633 Curr.Next = Node;
2622 const LeaderTableEntry *Node = &I->second; local
2623 assert(Node->Val != Inst && "Inst still in value numbering scope!");
2625 while (Node->Next) {
2626 Node = Node
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNode.cpp26 #include "core/dom/Node.h"
100 void* Node::operator new(size_t size)
106 void Node::operator delete(void* ptr)
112 bool Node::isSupported(const String& feature, const String& version)
118 static HashSet<Node*> liveNodeSet;
121 void Node::dumpStatistics()
148 for (HashSet<Node*>::iterator it = liveNodeSet.begin(); it != liveNodeSet.end(); ++it) {
149 Node* node = *it;
254 printf(" Number of Attributes (non-Node and Node)
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h443 ParentVector getParents(const NodeT &Node) { argument
444 return getParents(ast_type_traits::DynTypedNode::create(Node));
447 ParentVector getParents(const ast_type_traits::DynTypedNode &Node);
/external/clang/lib/CodeGen/
H A DCGExpr.cpp2114 llvm::MDNode *Node = MDHelper.createBranchWeights((1U << 20) - 1, 1); local
2115 Branch->setMetadata(llvm::LLVMContext::MD_prof, Node);
3179 llvm::MDNode *Node = MDHelper.createFPMath(Accuracy); local
3181 cast<llvm::Instruction>(Val)->setMetadata(llvm::LLVMContext::MD_fpmath, Node);
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2860 const ExplodedNode *Node = WS.front(); local
2866 PriorityMap.insert(std::make_pair(Node, Priority));
2874 if (RemainingNodes.erase(Node))
2878 for (ExplodedNode::const_pred_iterator I = Node->succ_begin(),
2879 E = Node->succ_end();
/external/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp3128 class Node { class in namespace:ExistentialPatternMatching
3141 Node n1;
/external/llvm/lib/CodeGen/
H A DMachineScheduler.cpp566 assert(!SU->isScheduled && "Node already scheduled");
2723 static bool isNodeHidden(const SUnit *Node) { argument
2724 return (Node->NumPreds > 10 || Node->NumSuccs > 10);
2727 static bool hasNodeAddressLabel(const SUnit *Node, argument
2734 static std::string getEdgeAttributes(const SUnit *Node, argument
/external/opencv/cvaux/src/
H A Dcvlee.cpp1762 CvVoronoiNode2D Node; local
1763 Node.next_free = NULL;
1812 pNode1 = _cvWriteSeqElem(&Node,NodeWriter);
1813 pNode2 = _cvWriteSeqElem(&Node,NodeWriter);
1851 pNode1 = _cvWriteSeqElem(&Node,NodeWriter);
1896 Node.pt.x = pSite->node1->node.x;
1897 Node.pt.y = pSite->node1->node.y;
1898 Node.radius = 0;
1899 pNewSite->node[0] = pNewSite->node[1] = _cvWriteSeqElem(&Node,NodeWriter);
1952 CvVoronoiNode2D Node; local
2132 CvVoronoiNodeInt Node; local
2277 CvVoronoiNodeInt Node; local
2653 CvVoronoiNodeInt Node; local
2937 CvVoronoiNodeInt Node; local
3213 CvVoronoiNodeInt Node; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp693 llvm_unreachable("Node is not in map!");
742 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); local
743 return Node;
760 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); local
761 return Node;
778 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); local
779 return Node;
3939 Entry.Node = Dst; Args.push_back(Entry);
3940 Entry.Node = Src; Args.push_back(Entry);
3941 Entry.Node
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddlist.c526 typedef union gl_dlist_node Node; typedef in typeref:union:gl_dlist_node
531 * environment. In 64-bit env, sizeof(Node)==8 anyway.
576 dlist->Head = (Node *) malloc(sizeof(Node) * count);
603 ext_opcode_destroy(struct gl_context *ctx, Node *node)
615 ext_opcode_execute(struct gl_context *ctx, Node *node)
627 ext_opcode_print(struct gl_context *ctx, Node *node)
644 Node *n, *block;
795 n = (Node *) n[1].next;
976 static Node *
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp8102 bool TraverseNode(T *Node, bool(VisitorBase:: *traverse) (T *)) { argument
8103 if (Node == NULL)
8114 (*Parents)[Node].push_back(ParentStack.back());
8115 ParentStack.push_back(ast_type_traits::DynTypedNode::create(*Node));
8116 bool Result = (this ->* traverse) (Node);
8138 ASTContext::getParents(const ast_type_traits::DynTypedNode &Node) { argument
8139 assert(Node.getMemoizationData() &&
8148 ParentMap::const_iterator I = AllParents->find(Node.getMemoizationData());
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp65 bool VisitExpr(Expr *Node);
73 bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) { argument
75 for (Stmt::child_range I = Node->children(); I; ++I)
H A DTreeTransform.h601 #define STMT(Node, Parent) \
602 StmtResult Transform##Node(Node *S);
603 #define EXPR(Node, Parent) \
604 ExprResult Transform##Node(Node *E);
2632 #define STMT(Node, Parent) \
2633 case Stmt::Node##Class: return getDerived().Transform##Node(cast<Node>(
6506 typedef OffsetOfExpr::OffsetOfNode Node; typedef
[all...]
/external/clang/tools/libclang/
H A DCIndex.cpp1929 #define PROCESS_OMP_CLAUSE_LIST(Class, Node) \
1930 for (OMPVarList<Class>::varlist_const_iterator I = Node->varlist_begin(), \
1931 E = Node->varlist_end(); \
2139 const OffsetOfNode &Node = E->getComponent(I-1); local
2140 switch (Node.getKind()) {
2142 AddStmt(E->getIndexExpr(Node.getArrayExprIndex()));
2145 AddMemberRef(Node.getField(), Node.getSourceRange().getEnd());
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp2308 Entry.Node = Argument;
5783 ReplaceATOMIC_OP_64(SDNode *Node, SmallVectorImpl<SDValue>& Results, argument
5785 SDLoc dl(Node);
5786 assert (Node->getValueType(0) == MVT::i64 &&
5790 Ops.push_back(Node->getOperand(0)); // Chain
5791 Ops.push_back(Node->getOperand(1)); // Ptr
5794 Node->getOperand(2), DAG.getIntPtrConstant(0)));
5797 Node->getOperand(2), DAG.getIntPtrConstant(1)));
5801 Node->getOperand(3), DAG.getIntPtrConstant(0)));
5804 Node
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp674 // Node matching predicates, for use by the tblgen matching code.
1552 SDNode *Node = Op.getNode(); local
1553 EVT VT = Node->getValueType(0);
1555 SDValue InChain = Node->getOperand(0);
1556 SDValue VAListPtr = Node->getOperand(1);
1557 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
1558 SDLoc dl(Node);
1693 Entry.Node = Trmp; Args.push_back(Entry);
1696 Entry.Node = DAG.getConstant(isPPC64 ? 48 : 40,
1700 Entry.Node
[all...]
/external/mesa3d/src/mesa/main/
H A Ddlist.c526 typedef union gl_dlist_node Node; typedef in typeref:union:gl_dlist_node
531 * environment. In 64-bit env, sizeof(Node)==8 anyway.
576 dlist->Head = (Node *) malloc(sizeof(Node) * count);
603 ext_opcode_destroy(struct gl_context *ctx, Node *node)
615 ext_opcode_execute(struct gl_context *ctx, Node *node)
627 ext_opcode_print(struct gl_context *ctx, Node *node)
644 Node *n, *block;
795 n = (Node *) n[1].next;
976 static Node *
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12619 assert(Subtarget->is64Bit() && "Node not type legal!");
12679 SDNode *Node = Op.getNode(); local
12680 SDLoc dl(Node);
12681 EVT T = Node->getValueType(0);
12683 DAG.getConstant(0, T), Node->getOperand(2));
12685 cast<AtomicSDNode>(Node)->getMemoryVT(),
12686 Node->getOperand(0),
12687 Node->getOperand(1), negOp,
12688 cast<AtomicSDNode>(Node)->getSrcValue(),
12689 cast<AtomicSDNode>(Node)
12695 SDNode *Node = Op.getNode(); local
12881 ReplaceATOMIC_LOAD(SDNode *Node, SmallVectorImpl<SDValue> &Results, SelectionDAG &DAG) argument
12903 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results, SelectionDAG &DAG, unsigned NewOp) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 1471 milliseconds

1234567891011