Home
last modified time | relevance | path

Searched refs:FixedVector (Results 1 – 25 of 27) sorted by relevance

12

/external/angle/src/common/
DFixedVector.h22 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 …]
DFixedVector_unittest.cpp17 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/
Dumeyama.cpp127 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/
Dnegate-add-zero.ll55 %"struct.FixedVector<double,2,0>" = type { %"struct.FixedVectorBase<double,2>" }
56 %"struct.FixedVector<double,5,0>" = type { %"struct.FixedVectorBase<double,5>" }
68FixedVector<double,2,0>", %"struct.FixedVector<double,2,0>", %"struct.FixedVector<double,2,0>", %"…
70FixedVector<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/angle/src/libANGLE/renderer/gl/egl/
DSyncEGL.cpp46 angle::FixedVector<EGLint, kAttribVectorSize> attribs; in initialize()
/external/angle/util/posix/
Dcrash_handler_posix.cpp390 using Addr2LineCommandLine = angle::FixedVector<const char *, kAddr2LineMaxParameters>;
417 using AddressBuffer = angle::FixedVector<char, kMaxAddressLen>;
/external/angle/src/libANGLE/
Dangletypes.h949 using ShaderVector = angle::FixedVector<T, static_cast<size_t>(ShaderType::EnumCount)>;
955 using AttachmentVector = angle::FixedVector<T, IMPLEMENTATION_MAX_FRAMEBUFFER_ATTACHMENTS>;
963 using DrawBuffersVector = angle::FixedVector<T, IMPLEMENTATION_MAX_DRAW_BUFFERS>;
1181 angle::FixedVector<CallType, kMaxCallCount> mCalls;
DPixelLocalStorage.h189 angle::FixedVector<PixelLocalStoragePlane, IMPLEMENTATION_MAX_PIXEL_LOCAL_STORAGE_PLANES>
DGLES1State.h198 using MatrixStack = angle::FixedVector<angle::Mat4, Caps::GlobalMatrixStackDepth>;
DPixelLocalStorage.cpp464 const angle::FixedVector<PixelLocalStoragePlane, IMPLEMENTATION_MAX_PIXEL_LOCAL_STORAGE_PLANES> in AllPlanesDeinitialized()
581 angle::FixedVector<GLenum, IMPLEMENTATION_MAX_PIXEL_LOCAL_STORAGE_PLANES> loadops( in restore()
DContext.cpp8954 angle::FixedVector<GLenum, IMPLEMENTATION_MAX_PIXEL_LOCAL_STORAGE_PLANES> storeops( in endPixelLocalStorageWithStoreOpsStore()
/external/angle/src/libANGLE/renderer/gl/
DStateManagerGL.h151 angle::FixedVector<VertexAttributeGL, gl::MAX_VERTEX_ATTRIBS> attributes;
152 angle::FixedVector<VertexBindingGL, gl::MAX_VERTEX_ATTRIBS> bindings;
DBlitGL.cpp165 using ClearBindTargetVector = angle::FixedVector<GLenum, 3>;
/external/angle/src/libANGLE/renderer/metal/
DFrameBufferMtl.h222 angle::FixedVector<RenderTargetMtl *, mtl::kMaxRenderTargets> mColorRenderTargets;
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.h1988 using ImageFormats = angle::FixedVector<VkFormat, kImageListFormatCount>;
3373 using ReadBuffers = angle::FixedVector<CommandBufferBufferAccess, 2>;
3374 using WriteBuffers = angle::FixedVector<CommandBufferBufferAccess, 2>;
3375 using ReadImages = angle::FixedVector<CommandBufferImageAccess, 2>;
3376 using WriteImages = angle::FixedVector<CommandBufferImageWrite, 1>;
3378 angle::FixedVector<CommandBufferBufferExternalAcquireRelease, 1>;
3379 using AccessResources = angle::FixedVector<CommandBufferResourceAccess, 1>;
DRendererVk.h60 using ExtensionNameList = angle::FixedVector<const char *, kMaxExtensionNames>;
102 using SignalSemaphoreVector = angle::FixedVector<VkSemaphore, 2>;
Dvk_cache_utils.h124 using FramebufferAttachmentsVector = angle::FixedVector<T, kMaxFramebufferAttachments>;
657 angle::FixedVector<VkPipelineShaderStageCreateInfo, 5> shaderStages;
679 using GraphicsPipelineDynamicStateList = angle::FixedVector<VkDynamicState, 22>;
937 angle::FixedVector<VkDescriptorSetLayoutBinding, kMaxDescriptorSetLayoutBindings>;
DSurfaceVk.h503 angle::FixedVector<VkPresentModeKHR, kMaxCompatiblePresentModes> mCompatiblePresentModes;
DBufferVk.cpp990 angle::FixedVector<VkBufferCopy, kMaxCopyRegions> copyRegions; in acquireAndUpdate()
Dvk_utils.h97 using VulkanLayerVector = angle::FixedVector<const char *, kMaxVulkanLayers>;
DProgramExecutableVk.cpp832 angle::FixedVector<bool, 2> surfaceRotationVariations = {false}; in warmUpPipelineCache()
Dvk_cache_utils.cpp7124 angle::FixedVector<VkDescriptorSetLayout, vk::kMaxDescriptorSetLayouts> setLayoutHandles; in getPipelineLayout()
/external/angle/src/compiler/translator/spirv/
DBuildSPIRV.h238 using SpirvDecorations = angle::FixedVector<spv::Decoration, 6>;
/external/angle/src/
DlibGLESv2.gni14 "src/common/FixedVector.h",
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DStateManager11.cpp3772 angle::FixedVector<Buffer11 *, gl::IMPLEMENTATION_MAX_SHADER_STORAGE_BUFFER_BINDINGS> in getUAVsForShaderStorageBuffers()

12