Home
last modified time | relevance | path

Searched refs:topology (Results 1 – 25 of 151) sorted by relevance

1234567

/third_party/boost/boost/graph/
Dfruchterman_reingold.hpp104 const Topology& topology, PositionMap position, const Graph& g) in grid_force_pairs()
105 : topology(topology), position(position) in grid_force_pairs()
107 two_k = 2. * this->topology.volume(this->topology.extent()) in grid_force_pairs()
120 std::size_t columns = std::size_t(topology.extent()[0] / two_k + 1.); in operator ()()
121 std::size_t rows = std::size_t(topology.extent()[1] / two_k + 1.); in operator ()()
127 (get(position, *v)[0] + topology.extent()[0] / 2) / two_k); in operator ()()
129 (get(position, *v)[1] + topology.extent()[1] / 2) / two_k); in operator ()()
171 double dist = topology.distance( in operator ()()
182 const Topology& topology; member
189 const Topology& topology, const PositionMap& position, const Graph& g) in make_grid_force_pairs() argument
[all …]
Dkamada_kawai_spring_layout.hpp168 kamada_kawai_spring_layout_impl(const Topology& topology, in kamada_kawai_spring_layout_impl()
174 : topology(topology) in kamada_kawai_spring_layout_impl()
201 = topology.difference(position[m], position[i]); in compute_partial_derivative()
202 weight_type dist = topology.norm(diff); in compute_partial_derivative()
283 weight_type delta = topology.norm(deriv); in run()
317 double dist = topology.distance( in run()
344 = topology.difference( in run()
346 weight_type dist = topology.norm(diff); in run()
391 position[p] = topology.adjust(position[p], delta); in run()
397 delta_p = topology.norm(deriv); in run()
[all …]
Drandom_layout.hpp25 const Graph& g, PositionMap position_map, const Topology& topology) in random_graph_layout() argument
29 put(position_map, v, topology.random_point()); in random_graph_layout()
/third_party/uboot/u-boot-2020.01/board/CZ.NIC/turris_mox/
Dturris_mox.c60 u8 topology[MAX_MOX_MODULES]; in board_fix_fdt() local
83 topology[i] = readl(ARMADA_37XX_SPI_DIN) & 0xff; in board_fix_fdt()
84 if (topology[i] == 0xff) in board_fix_fdt()
87 topology[i] &= 0xf; in board_fix_fdt()
94 if (size > 1 && (topology[1] == MOX_MODULE_PCI || in board_fix_fdt()
95 topology[1] == MOX_MODULE_USB3 || in board_fix_fdt()
96 topology[1] == MOX_MODULE_PASSPCI)) in board_fix_fdt()
155 static u8 topology[MAX_MOX_MODULES - 1]; in mox_get_topology() local
162 *ptopology = topology; in mox_get_topology()
185 topology[i - 1] = din[i] & 0xf; in mox_get_topology()
[all …]
/third_party/boost/libs/mpi/src/
Dcartesian_communicator.cpp44 const cartesian_topology& topology, in cartesian_communicator() argument
48 std::vector<int> dims(topology.size()); in cartesian_communicator()
49 std::vector<int> periodic(topology.size()); in cartesian_communicator()
50 int tsz = topology.size(); in cartesian_communicator()
52 dims[i] = topology[i].size; in cartesian_communicator()
53 periodic[i] = topology[i].periodic; in cartesian_communicator()
126 cartesian_communicator::topology( cartesian_topology& topo, in topology() function in boost::mpi::cartesian_communicator
140 cartesian_communicator::topology() const { in topology() function in boost::mpi::cartesian_communicator
143 topology(topo, coords); in topology()
/third_party/boost/libs/fiber/build/
DJamfile.v286 numa/aix/topology.cpp
92 numa/freebsd/topology.cpp
98 numa/hpux/topology.cpp
104 numa/linux/topology.cpp
110 numa/solaris/topology.cpp
116 numa/windows/topology.cpp
122 numa/topology.cpp
/third_party/boost/libs/python/src/object/
Dinheritance.cpp126 cast_graph& topology() { return m_topology; } in topology() function
127 cast_graph const& topology() const { return m_topology; } in topology() function
214 vertex_t v = add_vertex(full_graph().topology()); in demand_type()
215 vertex_t v2 = add_vertex(up_graph().topology()); in demand_type()
299 cast_map casts = get(edge_cast, g.topology()); in search()
332 smart_graph::out_edges_t edges = out_edges(s.first, g.topology()); in search()
341 d[target(e, g.topology())] in search()
343 , target(e, g.topology()) in search()
474 cast_graph* const g[2] = { &up_graph().topology(), &full_graph().topology() }; in add_cast()
485 put(get(edge_index, **p), e, num_edges(full_graph().topology()) - 1); in add_cast()
/third_party/skia/third_party/externals/swiftshader/src/Device/
DContext.cpp25 uint32_t ComputePrimitiveCount(VkPrimitiveTopology topology, uint32_t vertexCount) in ComputePrimitiveCount() argument
27 switch(topology) in ComputePrimitiveCount()
42 UNSUPPORTED("VkPrimitiveTopology %d", int(topology)); in ComputePrimitiveCount()
50 VkPrimitiveTopology topology, in ProcessPrimitiveRestart() argument
64 uint32_t primitiveCount = ComputePrimitiveCount(topology, vertexCount); in ProcessPrimitiveRestart()
85 uint32_t primitiveCount = ComputePrimitiveCount(topology, vertexCount); in ProcessPrimitiveRestart()
108 void IndexBuffer::getIndexBuffers(VkPrimitiveTopology topology, uint32_t count, uint32_t first, boo… in getIndexBuffers() argument
119 ProcessPrimitiveRestart(static_cast<uint16_t *>(indexBuffer), topology, count, indexBuffers); in getIndexBuffers()
122 ProcessPrimitiveRestart(static_cast<uint32_t *>(indexBuffer), topology, count, indexBuffers); in getIndexBuffers()
130 indexBuffers->push_back({ ComputePrimitiveCount(topology, count), indexBuffer }); in getIndexBuffers()
[all …]
DContext.hpp43 …void getIndexBuffers(VkPrimitiveTopology topology, uint32_t count, uint32_t first, bool indexed, b…
143 inline VkPrimitiveTopology getTopology() const { return topology; } in getTopology()
211 VkPrimitiveTopology topology = VK_PRIMITIVE_TOPOLOGY_POINT_LIST; member
DRenderer.cpp51 inline bool setBatchIndices(unsigned int batch[128][3], VkPrimitiveTopology topology, VkProvokingVe… in setBatchIndices() argument
55 switch(topology) in setBatchIndices()
263 draw->topology = pipelineState.getTopology(); in draw()
544 draw->topology, in processVertices()
551 …vertexTask.vertexCount = batch->numPrimitives * ((draw->topology == VK_PRIMITIVE_TOPOLOGY_POINT_LI… in processVertices()
610 VkPrimitiveTopology topology, in processPrimitiveVertices() argument
620 …if(!setBatchIndices(triangleIndicesOut, topology, provokingVertexMode, LinearIndex(), start, trian… in processPrimitiveVertices()
630 …if(!setBatchIndices(triangleIndicesOut, topology, provokingVertexMode, static_cast<const uint16_t … in processPrimitiveVertices()
636 …if(!setBatchIndices(triangleIndicesOut, topology, provokingVertexMode, static_cast<const uint32_t … in processPrimitiveVertices()
649 if(topology != VK_PRIMITIVE_TOPOLOGY_POINT_LIST) in processPrimitiveVertices()
/third_party/boost/libs/graph/test/
Dlayout_test.cpp43 const Graph& g, PositionMap position, const Topology& topology) in print_graph_layout() argument
50 min_point = topology.pointwise_min(min_point, position[v]); in print_graph_layout()
51 max_point = topology.pointwise_max(max_point, position[v]); in print_graph_layout()
118 square_topology<> topology; in test_circle_layout() local
119 print_graph_layout(g, get(vertex_position, g), topology); in test_circle_layout()
235 Topology topology(gen, 50.0); in test_cube() local
242 topology, square_distance_attractive_force(), in test_cube()
295 Topology topology(gen, 50.0); in test_triangular() local
304 get(edge_weight, g), topology, side_length(50.0), kamada_kawai_done()); in test_triangular()
320 topology, in test_triangular()
[all …]
Dgursoy_atun_layout_test.cpp121 typedef boost::heart_topology<> topology; in main() typedef
122 topology space; in main()
124 typedef topology::point_type point; in main()
/third_party/uboot/u-boot-2020.01/drivers/clk/
Dclk_versal.c217 static int versal_pm_clock_get_topology(u32 clock_id, u32 index, u32 *topology) in versal_pm_clock_get_topology() argument
228 memcpy(topology, &ret_payload[1], CLK_GET_TOPOLOGY_RESP_WORDS * 4); in versal_pm_clock_get_topology()
264 static int __versal_clock_get_topology(struct clock_topology *topology, in __versal_clock_get_topology() argument
272 topology[*nnodes].type = data[i] & CLK_TYPE_FIELD_MASK; in __versal_clock_get_topology()
273 topology[*nnodes].flag = FIELD_GET(CLK_FLAG_FIELD_MASK, in __versal_clock_get_topology()
275 topology[*nnodes].type_flag = in __versal_clock_get_topology()
277 topology[*nnodes].type_flag |= in __versal_clock_get_topology()
281 topology[*nnodes].type, topology[*nnodes].flag, in __versal_clock_get_topology()
282 topology[*nnodes].type_flag); in __versal_clock_get_topology()
290 struct clock_topology *topology, in versal_clock_get_topology() argument
[all …]
/third_party/boost/libs/fiber/doc/
Dnuma.qbk91 In order to keep the memory access local as possible, the NUMA topology must be evaluated.
93 std::vector< boost::fibers::numa::node > topo = boost::fibers::numa::topology();
130 // evaluate the NUMA topology
131 std::vector< boost::fibers::numa::node > topo = boost::fibers::numa::topology();
151 The example evaluates the NUMA topology with `boost::fibers::numa::topology()`
165 #include <boost/fiber/numa/topology.hpp>
178 std::vector< node > topology();
199 #include <boost/fiber/numa/topology.hpp>
256 [ns_function_heading numa..topology]
258 #include <boost/fiber/numa/topology.hpp>
[all …]
/third_party/skia/src/gpu/d3d/
DGrD3DOpsRenderPass.cpp114 D3D12_PRIMITIVE_TOPOLOGY topology = D3D_PRIMITIVE_TOPOLOGY_UNDEFINED; in set_primitive_topology() local
117 topology = D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST; in set_primitive_topology()
120 topology = D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP; in set_primitive_topology()
123 topology = D3D_PRIMITIVE_TOPOLOGY_POINTLIST; in set_primitive_topology()
126 topology = D3D_PRIMITIVE_TOPOLOGY_LINELIST; in set_primitive_topology()
129 topology = D3D_PRIMITIVE_TOPOLOGY_LINESTRIP; in set_primitive_topology()
136 gpu->currentCommandList()->setPrimitiveTopology(topology); in set_primitive_topology()
/third_party/boost/libs/fiber/examples/numa/
DJamfile.v231 exe topology : topology.cpp ;
Dtopology.cpp18 std::vector< boost::fibers::numa::node > topo = boost::fibers::numa::topology(); in main()
/third_party/uboot/u-boot-2020.01/doc/SPI/
Dstatus.txt17 - Dual flash connection topology support(accessing two spi flash memories with single cs)
18 - Banking support on dual flash connection topology.
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DCreatePipelineAsyncTests.cpp252 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
276 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
341 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
403 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
461 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
596 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
664 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
749 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
821 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
900 renderPipelineDescriptor.primitive.topology = wgpu::PrimitiveTopology::PointList; in TEST_P()
DRenderPassTests.cpp48 descriptor.primitive.topology = wgpu::PrimitiveTopology::TriangleList; in SetUp()
146 descriptor.primitive.topology = wgpu::PrimitiveTopology::TriangleList; in TEST_P()
/third_party/boost/libs/mpi/test/
Dcartesian_topology_test.cpp89 cc.topology(topo, coords); in test_shifted_coords()
108 cc.topology(itopo, coords); in test_topology_consistency()
154 std::cout << "Asked topology " << topo << ", got " << cc.topology() << '\n'; in test_cartesian_topology()
/third_party/boost/libs/fiber/src/numa/
Dtopology.cpp29 std::vector< node > topology() { in topology() function
/third_party/boost/boost/fiber/numa/
Dtopology.hpp38 std::vector< node > topology();
/third_party/boost/boost/mpi/
Dcartesian_communicator.hpp364 void topology( cartesian_topology& dims, std::vector<int>& coords ) const;
369 cartesian_topology topology() const;
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DRenderPipelineVk.cpp107 VkPrimitiveTopology VulkanPrimitiveTopology(dawn::PrimitiveTopology topology) { in VulkanPrimitiveTopology() argument
108 switch (topology) { in VulkanPrimitiveTopology()
124 bool ShouldEnablePrimitiveRestart(dawn::PrimitiveTopology topology) { in ShouldEnablePrimitiveRestart() argument
127 switch (topology) { in ShouldEnablePrimitiveRestart()
345 inputAssembly.topology = VulkanPrimitiveTopology(GetPrimitiveTopology()); in RenderPipeline()

1234567