Home
last modified time | relevance | path

Searched refs:dmap (Results 1 – 25 of 972) sorted by relevance

12345678910>>...39

/dports/sysutils/pies/pies-1.5/src/
H A Ddepmap.c101 if (dmap) in depmap_free()
131 memmove (&dmap->dist[n], &dmap->dist[n + 1], in depmap_remove()
132 (dmap->dim - n - 1) * sizeof (dmap->dist[0])); in depmap_remove()
133 memmove (&dmap->next[n], &dmap->next[n + 1], in depmap_remove()
139 memmove (&dmap->dist[i][n], &dmap->dist[i][n+1], in depmap_remove()
141 memmove (&dmap->next[i][n], &dmap->next[i][n + 1], in depmap_remove()
179 int t = dmap->dist[i][k] + dmap->dist[k][j]; in depmap_tc()
183 dmap->next[i][j] = dmap->next[i][k]; in depmap_tc()
275 if (dmap->closed && depmap_isset (dmap, i, j)) in depmap_path()
299 if (dmap->closed && depmap_isset (dmap, i, i)) in depmap_normalized_cyclic_path()
[all …]
/dports/devel/swig/swig-4.0.2/Examples/python/std_map/
H A Drunme.py10 dmap = {} variable
11 dmap["hello"] = 1.0
12 dmap["hi"] = 2.0
14 print dmap.items()
15 print dmap.keys()
18 print dmap
20 dmap = hmap variable
22 print dmap
55 dmap = {} variable
65 dmap = hmap variable
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/fs/fuse/
H A Ddax.c135 if (dmap) { in alloc_dax_mapping()
143 return dmap; in alloc_dax_mapping()
220 dmap->itn.start = dmap->itn.last = start_idx; in fuse_setup_one_mapping()
294 dmap->itn.start, dmap->itn.last, dmap->window_offset, in dmap_reinit_add_to_free_pool()
298 dmap->itn.start = dmap->itn.last = 0; in dmap_reinit_add_to_free_pool()
640 if (dmap) { in fuse_iomap_end()
920 dmap->window_offset, dmap->length, ret); in reclaim_one_dmap_locked()
974 if (!dmap) in inode_inline_reclaim_one_dmap()
1015 dmap->itn.start = dmap->itn.last = 0; in inode_inline_reclaim_one_dmap()
1037 if (dmap) in alloc_dax_mapping_reclaim()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/fuse/
H A Ddax.c135 if (dmap) { in alloc_dax_mapping()
143 return dmap; in alloc_dax_mapping()
220 dmap->itn.start = dmap->itn.last = start_idx; in fuse_setup_one_mapping()
294 dmap->itn.start, dmap->itn.last, dmap->window_offset, in dmap_reinit_add_to_free_pool()
298 dmap->itn.start = dmap->itn.last = 0; in dmap_reinit_add_to_free_pool()
640 if (dmap) { in fuse_iomap_end()
920 dmap->window_offset, dmap->length, ret); in reclaim_one_dmap_locked()
974 if (!dmap) in inode_inline_reclaim_one_dmap()
1015 dmap->itn.start = dmap->itn.last = 0; in inode_inline_reclaim_one_dmap()
1037 if (dmap) in alloc_dax_mapping_reclaim()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/fuse/
H A Ddax.c135 if (dmap) { in alloc_dax_mapping()
143 return dmap; in alloc_dax_mapping()
220 dmap->itn.start = dmap->itn.last = start_idx; in fuse_setup_one_mapping()
294 dmap->itn.start, dmap->itn.last, dmap->window_offset, in dmap_reinit_add_to_free_pool()
298 dmap->itn.start = dmap->itn.last = 0; in dmap_reinit_add_to_free_pool()
640 if (dmap) { in fuse_iomap_end()
920 dmap->window_offset, dmap->length, ret); in reclaim_one_dmap_locked()
974 if (!dmap) in inode_inline_reclaim_one_dmap()
1015 dmap->itn.start = dmap->itn.last = 0; in inode_inline_reclaim_one_dmap()
1037 if (dmap) in alloc_dax_mapping_reclaim()
[all …]
/dports/net/libdmapsharing/libdmapsharing-2.9.41/libdmapsharing/
H A DMakefile.in169 dacp-share.c dmap-connection.c dmap-container-db.c \
170 dmap-container-record.c dmap-db.c dmap-enums.c dmap-md5.c \
171 dmap-private-utils.c dmap-record.c dmap-record-factory.c \
172 dmap-share.c dmap-structure.c dmap-utils.c dpap-connection.c \
309 dacp-player.h dmap.h dmap-connection.h dmap-container-db.h \
310 dmap-container-record.h dmap-db.h dmap-enums.h dmap-md5.h \
311 dmap-mdns-browser.h dmap-mdns-publisher.h dmap-record.h \
312 dmap-record-factory.h dmap-share.h dmap-structure.h \
506 dmap-connection.c dmap-container-db.c dmap-container-record.c \
507 dmap-db.c dmap-enums.c dmap-md5.c dmap-private-utils.c \
[all …]
H A DMakefile.am10 dmap-connection.c \
11 dmap-container-db.c \
13 dmap-db.c \
14 dmap-enums.c \
15 dmap-md5.c \
16 dmap-private-utils.c \
17 dmap-record.c \
19 dmap-share.c \
20 dmap-structure.c \
21 dmap-utils.c \
[all …]
/dports/science/py-MDAnalysisTests/MDAnalysisTests-0.19.2/MDAnalysisTests/analysis/
H A Dtest_diffusionmap.py43 def dmap(dist): function
49 def test_eg(dist, dmap): argument
50 eigvals = dmap.eigenvalues
61 dmap = diffusionmap.DiffusionMap(dist)
62 dmap.run()
73 dmap.run(step=3)
74 assert dmap._eigenvectors.shape == (4, 4)
77 def test_transform(u, dmap): argument
78 eigvects = dmap._eigenvectors
80 dmap = diffusionmap.DiffusionMap(u)
[all …]
/dports/www/serendipity/Serendipity-2.3.5/bundled-libs/XML/RPC/
H A DServer.php153 $dmap = $XML_RPC_Server_dmap;
156 $dmap = $server->dmap;
160 if (isset($dmap[$methName])) {
161 if ($dmap[$methName]['signature']) {
196 $dmap = $XML_RPC_Server_dmap;
199 $dmap = $server->dmap;
203 if (isset($dmap[$methName])) {
204 if ($dmap[$methName]['docstring']) {
277 var $dmap = array(); variable in XML_RPC_Server
338 $this->dmap = $dispMap;
[all …]
/dports/net/pear-XML_RPC/XML_RPC-1.5.5/XML/RPC/
H A DServer.php154 $dmap = $XML_RPC_Server_dmap;
157 $dmap = $server->dmap;
161 if (isset($dmap[$methName])) {
162 if ($dmap[$methName]['signature']) {
197 $dmap = $XML_RPC_Server_dmap;
200 $dmap = $server->dmap;
204 if (isset($dmap[$methName])) {
205 if ($dmap[$methName]['docstring']) {
278 var $dmap = array(); variable in XML_RPC_Server
339 $this->dmap = $dispMap;
[all …]
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/pear/xml_rpc/XML/RPC/
H A DServer.php154 $dmap = $XML_RPC_Server_dmap;
157 $dmap = $server->dmap;
161 if (isset($dmap[$methName])) {
162 if ($dmap[$methName]['signature']) {
197 $dmap = $XML_RPC_Server_dmap;
200 $dmap = $server->dmap;
204 if (isset($dmap[$methName])) {
205 if ($dmap[$methName]['docstring']) {
278 var $dmap = array(); variable in XML_RPC_Server
343 $this->dmap = $dispMap;
[all …]
/dports/devel/gnucflow/cflow-1.6/src/
H A Ddepmap.c86 cflow_depmap_t dmap = xzalloc(sizeof(*dmap) - 1 in depmap_alloc() local
88 dmap->nrows = count; in depmap_alloc()
89 dmap->rowlen = size; in depmap_alloc()
90 return dmap; in depmap_alloc()
94 depmap_rowptr(cflow_depmap_t dmap, size_t row) in depmap_rowptr() argument
96 return dmap->r + dmap->rowlen * row; in depmap_rowptr()
100 depmap_set(cflow_depmap_t dmap, size_t row, size_t col) in depmap_set() argument
102 unsigned *rptr = depmap_rowptr(dmap, row); in depmap_set()
109 unsigned *rptr = depmap_rowptr(dmap, row); in depmap_isset()
114 depmap_tc(cflow_depmap_t dmap) in depmap_tc() argument
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/soc/ti/
H A Domap_prm.c60 const struct omap_prm_domain_map *dmap; member
159 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton,
168 .pwrstctrl = 0, .pwrstst = 0x4, .dmap = &omap_prm_all,
172 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon,
176 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton,
200 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton
213 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon
239 .pwrstctrl = 0, .pwrstst = 0x4, .dmap = &omap_prm_nooff,
243 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon
270 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/soc/ti/
H A Domap_prm.c60 const struct omap_prm_domain_map *dmap; member
159 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton,
168 .pwrstctrl = 0, .pwrstst = 0x4, .dmap = &omap_prm_all,
172 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon,
176 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton,
200 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton
213 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon
239 .pwrstctrl = 0, .pwrstst = 0x4, .dmap = &omap_prm_nooff,
243 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon
270 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/soc/ti/
H A Domap_prm.c60 const struct omap_prm_domain_map *dmap; member
159 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton,
168 .pwrstctrl = 0, .pwrstst = 0x4, .dmap = &omap_prm_all,
172 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon,
176 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton,
200 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton
213 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon
239 .pwrstctrl = 0, .pwrstst = 0x4, .dmap = &omap_prm_nooff,
243 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_alwon
270 .pwrstctrl = 0x0, .pwrstst = 0x4, .dmap = &omap_prm_reton
[all …]
/dports/net/libdmapsharing/libdmapsharing-2.9.41/tests/
H A DMakefile.am2 noinst_PROGRAMS = test-dmap-client test-dmap-server
22 test-dmap-db.c \
23 test-dmap-client.c
36 test-dmap-db.c \
38 test-dmap-container-db.c \
39 test-dmap-server.c
65 vala-dmap-db.vala \
78 vala-dmap-db.vala \
92 vala-dmap-db.vala \
105 vala-dmap-db.vala \
[all …]
H A DMakefile.in164 test-dmap-container-db.$(OBJEXT) test-dmap-server.$(OBJEXT)
194 ./$(DEPDIR)/test-dmap-db.Po ./$(DEPDIR)/test-dmap-server.Po \
417 test-dmap-db.c \
418 test-dmap-client.c
431 test-dmap-db.c \
434 test-dmap-server.c
448 vala-dmap-db.vala \
460 vala-dmap-db.vala \
473 vala-dmap-db.vala \
485 vala-dmap-db.vala \
[all …]
/dports/net/libdmapsharing/libdmapsharing-2.9.41/vala/
H A Dlibdmapsharing-3.0.vapi4 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
10 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
15 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
73 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
83 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
90 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
101 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
118 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
129 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
144 [CCode (cheader_filename = "libdmapsharing/dmap.h")]
[all …]
/dports/www/phpgroupware/phpgroupware-0.9.16.017/phpgwapi/inc/
H A Dclass.xmlrpc_server.inc.php53 var $dmap = array(); variable in xmlrpc_server
69 $this->dmap = $dispMap;
112 $this->dmap[$methodname] = array(
308 $dmap = $GLOBALS['_xmlrpcs_dmap'];
313 $dmap = $this->dmap;
317 if ($allOK && !isset($dmap[$methName]['function']))
351 $dmap = ExecMethod($listmeth,'xmlrpc');
363 $this->dmap = $dmap;
374 if ($allOK && isset($dmap[$methName]['function']))
377 if (isset($dmap[$methName]['signature']))
[all …]
/dports/multimedia/flvtool++/flvtool-pp-c0438e8/
H A Dflvtool++.cpp431 onMetaData->dmap["hasAudio"] = shared_ptr<AMFData>(new AMFBoolean(hasAudio)); in main()
432 onMetaData->dmap["hasVideo"] = shared_ptr<AMFData>(new AMFBoolean(hasVideo)); in main()
434 onMetaData->dmap["hasMetadata"] = shared_ptr<AMFData>(new AMFBoolean(true)); in main()
435 onMetaData->dmap["canSeekToEnd"] = shared_ptr<AMFData>(new AMFBoolean(true)); in main()
454 onMetaData->dmap["metadatadate"] = shared_ptr<AMFData>(new AMFDate()); in main()
465 keyframes->dmap["times"] = keyTimes; in main()
466 keyframes->dmap["filepositions"] = keyPositions; in main()
467 onMetaData->dmap["keyframes"] = keyframes; in main()
470 keyTimes->dmap.push_back(shared_ptr<AMFData>(new AMFDouble(0.0))); in main()
471 keyPositions->dmap.push_back(shared_ptr<AMFData>(new AMFDouble(0.0))); in main()
[all …]
/dports/biology/ncbi-toolkit/ncbi/desktop/
H A Ddotmatrx.c84 dmap = dfp->dmap; in FindSeqAlign()
85 while (dmap) in FindSeqAlign()
127 dmap = dmap->next; in FindSeqAlign()
182 if (dmap == NULL || dmap->sap == NULL) in CreateDotMatrixPic()
186 while (dmap) in CreateDotMatrixPic()
250 dmap = dmap->next; in CreateDotMatrixPic()
375 dmap = dfp->dmap; in CleanupDotMatrixForm()
376 while (dmap) in CleanupDotMatrixForm()
378 dmap->sap = SeqAlignFree (dmap->sap); in CleanupDotMatrixForm()
379 dmap = dmap->next; in CleanupDotMatrixForm()
[all …]
/dports/audio/tse3/tse3-0.3.1/src/tse3/ins/
H A DDestination.cpp53 dmap_type dmap; member in TSE3::Ins::DestinationImpl
89 if (i != pimpl->dmap.end()) in allChannels()
103 if (i != pimpl->dmap.end()) in port()
121 pimpl->dmap[port].allChannels = true; in setPort()
122 pimpl->dmap[port].instruments[0] = instrument; in setPort()
126 pimpl->dmap.erase(port); in setPort()
136 if (i != pimpl->dmap.end() && channel >= 0 && channel < 16) in channel()
155 if (i != pimpl->dmap.end()) in setChannel()
170 pimpl->dmap[port].allChannels = false; in setChannel()
171 pimpl->dmap[port].instruments[channel] = instrument; in setChannel()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/md/
H A Ddm-clone-metadata.c127 struct dirty_map dmap[2]; member
476 dmap->changed = 0; in __dirty_map_init()
479 if (!dmap->dirty_words) in __dirty_map_init()
770 dmap->changed = 0; in __flush_dmap()
789 dmap = cmd->current_dmap; in dm_clone_metadata_pre_commit()
792 next_dmap = (dmap == &cmd->dmap[0]) ? &cmd->dmap[1] : &cmd->dmap[0]; in dm_clone_metadata_pre_commit()
844 struct dirty_map *dmap; in dm_clone_set_region_hydrated() local
867 dmap->changed = 1; in dm_clone_set_region_hydrated()
879 struct dirty_map *dmap; in dm_clone_cond_set_range() local
903 dmap->changed = 1; in dm_clone_cond_set_range()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/md/
H A Ddm-clone-metadata.c127 struct dirty_map dmap[2]; member
476 dmap->changed = 0; in __dirty_map_init()
479 if (!dmap->dirty_words) in __dirty_map_init()
770 dmap->changed = 0; in __flush_dmap()
789 dmap = cmd->current_dmap; in dm_clone_metadata_pre_commit()
792 next_dmap = (dmap == &cmd->dmap[0]) ? &cmd->dmap[1] : &cmd->dmap[0]; in dm_clone_metadata_pre_commit()
844 struct dirty_map *dmap; in dm_clone_set_region_hydrated() local
867 dmap->changed = 1; in dm_clone_set_region_hydrated()
879 struct dirty_map *dmap; in dm_clone_cond_set_range() local
903 dmap->changed = 1; in dm_clone_cond_set_range()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/md/
H A Ddm-clone-metadata.c127 struct dirty_map dmap[2]; member
476 dmap->changed = 0; in __dirty_map_init()
479 if (!dmap->dirty_words) in __dirty_map_init()
770 dmap->changed = 0; in __flush_dmap()
789 dmap = cmd->current_dmap; in dm_clone_metadata_pre_commit()
792 next_dmap = (dmap == &cmd->dmap[0]) ? &cmd->dmap[1] : &cmd->dmap[0]; in dm_clone_metadata_pre_commit()
844 struct dirty_map *dmap; in dm_clone_set_region_hydrated() local
867 dmap->changed = 1; in dm_clone_set_region_hydrated()
879 struct dirty_map *dmap; in dm_clone_cond_set_range() local
903 dmap->changed = 1; in dm_clone_cond_set_range()
[all …]

12345678910>>...39