Home
last modified time | relevance | path

Searched refs:StackVector (Results 1 – 25 of 112) sorted by relevance

12345

/dports/science/py-chainer/chainer-7.8.0/chainerx_cc/chainerx/
H A Dstack_vector_test.cc18 using Vector = StackVector<int, 5>; in TEST()
97 StackVector<int, 5> vec1{}; in TEST()
102 StackVector<int, 0> vec2{}; in TEST()
109 StackVector<int, 5> vec1{2, 3}; in TEST()
150 StackVector<int, 5> vec2{}; in TEST()
171 StackVector<int, 5> vec2{}; in TEST()
187 StackVector<int, 5> vec1{}; in TEST()
188 StackVector<int, 5> vec2{}; in TEST()
200 StackVector<int, 5> vec2{}; in TEST()
205 StackVector<int, 5> vec1{}; in TEST()
[all …]
H A Dstack_vector.h23 class StackVector {
41 StackVector() = default;
43 ~StackVector() = default;
46 StackVector(InputIter first, InputIter last) { in StackVector() function
52 StackVector(std::initializer_list<T> list) : StackVector{list.begin(), list.end()} {} in StackVector() function
54StackVector(const StackVector& other) : n_{other.n_} { std::copy(other.d_.cbegin(), other.d_.cbegi… in StackVector() function
56 StackVector& operator=(const StackVector& other) {
62StackVector(StackVector&& other) noexcept : n_{other.n_} { std::move(other.d_.begin(), other.d_.be… in StackVector() function
64 StackVector& operator=(StackVector&& other) noexcept {
80 …bool operator==(const StackVector& rhs) const { return n_ == rhs.n_ && std::equal(d_.cbegin(), d_.…
[all …]
H A Daxes.h21 class Axes : public StackVector<int8_t, kMaxNdim> {
22 using BaseVector = StackVector<int8_t, kMaxNdim>;
64 return this->StackVector::operator[](index);
71 return this->StackVector::operator[](index);
H A Dstrides.h70 return this->StackVector::operator[](index);
77 return this->StackVector::operator[](index);
/dports/science/py-chainer/chainer-7.8.0/chainerx_cc/chainerx/cuda/
H A Dcudnn.cc54 StackVector<int, kMaxNdim> int_container; in GetIntStackVector()
70 StackVector<int, kMaxNdim> GetIntDilation(const StackVector<int64_t, kMaxNdim>& dilation) { in GetIntDilation()
76 StackVector<int, kMaxNdim> int_strides; in GetIntArrayStrides()
102 StackVector<int, kMaxNdim> nchw = GetIntShape(arr.shape());
142 StackVector<int, kMaxNdim> nchw = GetIntShape(w.shape());
145 StackVector<int, kMaxNdim> int_shape = GetIntShape(w.shape());
165 StackVector<int, kMaxNdim> int_stride = GetIntStride(stride);
166 StackVector<int, kMaxNdim> int_pad = GetIntPad(pad);
167 StackVector<int, kMaxNdim> int_dilation{};
215 StackVector<int, kMaxNdim> int_pad = GetIntPad(pad);
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/containers/
H A Dstack_container_unittest.cc40 StackVector<int, stack_size> vect; in TEST()
82 typedef StackVector<scoped_refptr<Dummy>, 2> Vector; in TEST()
117 StackVector<wchar_t, 16> text; in TEST()
121 StackVector<double, 1> doubles; in TEST()
125 StackVector<AlignedData<16>, 1> aligned16; in TEST()
133 StackVector<AlignedData<256>, 1> aligned256; in TEST()
139 template class StackVector<int, 2>; variable
140 template class StackVector<scoped_refptr<Dummy>, 2>; variable
143 void CheckStackVectorElements(const StackVector<T, size>& vec, in CheckStackVectorElements()
156 StackVector<int, 3> vect; in TEST()
H A Dstack_container.h214 class StackVector : public StackContainer<
218 StackVector() : StackContainer< in StackVector() function
227 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
234 StackVector<T, stack_capacity>& operator=(
235 const StackVector<T, stack_capacity>& other) {
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/containers/
H A Dstack_container_unittest.cc39 StackVector<int, stack_size> vect; in TEST()
81 typedef StackVector<scoped_refptr<Dummy>, 2> Vector; in TEST()
119 StackVector<wchar_t, 16> text; in TEST()
123 StackVector<double, 1> doubles; in TEST()
127 StackVector<AlignedData<16>, 1> aligned16; in TEST()
135 StackVector<AlignedData<256>, 1> aligned256; in TEST()
141 template class StackVector<int, 2>; variable
142 template class StackVector<scoped_refptr<Dummy>, 2>; variable
145 void CheckStackVectorElements(const StackVector<T, size>& vec, in CheckStackVectorElements()
158 StackVector<int, 3> vect; in TEST()
H A Dstack_container.h218 class StackVector : public StackContainer<
222 StackVector() : StackContainer< in StackVector() function
231 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
238 StackVector<T, stack_capacity>& operator=(
239 const StackVector<T, stack_capacity>& other) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/tests/unittests/
H A DStackContainerTests.cpp35 StackVector<int, stack_size> vect; in TEST()
77 typedef StackVector<Ref<Dummy>, 2> Vector; in TEST()
116 StackVector<wchar_t, 16> text; in TEST()
120 StackVector<double, 1> doubles; in TEST()
124 StackVector<AlignedData<16>, 1> aligned16; in TEST()
132 StackVector<AlignedData<256>, 1> aligned256; in TEST()
138 template class StackVector<int, 2>; variable
139 template class StackVector<Ref<Dummy>, 2>; variable
142 void CheckStackVectorElements(const StackVector<T, size>& vec, std::initializer_list<T> expected) { in CheckStackVectorElements()
154 StackVector<int, 3> vect; in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/common/
H A DStackContainer.h225 class StackVector
228 StackVector() in StackVector() function
236 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
241 StackVector<T, stack_capacity>& operator=(const StackVector<T, stack_capacity>& other) {
258 StackVector(StackVector&& rhs) = delete;
259 StackVector& operator=(StackVector&& rhs) = delete;
H A Dityp_stack_vec.h25 class stack_vec : private StackVector<Value, StaticCapacity> {
27 using Base = StackVector<Value, StaticCapacity>;
/dports/science/py-chainer/chainer-7.8.0/chainerx_cc/chainerx/python/
H A Dstack_vector.h18 StackVector<T, kMaxNdim> ToStackVector(pybind11::int_ item, size_t size) { in ToStackVector()
19 StackVector<T, kMaxNdim> out; in ToStackVector()
25 StackVector<T, kMaxNdim> ToStackVector(const pybind11::tuple& tup) { in ToStackVector()
26 StackVector<T, kMaxNdim> out; in ToStackVector()
35 StackVector<T, kMaxNdim> ToStackVector(pybind11::handle handle, size_t size) { in ToStackVector()
/dports/www/firefox-esr/firefox-91.8.0/ipc/chromium/src/base/
H A Dstack_container.h212 class StackVector
216 StackVector() in StackVector() function
224 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
230 StackVector<T, stack_capacity>& operator=(
231 const StackVector<T, stack_capacity>& other) {
/dports/lang/spidermonkey78/firefox-78.9.0/ipc/chromium/src/base/
H A Dstack_container.h212 class StackVector
216 StackVector() in StackVector() function
224 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
230 StackVector<T, stack_capacity>& operator=(
231 const StackVector<T, stack_capacity>& other) {
/dports/www/firefox/firefox-99.0/ipc/chromium/src/base/
H A Dstack_container.h212 class StackVector
216 StackVector() in StackVector() function
224 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
230 StackVector<T, stack_capacity>& operator=(
231 const StackVector<T, stack_capacity>& other) {
/dports/mail/thunderbird/thunderbird-91.8.0/ipc/chromium/src/base/
H A Dstack_container.h212 class StackVector
216 StackVector() in StackVector() function
224 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
230 StackVector<T, stack_capacity>& operator=(
231 const StackVector<T, stack_capacity>& other) {
/dports/www/firefox-legacy/firefox-52.8.0esr/ipc/chromium/src/base/
H A Dstack_container.h221 class StackVector : public StackContainer<
225 StackVector() : StackContainer< in StackVector() function
234 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
241 StackVector<T, stack_capacity>& operator=(
242 const StackVector<T, stack_capacity>& other) {
/dports/lang/spidermonkey60/firefox-60.9.0/ipc/chromium/src/base/
H A Dstack_container.h212 class StackVector
216 StackVector() in StackVector() function
224 StackVector(const StackVector<T, stack_capacity>& other) in StackVector() function
230 StackVector<T, stack_capacity>& operator=(
231 const StackVector<T, stack_capacity>& other) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/tracing/public/cpp/perfetto/
H A Dtrace_packet_tokenizer.h61 base::StackVector<uint8_t, 64> partial_data; in COMPONENT_EXPORT()
64 base::StackVector<uint8_t, kMaxHeaderSize> header; in COMPONENT_EXPORT()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/mojo/core/
H A Drequest_context.h88 base::StackVector<WatchNotifyFinalizer, kStaticWatchFinalizersCapacity>;
90 base::StackVector<scoped_refptr<Watch>, kStaticWatchFinalizersCapacity>;
/dports/www/chromium-legacy/chromium-88.0.4324.182/mojo/core/
H A Drequest_context.h88 base::StackVector<WatchNotifyFinalizer, kStaticWatchFinalizersCapacity>;
90 base::StackVector<scoped_refptr<Watch>, kStaticWatchFinalizersCapacity>;
/dports/www/firefox/firefox-99.0/js/src/gc/
H A DGCMarker.h182 using StackVector = Vector<TaggedPtr, 0, SystemAllocPolicy>;
183 const StackVector& stack() const { return stack_.ref(); } in stack()
184 StackVector& stack() { return stack_.ref(); } in stack()
205 MainThreadOrGCTaskData<StackVector> stack_;
/dports/multimedia/tinyobjloader/tinyobjloader-2.0.0rc8-3-g7ba4b65/experimental/
H A Dtinyobj_loader_opt.h237 class StackVector
241 StackVector() in StackVector() function
249 StackVector(const StackVector<T, stack_capacity> &other) in StackVector() function
255 StackVector<T, stack_capacity> &operator=(
256 const StackVector<T, stack_capacity> &other) {
348 typedef StackVector<char, 256> ShortString;
1124 StackVector<index_t, 8> f;
1299 StackVector<std::thread, 16> workers; in parseObj()
1395 StackVector<std::thread, 16> workers; in parseObj()
1524 StackVector<std::thread, 16> workers; in parseObj()
/dports/www/firefox-esr/firefox-91.8.0/js/src/gc/
H A DGCMarker.h187 using StackVector = Vector<TaggedPtr, 0, SystemAllocPolicy>;
188 const StackVector& stack() const { return stack_.ref(); } in stack()
189 StackVector& stack() { return stack_.ref(); } in stack()
210 MainThreadOrGCTaskData<StackVector> stack_;

12345