• Home
  • Raw
  • Download

Lines Matching refs:vector

39 std::vector<uint32_t> getMapping(const std::vector<bool>& includes) {  in getMapping()
40 std::vector<uint32_t> mapping; in getMapping()
49 void remapIndexes(std::vector<uint32_t>* indexes, const std::vector<uint32_t>& mapping) { in remapIndexes()
60 void keepSelectedElements(std::vector<Type>* elements, const std::vector<bool>& elementsToKeep) { in keepSelectedElements()
79 std::vector<bool> identifyUsedOperands(const Model& model) { in identifyUsedOperands()
80 std::vector<bool> used(model.main.operands.size(), false); in identifyUsedOperands()
81 auto markUsed = [&used](const std::vector<uint32_t>& indexes) { in identifyUsedOperands()
95 void identifyUsedSubgraphs(uint32_t current, const std::vector<Model::Subgraph>& subgraphs,
96 std::vector<bool>* used);
101 void identifyUsedSubgraphs(const std::vector<Operand>& operands, in identifyUsedSubgraphs()
102 const std::vector<Model::Subgraph>& subgraphs, std::vector<bool>* used) { in identifyUsedSubgraphs()
116 void identifyUsedSubgraphs(uint32_t current, const std::vector<Model::Subgraph>& subgraphs, in identifyUsedSubgraphs()
117 std::vector<bool>* used) { in identifyUsedSubgraphs()
134 std::vector<bool> identifyUsedSubgraphs(const Model& model) { in identifyUsedSubgraphs()
135 std::vector<bool> used(model.referenced.size(), false); in identifyUsedSubgraphs()
144 void identifyUsedPools(const Model::Subgraph& subgraph, std::vector<bool>* used) { in identifyUsedPools()
155 std::vector<bool> identifyUsedPools(const Model& model) { in identifyUsedPools()
156 std::vector<bool> used(model.pools.size(), false); in identifyUsedPools()
170 const std::vector<uint32_t>& remappedPoolIndex, in fixOperandDataLocation()
171 const std::vector<uint32_t>& remappedSubgraphIndex) { in fixOperandDataLocation()
202 void fixOperandDataLocations(std::vector<Operand>* operands, Model::OperandValues* newOperandValues, in fixOperandDataLocations()
204 const std::vector<uint32_t>& remappedPoolIndex, in fixOperandDataLocations()
205 const std::vector<uint32_t>& remappedSubgraphIndex) { in fixOperandDataLocations()
215 void fixOperandDataLocations(Model* model, const std::vector<uint32_t>& remappedPoolIndex, in fixOperandDataLocations()
216 const std::vector<uint32_t>& remappedSubgraphIndex) { in fixOperandDataLocations()
228 std::vector<bool> identifyUsedExtensions(const Model& model) { in identifyUsedExtensions()
247 std::vector<bool> used; in identifyUsedExtensions()