Home
last modified time | relevance | path

Searched refs:Unaligned (Results 1 – 25 of 101) sorted by relevance

12345

/external/skia/bench/
DGrMemoryPoolBench.cpp26 struct alignas(2) Unaligned { struct
29 static_assert(sizeof(Unaligned) == 30);
30 static_assert(sizeof(Unaligned) % GrMemoryPool::kAlignment != 0);
33 static_assert(GrAlignTo(sizeof(Unaligned), GrMemoryPool::kAlignment) == sizeof(Aligned));
196 DEF_BENCH( return new GrMemoryPoolBench("stack_unaligned_lg", run_stack<Unaligned>, kLargePool…
197 DEF_BENCH( return new GrMemoryPoolBench("stack_unaligned_sm", run_stack<Unaligned>, kSmallPool…
198 DEF_BENCH( return new GrMemoryPoolBench("stack_unaligned_ref", run_stack<Unaligned>, 0); )
203 DEF_BENCH( return new GrMemoryPoolBench("queue_unaligned_lg", run_queue<Unaligned>, kLargePool…
204 DEF_BENCH( return new GrMemoryPoolBench("queue_unaligned_sm", run_queue<Unaligned>, kSmallPool…
205 DEF_BENCH( return new GrMemoryPoolBench("queue_unaligned_ref", run_queue<Unaligned>, 0); )
[all …]
/external/eigen/test/
Dmapstride.cpp39 Map<VectorType, Unaligned, InnerStride<Dynamic> > map(array, size, InnerStride<Dynamic>(2)); in map_class_vector()
154 CALL_SUBTEST_1( map_class_vector<Unaligned>(Matrix<float, 1, 1>()) ); in test_mapstride()
156 CALL_SUBTEST_2( map_class_vector<Unaligned>(Vector4d()) ); in test_mapstride()
158 CALL_SUBTEST_3( map_class_vector<Unaligned>(RowVector4f()) ); in test_mapstride()
160 CALL_SUBTEST_4( map_class_vector<Unaligned>(VectorXcf(internal::random<int>(1,maxn))) ); in test_mapstride()
162 CALL_SUBTEST_5( map_class_vector<Unaligned>(VectorXi(internal::random<int>(1,maxn))) ); in test_mapstride()
165 CALL_SUBTEST_1( map_class_matrix<Unaligned>(Matrix<float, 1, 1>()) ); in test_mapstride()
167 CALL_SUBTEST_2( map_class_matrix<Unaligned>(Matrix4d()) ); in test_mapstride()
169 CALL_SUBTEST_3( map_class_matrix<Unaligned>(Matrix<float,3,5>()) ); in test_mapstride()
171 CALL_SUBTEST_3( map_class_matrix<Unaligned>(Matrix<float,4,8>()) ); in test_mapstride()
[all …]
/external/llvm-project/clang/test/CXX/expr/expr.unary/expr.new/
Dp14.cpp12 struct alignas(Align) Unaligned { struct
15 auto *ua = new Unaligned<__STDCPP_DEFAULT_NEW_ALIGNMENT__>; // expected-error {{deleted}}
16 auto *ub = new Unaligned<__STDCPP_DEFAULT_NEW_ALIGNMENT__ * 2>; // expected-error {{deleted}}
17 auto *uap = new (arg) Unaligned<__STDCPP_DEFAULT_NEW_ALIGNMENT__, Arg>; // expected-error {{deleted…
18 auto *ubp = new (arg) Unaligned<__STDCPP_DEFAULT_NEW_ALIGNMENT__ * 2, Arg>; // expected-error {{del…
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorContractionCuda.h546 reg =lhs.loadPacket<Unaligned>(row, col); \ in EigenFloatContractionKernelInternal16x16()
551 reg =lhs.loadPacket<Unaligned>(row, col); \ in EigenFloatContractionKernelInternal16x16()
581 rhs_pf0 = rhs.loadPacket<Unaligned>(rhs_vert, rhs_horiz0); in EigenFloatContractionKernelInternal16x16()
596 rhs_pf0 = rhs.loadPacket<Unaligned>(rhs_vert, rhs_horiz0); in EigenFloatContractionKernelInternal16x16()
793 lhs_pf0 =lhs.loadPacket<Unaligned>(lhs_vert, (threadIdx.y/4+k)); in EigenFloatContractionKernelInternal()
794 lhs_pf1 =lhs.loadPacket<Unaligned>(lhs_vert, (threadIdx.y/4+k+8)); in EigenFloatContractionKernelInternal()
795 lhs_pf2 =lhs.loadPacket<Unaligned>(lhs_vert, (threadIdx.y/4+k+16)); in EigenFloatContractionKernelInternal()
796 lhs_pf3 =lhs.loadPacket<Unaligned>(lhs_vert, (threadIdx.y/4+k+24)); in EigenFloatContractionKernelInternal()
798 lhs_pf0 =lhs.loadPacket<Unaligned>(lhs_vert, (threadIdx.y/4+k)); in EigenFloatContractionKernelInternal()
799 lhs_pf1 =lhs.loadPacket<Unaligned>(lhs_vert, (threadIdx.y/4+k+8)); in EigenFloatContractionKernelInternal()
[all …]
DTensorContraction.h347 … static_cast<const Derived*>(this)->template evalProduct<true, true, true, Unaligned>(buffer);
350 … static_cast<const Derived*>(this)->template evalProduct<true, true, false, Unaligned>(buffer);
355 … static_cast<const Derived*>(this)->template evalProduct<true, false, true, Unaligned>(buffer);
358 … static_cast<const Derived*>(this)->template evalProduct<true, false, false, Unaligned>(buffer);
365 … static_cast<const Derived*>(this)->template evalProduct<false, true, true, Unaligned>(buffer);
368 … static_cast<const Derived*>(this)->template evalProduct<false, true, false, Unaligned>(buffer);
373 … static_cast<const Derived*>(this)->template evalProduct<false, false, true, Unaligned>(buffer);
376 … static_cast<const Derived*>(this)->template evalProduct<false, false, false, Unaligned>(buffer);
393 const int lhs_alignment = LeftEvaluator::IsAligned ? Aligned : Unaligned;
394 const int rhs_alignment = RightEvaluator::IsAligned ? Aligned : Unaligned;
[all …]
DTensorAssign.h139 const int LhsStoreMode = TensorEvaluator<LeftArgType, Device>::IsAligned ? Aligned : Unaligned;
140 const int RhsLoadMode = TensorEvaluator<RightArgType, Device>::IsAligned ? Aligned : Unaligned;
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixVector.h223 _EIGEN_ACCUMULATE_PACKETS(Aligned,Unaligned,Aligned);
262 _EIGEN_ACCUMULATE_PACKETS(Aligned,Unaligned,Unaligned);
267 _EIGEN_ACCUMULATE_PACKETS(Unaligned,Unaligned,Unaligned);
305 …pstore(&res[i], pcj.pmadd(lhs0.template load<LhsPacket, Unaligned>(i), ptmp0, pload<ResPacket>(&re…
499 _EIGEN_ACCUMULATE_PACKETS(Aligned,Unaligned,Aligned);
540 _EIGEN_ACCUMULATE_PACKETS(Aligned,Unaligned,Unaligned);
545 _EIGEN_ACCUMULATE_PACKETS(Unaligned,Unaligned,Unaligned);
592 …ptmp0 = pcj.pmadd(lhs0.template load<LhsPacket, Unaligned>(j), rhs.getVectorMapper(j, 0).template …
/external/tensorflow/tensorflow/core/kernels/
Dredux_functor.h87 Eigen::Unaligned>; in operator()
91 Eigen::Unaligned>; in operator()
153 Eigen::Unaligned>; in operator()
157 Eigen::Unaligned>; in operator()
323 Eigen::Unaligned>; in operator()
Dsegment_reduction_ops_impl.h158 Eigen::Unaligned> in Compute()
172 Eigen::TensorMap<Eigen::Tensor<T, 2, Eigen::RowMajor>, Eigen::Unaligned> in Compute()
185 Eigen::Unaligned> in Compute()
193 Eigen::Unaligned> in Compute()
551 Eigen::TensorMap<Eigen::Tensor<T, 2, Eigen::RowMajor>, Eigen::Unaligned>
577 Eigen::TensorMap<Eigen::Tensor<T, 2, Eigen::RowMajor>, Eigen::Unaligned>
/external/eigen/Eigen/src/Core/util/
DConstants.h228 Unaligned=0, /**< Data pointer has no specific alignment. */ enumerator
247 AlignedMax = Unaligned
/external/eigen/failtest/
Dmap_nonconst_ctor_on_const_ptr_4.cpp12 Map<CV_QUALIFIER MatrixXf, Unaligned, OuterStride<> > m(ptr, rows, cols, OuterStride<>(2)); in foo()
/external/eigen/doc/snippets/
DTutorial_Map_rowmajor.cpp6 Map<Matrix<int,2,4>, Unaligned, Stride<1,4> >(array) << endl;
/external/llvm-project/llvm/test/CodeGen/XCore/
Dunaligned_store_combine.ll3 ; Unaligned load / store pair. Should be combined into a memmove
/external/llvm/test/CodeGen/XCore/
Dunaligned_store_combine.ll3 ; Unaligned load / store pair. Should be combined into a memmove
/external/eigen/Eigen/src/Core/
DBlock.h265 … return m_xpr.template packet<Unaligned>(rowId + m_startRow.value(), colId + m_startCol.value());
271 …m_xpr.template writePacket<Unaligned>(rowId + m_startRow.value(), colId + m_startCol.value(), val);
277 return m_xpr.template packet<Unaligned>
285 m_xpr.template writePacket<Unaligned>
DPlainObjectBase.h122 friend class Eigen::Map<Derived, Unaligned>;
123 typedef Eigen::Map<Derived, Unaligned> MapType;
124 friend class Eigen::Map<const Derived, Unaligned>;
125 typedef const Eigen::Map<const Derived, Unaligned> ConstMapType;
133 …template<typename StrideType> struct StridedMapType { typedef Eigen::Map<Derived, Unaligned, Strid…
134 …ideType> struct StridedConstMapType { typedef Eigen::Map<const Derived, Unaligned, StrideType> typ…
DRedux.h222 …ccessBit) && bool(packet_traits<Scalar>::AlignedOnScalar)) ? int(packetAlignment) : int(Unaligned),
286 PacketType packet_res = mat.template packet<Unaligned,PacketType>(0,0);
289 …packet_res = func.packetOp(packet_res, mat.template packetByOuterInner<Unaligned,PacketType>(j,i));
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeBuiltin.cpp41 return (Mods & ModifierOptions::Unaligned) != ModifierOptions::None; in isUnalignedType()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeBuiltin.cpp41 return (Mods & ModifierOptions::Unaligned) != ModifierOptions::None; in isUnalignedType()
/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh141 dst.template copyPacket<Src, Aligned, Unaligned>(j, index, src); in triassign()
143 dst.template copyPacket<Src, Aligned, Unaligned>(index, j, src); in triassign()
/external/llvm/include/llvm/DebugInfo/CodeView/
DCodeView.h285 Unaligned = 0x0004 enumerator
341 Unaligned = 0x00000800, enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DCodeView.h303 Unaligned = 0x0004 enumerator
362 Unaligned = 0x00000800, enumerator
/external/eigen/doc/
DTutorialMapClass.dox40 …ions specifies whether the pointer is \c #Aligned, or \c #Unaligned. The default is \c #Unaligned.
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DCodeView.h303 Unaligned = 0x0004 enumerator
362 Unaligned = 0x00000800, enumerator
/external/llvm/test/CodeGen/PowerPC/
Dvsx-p8.ll8 ; Unaligned loads/stores on P8 and later should use VSX where possible.

12345