Home
last modified time | relevance | path

Searched refs:shmap (Results 1 – 25 of 63) sorted by relevance

123

/dports/devel/shmap/shmap-0.3.2/shmap/
H A Dshmap.h38 typedef struct shmap shmap; typedef
71 struct shmap { struct
108 shmap * shmap_init ( shmap_opts * p_opts );
114 int shmap_clear ( shmap * );
115 int shmap_dispose ( shmap * );
116 size_t shmap_items ( shmap * );
117 void * shmap_memsegm ( shmap * );
118 void shmap_dump ( shmap *, int );
119 size_t shmap_available ( shmap * );
121 shmap_lock * shmap_lock_get ( shmap * map );
[all …]
H A Dshmap_hm.h48 _shmap_value * shmap_hm_get_value ( shmap *, const char *, int );
49 int shmap_hm_get_int ( shmap *, const char *, int *, int );
50 int shmap_hm_add_value ( shmap *, const char *, void *, int, shmap_cleanup );
51 int shmap_hm_del_value ( shmap *, const char *, shmap_cleanup );
52 _shmap_value * shmap_hm_get_sub ( shmap *, const char *, int, int, int );
53 int shmap_hm_del_sub ( shmap *, const char *, int, shmap_cleanup );
54 int shmap_hm_clear ( shmap *, shmap_cleanup );
55 int shmap_hm_dispose ( shmap *, shmap_cleanup );
56 void shmap_hm_empty_cache ( shmap * );
57 unsigned int shmap_hm_available ( shmap * );
[all …]
H A Dshmap_ll.h43 _shmap_value * shmap_ll_get_value ( shmap * , const char * , int );
44 int shmap_ll_get_int ( shmap * , const char * , int * , int );
45 int shmap_ll_add_value ( shmap * , const char * , void *, int val_opts, shmap_cleanup cl…
46 int shmap_ll_del_value ( shmap * , const char *, shmap_cleanup );
47 _shmap_value * shmap_ll_get_sub ( shmap * , const char * , int , int , int );
48 int shmap_ll_del_sub ( shmap * , const char * , int, shmap_cleanup );
49 int shmap_ll_clear ( shmap *, shmap_cleanup );
50 int shmap_ll_dispose ( shmap *, shmap_cleanup );
54 void shmap_ll_dump ( shmap * , int );
61 static int _shmap_delv ( shmap *, shmap_cleanup );
H A Dshmap.c176 shmap * ret = NULL; in _shmap_attach()
204 ret = (shmap *) atoi(p_shmap); in _shmap_attach()
228 shmap * map; in shmap_init()
563 int shmap_clear ( shmap * map ) in shmap_clear()
593 int shmap_dispose ( shmap * map ) in shmap_dispose()
665 int shmap_detach ( shmap * map ) in shmap_detach()
674 void shmap_empty_cache ( shmap * map ) in shmap_empty_cache()
699 void * shmap_memsegm ( shmap * map ) in shmap_memsegm()
709 size_t shmap_items ( shmap * map ) in shmap_items()
720 size_t shmap_available ( shmap * map ) in shmap_available()
[all …]
H A Dshmap_fifo.h51 int shmap_fifo_add_value ( shmap * map, const char * key, void * value, int opts, shmap_…
52 _shmap_value * shmap_fifo_get_value ( shmap * map, const char * key, int cache );
53 int shmap_fifo_del_value ( shmap * map, const char * key, shmap_cleanup cleanup );
54 _shmap_value * shmap_fifo_get_sub ( shmap * map, const char * key, int keylen, int pos, int cached …
55 int shmap_fifo_del_sub ( shmap * map, const char * key, int keylen, shmap_cleanup cleanu…
56 int shmap_fifo_clear ( shmap * map, shmap_cleanup cleanup );
57 int shmap_fifo_dispose ( shmap * map, shmap_cleanup cleanup );
H A Dshmap_internals.h60 _shmap_value *(*shmap_get_value)(shmap *, const char *, int);
61 …int (*shmap_add_value)(shmap *, const char *, void *, int, shmap_cleanup ); // map, key,…
62 int (*shmap_del_value)(shmap *, const char *, shmap_cleanup );
63 …_shmap_value *(*shmap_get_sub)(shmap *, const char *, int, int, int); // map, key, keylen, pos, ca…
64 int (*shmap_del_sub)(shmap*, const char *, int, shmap_cleanup );
65 int (*shmap_clear)(shmap *, shmap_cleanup );
66 int (*shmap_dispose)(shmap *, shmap_cleanup );
70 void (*shmap_dump)(shmap *, int);
82 shmap_perm * _core_get_perm ( shmap * map );
83 int _core_set_perm ( shmap * map, shmap_perm * perm );
H A Dshmap_btree.h50 _shmap_value * shmap_btree_get ( shmap * map, const char * key, int cached );
51 int shmap_btree_add ( shmap * map, const char * key, void * value, int opts, shmap_clea…
52 int shmap_btree_del ( shmap * map, const char * key, shmap_cleanup cleanup );
53 _shmap_value * shmap_btree_get_sub ( shmap * map, const char * key, int keylen, int pos, int cache…
54 int shmap_btree_del_sub ( shmap * map, const char * key, int keylen, shmap_cleanup clea…
55 int shmap_btree_clear ( shmap * map, shmap_cleanup cleanup );
56 int shmap_btree_dispose ( shmap * map, shmap_cleanup cleanup );
H A Dshmap_fifo.c69 int shmap_fifo_add_value ( shmap * map, const char * key, void * value, int opts, shmap_cleanup cle… in shmap_fifo_add_value()
107 _shmap_value * shmap_fifo_get_value ( shmap * map, const char * key, int cache ) in shmap_fifo_get_value()
133 int shmap_fifo_del_value ( shmap * map, const char * key, shmap_cleanup cleanup ) in shmap_fifo_del_value()
148 _shmap_value * shmap_fifo_get_sub ( shmap * map, const char * key, int keylen, int pos, int cached ) in shmap_fifo_get_sub()
171 int shmap_fifo_del_sub ( shmap * map, const char * key, int keylen, shmap_cleanup cleanup ) in shmap_fifo_del_sub()
187 int shmap_fifo_clear ( shmap * map, shmap_cleanup cleanup ) in shmap_fifo_clear()
192 int shmap_fifo_dispose ( shmap * map, shmap_cleanup cleanup ) in shmap_fifo_dispose()
H A Dshmap_hm.c81 _shmap_value * shmap_hm_get_value ( shmap * map, const char * key, int cached ) in shmap_hm_get_value()
86 int shmap_hm_add_value ( shmap * map, const char * key, void * value, int opts, shmap_cleanup clean… in shmap_hm_add_value()
91 int shmap_hm_del_value ( shmap * map, const char * key, shmap_cleanup cleanup ) in shmap_hm_del_value()
96 _shmap_value * shmap_hm_get_sub ( shmap * map, const char * key, int keylen, int pos, int cached ) in shmap_hm_get_sub()
101 int shmap_hm_del_sub ( shmap * map, const char * key, int keylen, shmap_cleanup cleanup ) in shmap_hm_del_sub()
117 int shmap_hm_clear ( shmap * map, shmap_cleanup cleanup ) in shmap_hm_clear()
122 int shmap_hm_dispose ( shmap * map, shmap_cleanup cleanup ) in shmap_hm_dispose()
132 void shmap_hm_dump ( shmap * map, int with_values ) in shmap_hm_dump()
H A Dshmap_ll.c95 _shmap_value * shmap_ll_get_value ( shmap * map, const char * key, int cached ) in shmap_ll_get_value()
129 int shmap_ll_add_value ( shmap * map, const char * key, void * value, int val_opts, shmap_cleanup c… in shmap_ll_add_value()
182 int shmap_ll_del_value ( shmap * map, const char * key, shmap_cleanup cleanup ) in shmap_ll_del_value()
220 _shmap_value * shmap_ll_get_sub ( shmap * map, const char * subkey, int key_len, int pos, int cache… in shmap_ll_get_sub()
266 int shmap_ll_del_sub ( shmap * map, const char * key, int key_len, shmap_cleanup cleanup ) in shmap_ll_del_sub()
296 int shmap_ll_clear ( shmap * map, shmap_cleanup cleanup ) in shmap_ll_clear()
311 int shmap_ll_dispose ( shmap * map, shmap_cleanup cleanup ) in shmap_ll_dispose()
362 void shmap_ll_dump ( shmap * map, int with_values ) in shmap_ll_dump()
503 static int _shmap_delv ( shmap * map, shmap_cleanup cleanup ) in _shmap_delv()
H A Dshmap_btree.c64 _shmap_value * shmap_btree_get ( shmap * map, const char * key, int cached ) in shmap_btree_get()
76 int shmap_btree_add ( shmap * map, const char * key, void * value, int opts, shmap_cleanup cleanup ) in shmap_btree_add()
88 int shmap_btree_del ( shmap * map, const char * key, shmap_cleanup cleanup ) in shmap_btree_del()
102 _shmap_value * shmap_btree_get_sub ( shmap * map, const char * key, int keylen, int pos, int cached… in shmap_btree_get_sub()
113 int shmap_btree_del_sub ( shmap * map, const char * key, int keylen, shmap_cleanup cleanup ) in shmap_btree_del_sub()
128 int shmap_btree_clear ( shmap * map, shmap_cleanup cleanup ) in shmap_btree_clear()
133 int shmap_btree_dispose ( shmap * map, shmap_cleanup cleanup ) in shmap_btree_dispose()
H A DMakefile.am2 libshmap_la_SOURCES = core.c mem_core.c shmap.c shmap_hm.c shmap_ll.c shmap_value.c shmap_btree.c s…
5 include_HEADERS = shmap.h
H A DMakefile.in82 libshmap_la_SOURCES = core.c mem_core.c shmap.c shmap_hm.c shmap_ll.c shmap_value.c shmap_btree.c s…
85 include_HEADERS = shmap.h
87 subdir = shmap
95 am_libshmap_la_OBJECTS = core.lo mem_core.lo shmap.lo shmap_hm.lo \
106 @AMDEP_TRUE@ $(DEPDIR)/pool.Plo $(DEPDIR)/shmap.Plo \
139 $(AUTOMAKE) --gnu shmap/Makefile
175 @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/shmap.Plo@am__quote@
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/moints/
H A Dmoints_gsh1.F120 $ ngr, glo, ghi, shmap,
165 shmap(jsh) = ii
183 wght = bfmap(shmap(ii))
216 bfmap(j) = shmap(k)
227 call icopy(nsh,bfmap,1,shmap,1)
249 shmap(ish) = ish
273 status = bas_cn2bfr(basis,shmap(ish),ibflo,ibfhi)
293 ish = shmap(ii)
306 write(6,901) (shmap(ii),ii=1,nsh)
367 ish = max(shmap(ish0),shmap(jsh0))
[all …]
/dports/science/nwchem-data/nwchem-7.0.2-release/src/moints/
H A Dmoints_gsh1.F120 $ ngr, glo, ghi, shmap,
165 shmap(jsh) = ii
183 wght = bfmap(shmap(ii))
216 bfmap(j) = shmap(k)
227 call icopy(nsh,bfmap,1,shmap,1)
249 shmap(ish) = ish
273 status = bas_cn2bfr(basis,shmap(ish),ibflo,ibfhi)
293 ish = shmap(ii)
306 write(6,901) (shmap(ii),ii=1,nsh)
367 ish = max(shmap(ish0),shmap(jsh0))
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/IGESControl/
H A DIGESControl_ActorWrite.cxx43 DeclareAndCast(TransferBRep_ShapeMapper,shmap,start); in Recognize()
44 if (!shmap.IsNull()) return Standard_True; in Recognize()
67 DeclareAndCast(TransferBRep_ShapeMapper,shmap,start); in Handle()
68 if (!shmap.IsNull()) { in Handle()
69 TopoDS_Shape shape = shmap->Value(); in Handle()
/dports/devel/shmap/shmap-0.3.2/
H A Dconfigure.in3 AM_INIT_AUTOMAKE(shmap, 0.3.2)
6 AC_CONFIG_SRCDIR([shmap/shmap_hm.c])
30 shmap/Makefile])
H A DAUTHORS1 The author of the shmap package is Margus Laak <margus@mail.ee>
5 This software is a modified version libmm to meet needs of shmap
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/space/
H A DElement.cpp62 …a, number_t ord, dimen_t dimfun, Vector<real_t>* sign_p, ShapeValues& sh, ShapeValues& shmap) const in mapShapeValues()
64 if(&sh!=&shmap) shmap.assign(sh); in mapShapeValues()
77 if(rotsh) refElt_p->rotateDofs(melt->verticesNumbers(), shmap, ord>0); //rotate shape values in mapShapeValues()
84 case _contravariantPiolaMap : shmap.contravariantPiolaMap(shmap, mapdata, ord); break; in mapShapeValues()
85 case _covariantPiolaMap : shmap.covariantPiolaMap(shmap, mapdata, ord); break; in mapShapeValues()
86 default : shmap.map(shmap, mapdata, ord); in mapShapeValues()
89 …if(changeSign) shmap.changeSign(*sign_p, dimfun, ord); //change sign of shape functions according… in mapShapeValues()
/dports/graphics/rawtherapee/rawtherapee-5.8/rtengine/
H A Dipretinex.cc372 std::unique_ptr<SHMap> shmap; in MSR() local
374 shmap.reset(new SHMap(W_L, H_L)); in MSR()
417 shmap->updateL(out, shradius, true, 1); in MSR()
418 h_th = shmap->max_f - deh.htonalwidth * (shmap->max_f - shmap->avg) / 100; in MSR()
419 s_th = deh.stonalwidth * (shmap->avg - shmap->min_f) / 100; in MSR()
444 const float mapval = 1.f + shmap->map[i][j]; in MSR()
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/tce/gradients/
H A Dtce_grad2.F15 $ nshblocks, shmap, shglo, shghi, bfglo, bfghi, bfmap, rbfmap,
85 integer shmap(nsh) ! [input] Map from new to old shell order
250 ish = shmap(iish)
257 jsh = shmap(jjsh)
266 ksh = shmap(kksh)
275 lsh = shmap(llsh)
/dports/science/nwchem-data/nwchem-7.0.2-release/src/tce/gradients/
H A Dtce_grad2.F15 $ nshblocks, shmap, shglo, shghi, bfglo, bfghi, bfmap, rbfmap,
85 integer shmap(nsh) ! [input] Map from new to old shell order
250 ish = shmap(iish)
257 jsh = shmap(jjsh)
266 ksh = shmap(kksh)
275 lsh = shmap(llsh)
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/nwdft/lr_tddft_grad/
H A Dtddft_grad_grad_2e.F19 $ nshblocks, shmap, shglo, shghi, bfglo, bfghi, bfmap, rbfmap,
82 integer shmap(nsh) ! [input] Map from new to old shell order
268 ish = shmap(iish)
275 jsh = shmap(jjsh)
288 ksh = shmap(kksh)
297 lsh = shmap(llsh)
/dports/science/nwchem-data/nwchem-7.0.2-release/src/nwdft/lr_tddft_grad/
H A Dtddft_grad_grad_2e.F19 $ nshblocks, shmap, shglo, shghi, bfglo, bfghi, bfmap, rbfmap,
82 integer shmap(nsh) ! [input] Map from new to old shell order
268 ish = shmap(iish)
275 jsh = shmap(jjsh)
288 ksh = shmap(kksh)
297 lsh = shmap(llsh)
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/src/term/computation/
H A DFEMatrixComputation.hpp82 dimen_t& dimfunp, const ShapeValues& sh, ShapeValues& shmap) in mapShapeValues() argument
85 if(&sh!=&shmap) shmap.assign(sh); in mapShapeValues()
87 if(rotsh) refElt.rotateDofs(melt.verticesNumbers(), shmap, ord>0); //rotate shape values in mapShapeValues()
94 shmap.contravariantPiolaMap(shmap, mapdata, ord); in mapShapeValues()
97 shmap.covariantPiolaMap(shmap, mapdata, ord); in mapShapeValues()
100 shmap.map(shmap, mapdata, ord); in mapShapeValues()
102 dimfunp = shmap.w.size()/nbfun; //new dimfun when 2d-3d mapping or 1d-2d mapping in mapShapeValues()
104 …if(changeSign) shmap.changeSign(*sign, dimfunp, ord); //change sign of shape functions according … in mapShapeValues()

123