OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nItr
(Results
1 - 5
of
5
) sorted by null
/external/llvm/include/llvm/CodeGen/PBQP/
HeuristicBase.h
66
void addToOptimalReductionList(Graph::NodeItr
nItr
) {
67
optimalList.insert(optimalList.end(),
nItr
);
108
bool shouldOptimallyReduce(Graph::NodeItr
nItr
) {
109
if (g.getNodeDegree(
nItr
) < 3)
116
/// @param
nItr
Node iterator to be added.
121
void addToOptimalReduceList(Graph::NodeItr
nItr
) {
122
optimalList.push_back(
nItr
);
133
for (Graph::NodeItr
nItr
= g.nodesBegin(), nEnd = g.nodesEnd();
134
nItr
!= nEnd; ++
nItr
) {
[
all
...]
Solution.h
74
/// @param
nItr
Node iterator.
75
/// @param selection Selection for
nItr
.
76
void setSelection(Graph::NodeItr
nItr
, unsigned selection) {
77
selections[
nItr
] = selection;
81
/// @param
nItr
Node iterator.
82
/// @return The selection for
nItr
;
83
unsigned getSelection(Graph::ConstNodeItr
nItr
) const {
84
SelectionsMap::const_iterator sItr = selections.find(
nItr
);
Graph.h
116
NodeEntry& getNode(NodeItr
nItr
) { return *
nItr
; }
117
const NodeEntry& getNode(ConstNodeItr
nItr
) const { return *
nItr
; }
198
/// @param
nItr
Node iterator.
200
Vector& getNodeCosts(NodeItr
nItr
) { return getNode(
nItr
).getCosts(); }
203
/// @param
nItr
Node iterator.
205
const Vector& getNodeCosts(ConstNodeItr
nItr
) const {
206
return getNode(
nItr
).getCosts()
[
all
...]
HeuristicSolver.h
128
/// @param
nItr
Node iterator.
130
HeuristicNodeData& getHeuristicNodeData(Graph::NodeItr
nItr
) {
131
return getSolverNodeData(
nItr
).getHeuristicData();
143
/// @param
nItr
Node iterator.
146
SolverEdgeItr solverEdgesBegin(Graph::NodeItr
nItr
) {
147
return getSolverNodeData(
nItr
).solverEdgesBegin();
152
/// @param
nItr
Node iterator.
155
SolverEdgeItr solverEdgesEnd(Graph::NodeItr
nItr
) {
156
return getSolverNodeData(
nItr
).solverEdgesEnd();
191
/// @param
nItr
Node iterator to add to the reduction stack
[
all
...]
/external/llvm/include/llvm/CodeGen/PBQP/Heuristics/
Briggs.h
117
/// @param
nItr
Node iterator to be considered.
126
bool shouldOptimallyReduce(Graph::NodeItr
nItr
) {
127
if (getSolver().getSolverDegree(
nItr
) < 3) {
135
/// @param
nItr
Node iterator to add to the heuristic reduce list.
136
void addToHeuristicReduceList(Graph::NodeItr
nItr
) {
137
NodeData &nd = getHeuristicNodeData(
nItr
);
138
initializeNode(
nItr
);
141
nd.rnaItr = rnAllocableList.insert(rnAllocableList.end(),
nItr
);
143
nd.rnuItr = rnUnallocableList.insert(rnUnallocableList.end(),
nItr
);
162
Graph::NodeItr
nItr
= *rnaItr
[
all
...]
Completed in 2682 milliseconds