Home
last modified time | relevance | path

Searched refs:VectorPtr (Results 1 – 10 of 10) sorted by relevance

/external/libbrillo/brillo/streams/
Dmemory_stream.h111 std::unique_ptr<data_container::VectorPtr<T>> container{ in CreateRef()
112 new data_container::VectorPtr<T>{buffer}}; in CreateRef()
129 std::unique_ptr<data_container::VectorPtr<T>> container{ in CreateRefForAppend()
130 new data_container::VectorPtr<T>{buffer}}; in CreateRefForAppend()
Dmemory_containers.h154 class VectorPtr : public ContiguousBufferBase {
157 explicit VectorPtr(std::vector<T>* vector) : vector_ptr_(vector) {} in VectorPtr() function
177 DISALLOW_COPY_AND_ASSIGN(VectorPtr);
232 class BRILLO_EXPORT ByteBuffer : public VectorPtr<uint8_t> {
Dmemory_containers.cc96 : VectorPtr(new std::vector<uint8_t>()) { in ByteBuffer()
/external/llvm-project/llvm/include/llvm/CodeGen/PBQP/
DGraph.h55 using VectorPtr = typename CostAllocator::VectorPtr; variable
68 NodeEntry(VectorPtr Costs) : Costs(std::move(Costs)) {} in NodeEntry()
94 VectorPtr Costs;
377 VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs)); in addNode()
467 VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs)); in setNodeCosts()
481 const VectorPtr& getNodeCostsPtr(NodeId NId) const { in getNodeCostsPtr()
DCostAllocator.h115 using VectorPtr = typename VectorCostPool::PoolRef; variable
118 template <typename VectorKeyT> VectorPtr getVector(VectorKeyT v) { in getVector()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DGraph.h55 using VectorPtr = typename CostAllocator::VectorPtr; variable
68 NodeEntry(VectorPtr Costs) : Costs(std::move(Costs)) {} in NodeEntry()
94 VectorPtr Costs;
377 VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs)); in addNode()
467 VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs)); in setNodeCosts()
481 const VectorPtr& getNodeCostsPtr(NodeId NId) const { in getNodeCostsPtr()
DCostAllocator.h115 using VectorPtr = typename VectorCostPool::PoolRef; variable
118 template <typename VectorKeyT> VectorPtr getVector(VectorKeyT v) { in getVector()
/external/llvm/include/llvm/CodeGen/PBQP/
DGraph.h56 typedef typename CostAllocator::VectorPtr VectorPtr; typedef
74 NodeEntry(VectorPtr Costs) : Costs(std::move(Costs)) {} in NodeEntry()
96 VectorPtr Costs;
384 VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs)); in addNode()
474 VectorPtr AllocatedCosts = CostAlloc.getVector(std::move(Costs)); in setNodeCosts()
488 const VectorPtr& getNodeCostsPtr(NodeId NId) const { in getNodeCostsPtr()
DCostAllocator.h116 typedef typename VectorCostPool::PoolRef VectorPtr; typedef
120 VectorPtr getVector(VectorKeyT v) { return VectorPool.getValue(std::move(v)); } in getVector()
/external/llvm-project/polly/lib/CodeGen/
DBlockGenerators.cpp1060 Value *VectorPtr = in generateStrideOneLoad() local
1063 Builder.CreateLoad(VectorPtr, Load->getName() + "_p_vec_full"); in generateStrideOneLoad()
1087 Value *VectorPtr = Builder.CreateBitCast(NewPointer, VectorPtrType, in generateStrideZeroLoad() local
1090 Builder.CreateLoad(VectorPtr, Load->getName() + "_p_splat_one"); in generateStrideZeroLoad()
1208 Value *VectorPtr = in copyStore() local
1210 StoreInst *Store = Builder.CreateStore(Vector, VectorPtr); in copyStore()
1343 Value *VectorPtr = Builder.CreateBitCast(Address, VectorPtrType, in generateScalarVectorLoads() local
1345 auto *Val = Builder.CreateLoad(VectorPtr, Address->getName() + ".reload"); in generateScalarVectorLoads()