OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VectorPtr
(Results
1 - 5
of
5
) sorted by null
/external/libbrillo/brillo/streams/
memory_stream.h
109
std::unique_ptr<data_container::
VectorPtr
<T>> container{
110
new data_container::
VectorPtr
<T>{buffer}};
127
std::unique_ptr<data_container::
VectorPtr
<T>> container{
128
new data_container::
VectorPtr
<T>{buffer}};
memory_containers.h
149
//
VectorPtr
<T> is a read/write container based on a vector<T> pointer.
153
class
VectorPtr
: public ContiguousBufferBase {
156
explicit
VectorPtr
(std::vector<T>* vector) : vector_ptr_(vector) {}
176
DISALLOW_COPY_AND_ASSIGN(
VectorPtr
);
231
class BRILLO_EXPORT ByteBuffer : public
VectorPtr
<uint8_t> {
memory_containers.cc
96
:
VectorPtr
(new std::vector<uint8_t>()) {
/external/llvm/include/llvm/CodeGen/PBQP/
CostAllocator.h
116
typedef typename VectorCostPool::PoolRef
VectorPtr
;
120
VectorPtr
getVector(VectorKeyT v) { return VectorPool.getValue(std::move(v)); }
Graph.h
57
typedef typename CostAllocator::
VectorPtr
VectorPtr
;
75
NodeEntry(
VectorPtr
Costs) : Costs(Costs) {}
97
VectorPtr
Costs;
384
VectorPtr
AllocatedCosts = CostAlloc.getVector(std::move(Costs));
393
///
VectorPtr
).
474
VectorPtr
AllocatedCosts = CostAlloc.getVector(std::move(Costs));
480
/// @brief Get a
VectorPtr
to a node's cost vector. Rarely useful - use
483
/// @return
VectorPtr
to node cost vector.
488
const
VectorPtr
& getNodeCostsPtr(NodeId NId) const
[
all
...]
Completed in 66 milliseconds