Home
last modified time | relevance | path

Searched refs:FastVector (Results 1 – 6 of 6) sorted by relevance

/device/generic/vulkan-cereal/third-party/angle/src/common/
DFastVector.h23 class FastVector final
35 FastVector();
36 FastVector(size_type count, const value_type &value);
37 FastVector(size_type count);
39 FastVector(const FastVector<T, N, Storage> &other);
40 FastVector(FastVector<T, N, Storage> &&other);
41 FastVector(std::initializer_list<value_type> init);
43 FastVector<T, N, Storage> &operator=(const FastVector<T, N, Storage> &other);
44 FastVector<T, N, Storage> &operator=(FastVector<T, N, Storage> &&other);
45 FastVector<T, N, Storage> &operator=(std::initializer_list<value_type> init);
[all …]
DFastVector_unittest.cpp17 TEST(FastVector, Constructors) in TEST() argument
19 FastVector<int, 5> defaultContructor; in TEST()
22 FastVector<int, 5> count(3); in TEST()
25 FastVector<int, 5> countAndValue(3, 2); in TEST()
29 FastVector<int, 5> copy(countAndValue); in TEST()
32 FastVector<int, 5> copyRValue(std::move(count)); in TEST()
35 FastVector<int, 5> initializerList{1, 2, 3, 4, 5}; in TEST()
39 FastVector<int, 5> assignCopy(copyRValue); in TEST()
42 FastVector<int, 5> assignRValue(std::move(assignCopy)); in TEST()
45 FastVector<int, 5> assignmentInitializerList = {1, 2, 3, 4, 5}; in TEST()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/libANGLE/
DObserver.h109 angle::FastVector<ObserverBindingBase *, kMaxFixedObservers> mObservers;
Dangletypes.h757 using BarrierVector = angle::FastVector<T, kBarrierVectorDefaultSize>;
/device/generic/vulkan-cereal/third-party/angle/
DCMakeLists.txt20 src/common/FastVector.h
/device/generic/vulkan-cereal/third-party/angle/src/
DlibGLESv2.gni8 "src/common/FastVector.h",