Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/common/
DFastVector.h24 class FastVector final
36 FastVector();
37 FastVector(size_type count, const value_type &value);
38 FastVector(size_type count);
40 FastVector(const FastVector<T, N, Storage> &other);
41 FastVector(FastVector<T, N, Storage> &&other);
42 FastVector(std::initializer_list<value_type> init);
45 FastVector(InputIt first, InputIt last);
47 FastVector<T, N, Storage> &operator=(const FastVector<T, N, Storage> &other);
48 FastVector<T, N, Storage> &operator=(FastVector<T, N, Storage> &&other);
[all …]
DFastVector_unittest.cpp17 TEST(FastVector, Constructors) in TEST() argument
19 FastVector<int, 5> defaultContructor; in TEST()
28 FastVector<int, 5> count(vectorSizes[i]); in TEST()
31 FastVector<int, 5> countAndValue(vectorSizes[i], 2); in TEST()
35 FastVector<int, 5> copy(countAndValue); in TEST()
38 FastVector<int, 5> copyRValue(std::move(count)); in TEST()
41 FastVector<int, 5> copyIter(countAndValue.begin(), countAndValue.end()); in TEST()
44 FastVector<int, 5> copyIterEmpty(countAndValue.begin(), countAndValue.begin()); in TEST()
47 FastVector<int, 5> assignCopy(copyRValue); in TEST()
50 FastVector<int, 5> assignRValue(std::move(assignCopy)); in TEST()
[all …]
Dsystem_utils_win32.cpp28 FastVector<char, MAX_PATH> value; in GetEnvironmentVar()
/third_party/skia/third_party/externals/angle2/src/common/spirv/
Dspirv_types.h99 using FastVectorHelper = angle::FastVector<T, kFastVectorSize>;
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DObserver.h133 angle::FastVector<ObserverBindingBase *, kMaxFixedObservers> mObservers;
DBuffer.h212 angle::FastVector<ContentsObserver, angle::kMaxFixedObservers> mContentsObservers;
DTexture.h681 angle::FastVector<rx::Serial, kFastFramebufferSerialCount> mBoundFramebufferSerials;
Dangletypes.h900 using BarrierVector = angle::FastVector<T, kBarrierVectorDefaultSize>;
/third_party/skia/third_party/externals/angle2/src/
DlibGLESv2.gni9 "src/common/FastVector.h",
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.h1196 angle::FastVector<uint32_t, kFastBufferWordLimit> mPayload;
Dvk_cache_utils.cpp483 using SubpassVector = angle::FastVector<T, kSubpassFastVectorSize>;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dglslang_wrapper_utils.cpp1955 angle::FastVector<spirv::IdRef, 4> mIntNIds;
2301 angle::FastVector<spirv::IdRef, 4> intNIds, in AccessChainIndexListAppend()