Home
last modified time | relevance | path

Searched refs:v_begin (Results 1 – 3 of 3) sorted by relevance

/external/google-fruit/include/fruit/impl/data_structures/
Dfixed_size_vector.defn.h35 v_begin = 0; in FixedSizeVector()
37 v_begin = allocator.allocate(capacity); in FixedSizeVector()
39 v_end = v_begin; in FixedSizeVector()
46 allocator.deallocate(v_begin, capacity); in ~FixedSizeVector()
81 std::swap(v_begin, x.v_begin); in swap()
88 FruitAssert(v_end != v_begin + capacity); in push_back()
93 FruitAssert(v_end <= v_begin + capacity); in push_back()
100 return v_begin; in data()
105 return v_begin; in begin()
115 return v_begin; in data()
[all …]
Dfixed_size_vector.templates.h38 FruitAssert(v_begin != nullptr); in FixedSizeVector()
39 FruitAssert(other.v_begin != nullptr); in FixedSizeVector()
40 std::memcpy(v_begin, other.v_begin, other.size() * sizeof(T)); in FixedSizeVector()
42 v_end = v_begin + other.size(); in FixedSizeVector()
Dfixed_size_vector.h38 T* v_begin; variable