/external/angle/src/common/ |
D | FixedVector.h | 22 class FixedVector final 36 FixedVector(); 37 FixedVector(size_type count, const value_type &value); 38 FixedVector(size_type count); 40 FixedVector(const FixedVector<T, N, Storage> &other); 41 FixedVector(FixedVector<T, N, Storage> &&other); 42 FixedVector(std::initializer_list<value_type> init); 44 FixedVector<T, N, Storage> &operator=(const FixedVector<T, N, Storage> &other); 45 FixedVector<T, N, Storage> &operator=(FixedVector<T, N, Storage> &&other); 46 FixedVector<T, N, Storage> &operator=(std::initializer_list<value_type> init); [all …]
|
D | FixedVector_unittest.cpp | 17 TEST(FixedVector, Constructors) in TEST() argument 19 FixedVector<int, 5> defaultContructor; in TEST() 22 FixedVector<int, 5> count(3); in TEST() 25 FixedVector<int, 5> countAndValue(3, 2); in TEST() 29 FixedVector<int, 5> copy(countAndValue); in TEST() 32 FixedVector<int, 5> copyRValue(std::move(count)); in TEST() 35 FixedVector<int, 5> initializerList{1, 2, 3, 4, 5}; in TEST() 39 FixedVector<int, 5> assignCopy(copyRValue); in TEST() 42 FixedVector<int, 5> assignRValue(std::move(assignCopy)); in TEST() 45 FixedVector<int, 5> assignmentInitializerList = {1, 2, 3, 4, 5}; in TEST() [all …]
|
/external/eigen/test/ |
D | umeyama.cpp | 127 typedef Matrix<Scalar, Dimension, 1> FixedVector; in run_fixed_size_test() typedef 137 FixedVector t = Scalar(32)*FixedVector::Random(dim,1); in run_fixed_size_test()
|
/external/llvm/test/CodeGen/X86/ |
D | negate-add-zero.ll | 55 %"struct.FixedVector<double,2,0>" = type { %"struct.FixedVectorBase<double,2>" } 56 %"struct.FixedVector<double,5,0>" = type { %"struct.FixedVectorBase<double,5>" } 68 …FixedVector<double,2,0>", %"struct.FixedVector<double,2,0>", %"struct.FixedVector<double,2,0>", %"… 70 …FixedVector<double,5,0>", %"struct.FixedVector<double,5,0>", %"struct.FixedVector<double,5,0>", %"… 88 …%"struct.SubVector<FixedVector<double, 6, 0> >" = type { %"struct.FixedMatrix<double,1,6,0,0>"*, i… 271 …std::basic_ostream<char,std::char_traits<char> >"*, %"struct.SubVector<FixedVector<double, 6, 0> >… 293 …i0EERK11FixedMatrixIS1_XT0_EXT1_ELi0ELi0EERKS0_IS1_XT1_ELi0EE(%"struct.FixedVector<double,5,0>"* n… 769 …_RK9SubVectorIT0_ERKS4_(%struct.Vec3* noalias sret, %"struct.SubVector<FixedVector<double, 6, 0> >…
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | negate-add-zero.ll | 56 %"struct.FixedVector<double,2,0>" = type { %"struct.FixedVectorBase<double,2>" } 57 %"struct.FixedVector<double,5,0>" = type { %"struct.FixedVectorBase<double,5>" } 69 …FixedVector<double,2,0>", %"struct.FixedVector<double,2,0>", %"struct.FixedVector<double,2,0>", %"… 71 …FixedVector<double,5,0>", %"struct.FixedVector<double,5,0>", %"struct.FixedVector<double,5,0>", %"… 89 …%"struct.SubVector<FixedVector<double, 6, 0> >" = type { %"struct.FixedMatrix<double,1,6,0,0>"*, i… 271 …std::basic_ostream<char,std::char_traits<char> >"*, %"struct.SubVector<FixedVector<double, 6, 0> >… 293 …T0_EXT1_ELi0ELi0EERKS0_IS1_XT1_ELi0EE(%"struct.FixedVector<double,5,0>"* noalias sret(%"struct.Fix… 769 …T0_ERKS4_(%struct.Vec3* noalias sret(%struct.Vec3), %"struct.SubVector<FixedVector<double, 6, 0> >…
|
/external/angle/util/posix/ |
D | crash_handler_posix.cpp | 387 using Addr2LineCommandLine = angle::FixedVector<const char *, kAddr2LineMaxParameters>; 414 using AddressBuffer = angle::FixedVector<char, kMaxAddressLen>;
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | RendererVk.h | 59 using ExtensionNameList = angle::FixedVector<const char *, kMaxExtensionNames>; 89 using SignalSemaphoreVector = angle::FixedVector<VkSemaphore, 2>;
|
D | vk_helpers.h | 2662 using ReadBuffers = angle::FixedVector<CommandBufferBufferAccess, 2>; 2663 using WriteBuffers = angle::FixedVector<CommandBufferBufferAccess, 2>; 2664 using ReadImages = angle::FixedVector<CommandBufferImageAccess, 2>; 2665 using WriteImages = angle::FixedVector<CommandBufferImageWrite, 1>;
|
D | vk_cache_utils.h | 127 using FramebufferAttachmentsVector = angle::FixedVector<T, kMaxFramebufferAttachments>; 737 angle::FixedVector<VkDescriptorSetLayoutBinding, kMaxDescriptorSetLayoutBindings>;
|
D | BufferVk.cpp | 833 angle::FixedVector<VkBufferCopy, kMaxCopyRegions> copyRegions; in acquireAndUpdate()
|
D | vk_utils.h | 94 using VulkanLayerVector = angle::FixedVector<const char *, kMaxVulkanLayers>;
|
D | vk_cache_utils.cpp | 1693 angle::FixedVector<VkPipelineShaderStageCreateInfo, 5> shaderStages; in initializePipeline() 2054 angle::FixedVector<VkDynamicState, 2> dynamicStateList; in initializePipeline() 3689 angle::FixedVector<VkDescriptorSetLayout, vk::kMaxDescriptorSetLayouts> setLayoutHandles; in getPipelineLayout()
|
D | vk_helpers.cpp | 3180 angle::FixedVector<VkBufferCopy, 3> copies = { in getIndexBufferForElementArrayBuffer()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | StateManagerGL.h | 144 angle::FixedVector<VertexAttributeGL, gl::MAX_VERTEX_ATTRIBS> attributes; 145 angle::FixedVector<VertexBindingGL, gl::MAX_VERTEX_ATTRIBS> bindings;
|
D | BlitGL.cpp | 157 using ClearBindTargetVector = angle::FixedVector<GLenum, 3>;
|
/external/angle/src/libANGLE/ |
D | angletypes.h | 816 using ShaderVector = angle::FixedVector<T, static_cast<size_t>(ShaderType::EnumCount)>; 822 using AttachmentVector = angle::FixedVector<T, IMPLEMENTATION_MAX_FRAMEBUFFER_ATTACHMENTS>; 830 using DrawBuffersVector = angle::FixedVector<T, IMPLEMENTATION_MAX_DRAW_BUFFERS>;
|
D | GLES1State.h | 177 using MatrixStack = angle::FixedVector<angle::Mat4, Caps::GlobalMatrixStackDepth>;
|
/external/angle/src/compiler/translator/ |
D | BuildSPIRV.h | 223 using SpirvDecorations = angle::FixedVector<spv::Decoration, 2>;
|
/external/angle/src/ |
D | libGLESv2.gni | 9 "src/common/FixedVector.h",
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | StateManager11.cpp | 3683 angle::FixedVector<Buffer11 *, gl::IMPLEMENTATION_MAX_SHADER_STORAGE_BUFFER_BINDINGS> in syncShaderStorageBuffersForShader()
|