Home
last modified time | relevance | path

Searched refs:hdf (Results 51 – 75 of 1434) sorted by relevance

12345678910>>...58

/dports/textproc/p5-Text-ClearSilver/Text-ClearSilver-0.10.5.4/cs/util/test/
H A Dhdf_sort_test.c25 void TestSort(HDF* hdf) in TestSort() argument
34 hdf_set_valuef(hdf, "test.%d", "%d", i, i); in TestSort()
36 hdf_set_valuef(hdf, "test.%d.val", "%f", i, value ); in TestSort()
39 hdf_dump(hdf,NULL); in TestSort()
41 hdf_sort_obj(hdf_get_obj(hdf, "test"), TestCompare); in TestSort()
43 hdf_dump(hdf,NULL); in TestSort()
51 HDF *hdf; in main() local
54 err = hdf_init(&hdf); in main()
62 TestSort(hdf); in main()
65 hdf_dump(hdf, NULL); in main()
[all …]
H A Dhdf_hash_test.c11 HDF *hdf, *h2; in main() local
14 err = hdf_init(&hdf); in main()
21 err = hdf_set_value(hdf, "CGI.Foo", "Bar"); in main()
27 err = hdf_set_value(hdf, "CGI.Foo", "Baz"); in main()
34 h2 = hdf_get_obj(hdf, "CGI"); in main()
37 hdf_dump(hdf, NULL); in main()
39 hdf_destroy(&hdf); in main()
/dports/www/clearsilver/clearsilver-0.10.5/util/test/
H A Dhdf_sort_test.c25 void TestSort(HDF* hdf) in TestSort() argument
34 hdf_set_valuef(hdf, "test.%d", "%d", i, i); in TestSort()
36 hdf_set_valuef(hdf, "test.%d.val", "%f", i, value ); in TestSort()
39 hdf_dump(hdf,NULL); in TestSort()
41 hdf_sort_obj(hdf_get_obj(hdf, "test"), TestCompare); in TestSort()
43 hdf_dump(hdf,NULL); in TestSort()
51 HDF *hdf; in main() local
54 err = hdf_init(&hdf); in main()
62 TestSort(hdf); in main()
65 hdf_dump(hdf, NULL); in main()
[all …]
H A Dhdf_hash_test.c11 HDF *hdf, *h2; in main() local
14 err = hdf_init(&hdf); in main()
21 err = hdf_set_value(hdf, "CGI.Foo", "Bar"); in main()
27 err = hdf_set_value(hdf, "CGI.Foo", "Baz"); in main()
34 h2 = hdf_get_obj(hdf, "CGI"); in main()
37 hdf_dump(hdf, NULL); in main()
39 hdf_destroy(&hdf); in main()
/dports/www/p5-Catalyst-View-ClearSilver/Catalyst-View-ClearSilver-0.02/lib/Catalyst/View/
H A DClearSilver.pm35 my $hdf = $self->_create_hdf($stash);
36 die qq/Couldn't create HDF dataset/ unless $hdf;
38 my $cs = ClearSilver::CS->new($hdf);
49 my $hdf = ClearSilver::HDF->new;
59 _hdf_setValue($hdf, $key, $val);
62 return $hdf;
66 my ($hdf, $key, $val) = @_;
71 _hdf_setValue($hdf, "$key.$index", $v);
77 _hdf_setValue($hdf, "$key.$k", $v);
81 _hdf_setValue($hdf, $key, $$val);
[all …]
/dports/math/PDL/PDL-2.019/t/
H A Dhdf_sd.t216 ok( $hdf->Chunking(), 'Chunking()' );
219 $hdf->Chunking(0);
223 ok( !$hdf->Chunking(), 'Chunking(0)' );
233 $hdf->close();
234 undef($hdf);
249 $hdf->close();
250 undef($hdf);
269 $hdf->close();
270 undef($hdf);
295 $hdf->close();
[all …]
/dports/science/hdf/hdf-4.2.15/mfhdf/hrepack/
H A Dhrepack.sh.in174 TOOLTEST HUFF hrepacktst1.hdf -t "dset7:HUFF 1" -c dset7:10x8x6
187 TOOLTEST RLE hrepacktst1.hdf -t dset4:RLE -c dset4:10x8
199 TOOLTEST SDSGZIP_CHUNK hrepacktst1.hdf -t "dset4:GZIP 6" -c dset4:10x8
213 SKIP SDSSZIP_CHUNK hrepacktst1.hdf -c dset4:10x8
215 TOOLTEST SDSSZIP_CHUNK hrepacktst1.hdf -t "dset4:SZIP 8,EC" -c dset4:10x8
280 TOOLTEST SEL_NOCHUNK hrepacktst1.hdf -t "dset4:GZIP 9" -t dset5:RLE -t "dset6:HUFF 2"
304 …TOOLTEST COMPALL_CHUNKNONE hrepacktst1.hdf -t "*:GZIP 1" -c dset_chunk_comp:NONE -c dset_chunk:NONE
318 TOOLTEST NOCOMP_CHUNKALL hrepacktst1.hdf -c *:10x8
329 TOOLTEST GZIP hrepacktst1.hdf -t "*:GZIP 1"
340 TOOLTEST HYPERSLAB hrepacktst2.hdf
[all …]
/dports/devel/p5-Data-ClearSilver-HDF/Data-ClearSilver-HDF-0.04/bin/
H A Dcspage35 my $hdf;
38 $hdf = ClearSilver::HDF->new;
39 $hdf->readFile($input);
42 $hdf = Data::ClearSilver::HDF->hdf($data);
45 my $cs = ClearSilver::CS->new($hdf);
50 my $hdf = Data::ClearSilver::HDF->hdf($data);
53 $hdf->writeFile($output);
56 print Data::ClearSilver::HDF->hdf_dump($hdf);
/dports/www/cutelyst/cutelyst-3.2.0/Cutelyst/Plugins/View/ClearSilver/
H A Dclearsilver.cpp128 Q_UNUSED(hdf) in findFile()
153 HDF *hdf = hdfForStash(c, stash); in render() local
157 error = cs_init(&cs, hdf); in render()
167 hdf_destroy(&hdf); in render()
185 hdf_destroy(&hdf); in render()
193 hdf_destroy(&hdf); in render()
206 HDF *hdf = 0; in hdfForStash() local
207 hdf_init(&hdf); in hdfForStash()
209 serializeHash(hdf, stash); in hdfForStash()
216 serializeVariant(hdf, value, name); in hdfForStash()
[all …]
/dports/textproc/p5-Text-ClearSilver/Text-ClearSilver-0.10.5.4/cs/java-jni/servlet/
H A DCSPage.java21 public HDF hdf; field in CSPage
32 hdf = new HDF(); in doGet()
33 cs = new CS(hdf); in doGet()
40 hdf.setValue("HTTP." + headerName,headerValue); in doGet()
44 hdf.setValue("HTTP.PATH_INFO",request.getPathInfo()); in doGet()
45 hdf.setValue("CGI.QueryString",request.getQueryString()); in doGet()
46 hdf.setValue("CGI.RequestMethod",request.getMethod()); in doGet()
53 hdf.setValue("Query." + paramName,paramValue); in doGet()
63 hdf.setValue("Cookie." + cookie.getName(),cookie.getValue()); in doGet()
103 out.print(hdf.dump()); in doGet()
[all …]
/dports/www/clearsilver/clearsilver-0.10.5/java-jni/servlet/
H A DCSPage.java21 public HDF hdf; field in CSPage
32 hdf = new HDF(); in doGet()
33 cs = new CS(hdf); in doGet()
40 hdf.setValue("HTTP." + headerName,headerValue); in doGet()
44 hdf.setValue("HTTP.PATH_INFO",request.getPathInfo()); in doGet()
45 hdf.setValue("CGI.QueryString",request.getQueryString()); in doGet()
46 hdf.setValue("CGI.RequestMethod",request.getMethod()); in doGet()
53 hdf.setValue("Query." + paramName,paramValue); in doGet()
63 hdf.setValue("Cookie." + cookie.getName(),cookie.getValue()); in doGet()
103 out.print(hdf.dump()); in doGet()
[all …]
/dports/www/p5-ClearSilver/clearsilver-0.10.5/java-jni/servlet/
H A DCSPage.java21 public HDF hdf; field in CSPage
32 hdf = new HDF(); in doGet()
33 cs = new CS(hdf); in doGet()
40 hdf.setValue("HTTP." + headerName,headerValue); in doGet()
44 hdf.setValue("HTTP.PATH_INFO",request.getPathInfo()); in doGet()
45 hdf.setValue("CGI.QueryString",request.getQueryString()); in doGet()
46 hdf.setValue("CGI.RequestMethod",request.getMethod()); in doGet()
53 hdf.setValue("Query." + paramName,paramValue); in doGet()
63 hdf.setValue("Cookie." + cookie.getName(),cookie.getValue()); in doGet()
103 out.print(hdf.dump()); in doGet()
[all …]
/dports/biology/protomol/protomol/framework/integrators/
H A DUmbrellaIntegrator.cpp62 hdf = NULL; in UmbrellaIntegrator()
96 while( (forceItr != myForcePtrs.end()) && (hdf == 0)) in initialize()
100 hdf = (*forceItr); in initialize()
103 if (hdf == 0) in initialize()
112 std::cout << hdf->getId() << std::endl; in initialize()
114 report << debug(1) << hdf->getId() << ":" << hdf->getParameters()[1].value << endr; in initialize()
117 curAngle = hdf->getParameters()[1].value; in initialize()
149 hdf->setParameter(err,1,curAngle); in incrCoord()
150 report << debug(1) << hdf->getId() << ":" << hdf->getParameters()[0].value in incrCoord()
151 << ":" << hdf->getParameters()[1].value << endr; in incrCoord()
/dports/www/p5-ClearSilver/clearsilver-0.10.5/imd/
H A Dimd.c601 err = hdf_set_value (cgi->hdf, buf, num); in export_image()
605 err = hdf_set_value (cgi->hdf, buf, num); in export_image()
627 obj = hdf_get_obj (cgi->hdf, prefix); in scale_images()
693 err = hdf_set_value(cgi->hdf, buf, l); in export_album_path()
696 err = hdf_set_value(cgi->hdf, buf, album); in export_album_path()
706 err = hdf_set_value(cgi->hdf, buf, l); in export_album_path()
709 err = hdf_set_value(cgi->hdf, buf, album); in export_album_path()
815 x = hdf_get_int_value (cgi->hdf, buf, -1); in dowork_picture()
843 avi = hdf_get_value (cgi->hdf, buf, NULL); in dowork_picture()
896 err = hdf_set_value (cgi->hdf, buf, name); in dowork_album_overview()
[all …]
/dports/textproc/p5-Text-ClearSilver/Text-ClearSilver-0.10.5.4/cs/imd/
H A Dimd.c601 err = hdf_set_value (cgi->hdf, buf, num); in export_image()
605 err = hdf_set_value (cgi->hdf, buf, num); in export_image()
627 obj = hdf_get_obj (cgi->hdf, prefix); in scale_images()
693 err = hdf_set_value(cgi->hdf, buf, l); in export_album_path()
696 err = hdf_set_value(cgi->hdf, buf, album); in export_album_path()
706 err = hdf_set_value(cgi->hdf, buf, l); in export_album_path()
709 err = hdf_set_value(cgi->hdf, buf, album); in export_album_path()
815 x = hdf_get_int_value (cgi->hdf, buf, -1); in dowork_picture()
843 avi = hdf_get_value (cgi->hdf, buf, NULL); in dowork_picture()
896 err = hdf_set_value (cgi->hdf, buf, name); in dowork_album_overview()
[all …]
/dports/www/clearsilver/clearsilver-0.10.5/imd/
H A Dimd.c601 err = hdf_set_value (cgi->hdf, buf, num); in export_image()
605 err = hdf_set_value (cgi->hdf, buf, num); in export_image()
627 obj = hdf_get_obj (cgi->hdf, prefix); in scale_images()
693 err = hdf_set_value(cgi->hdf, buf, l); in export_album_path()
696 err = hdf_set_value(cgi->hdf, buf, album); in export_album_path()
706 err = hdf_set_value(cgi->hdf, buf, l); in export_album_path()
709 err = hdf_set_value(cgi->hdf, buf, album); in export_album_path()
815 x = hdf_get_int_value (cgi->hdf, buf, -1); in dowork_picture()
843 avi = hdf_get_value (cgi->hdf, buf, NULL); in dowork_picture()
896 err = hdf_set_value (cgi->hdf, buf, name); in dowork_album_overview()
[all …]
/dports/www/p5-ClearSilver/clearsilver-0.10.5/util/test/
H A Dhdf_hash_test.c11 HDF *hdf, *h2; in main() local
14 err = hdf_init(&hdf); in main()
21 err = hdf_set_value(hdf, "CGI.Foo", "Bar"); in main()
27 err = hdf_set_value(hdf, "CGI.Foo", "Baz"); in main()
34 h2 = hdf_get_obj(hdf, "CGI"); in main()
37 hdf_dump(hdf, NULL); in main()
39 hdf_destroy(&hdf); in main()
/dports/www/p5-ClearSilver/clearsilver-0.10.5/ruby/ext/hdf/
H A Dneo_util.c46 hdf_destroy(&(hdfh->hdf)); in h_free2()
80 err = hdf_init (&(hdfh->hdf)); in h_new()
208 hdfh_new->hdf=r; in h_get_child()
231 hdfh_new->hdf=r; in h_get_obj()
254 hdfh_new->hdf=r; in h_get_node()
276 hdfh_new->hdf=r; in h_obj_child()
290 r = hdf_obj_next (hdfh->hdf); in h_obj_next()
297 hdfh_new->hdf=r; in h_obj_next()
311 r = hdf_obj_top (hdfh->hdf); in h_obj_top()
318 hdfh_new->hdf=r; in h_obj_top()
[all …]
/dports/textproc/p5-Text-ClearSilver/Text-ClearSilver-0.10.5.4/cs/ruby/ext/hdf/
H A Dneo_util.c46 hdf_destroy(&(hdfh->hdf)); in h_free2()
80 err = hdf_init (&(hdfh->hdf)); in h_new()
208 hdfh_new->hdf=r; in h_get_child()
231 hdfh_new->hdf=r; in h_get_obj()
254 hdfh_new->hdf=r; in h_get_node()
276 hdfh_new->hdf=r; in h_obj_child()
290 r = hdf_obj_next (hdfh->hdf); in h_obj_next()
297 hdfh_new->hdf=r; in h_obj_next()
311 r = hdf_obj_top (hdfh->hdf); in h_obj_top()
318 hdfh_new->hdf=r; in h_obj_top()
[all …]
/dports/www/clearsilver/clearsilver-0.10.5/ruby/ext/hdf/
H A Dneo_util.c46 hdf_destroy(&(hdfh->hdf)); in h_free2()
80 err = hdf_init (&(hdfh->hdf)); in h_new()
208 hdfh_new->hdf=r; in h_get_child()
231 hdfh_new->hdf=r; in h_get_obj()
254 hdfh_new->hdf=r; in h_get_node()
276 hdfh_new->hdf=r; in h_obj_child()
290 r = hdf_obj_next (hdfh->hdf); in h_obj_next()
297 hdfh_new->hdf=r; in h_obj_next()
311 r = hdf_obj_top (hdfh->hdf); in h_obj_top()
318 hdfh_new->hdf=r; in h_obj_top()
[all …]
/dports/science/hdf/hdf-4.2.15/hdf/util/
H A Dfp2hdf.input11 open cb32r2.hdf
7 open cb32r3.hdf
13 open cb64r2.hdf
19 open cb64r3.hdf
25 open ctxtr2.hdf
31 open ctxtr3.hdf
37 open cb64r2_ris.hdf
43 open ctxtr2_ris.hdf
/dports/science/hdf/hdf-4.2.15/mfhdf/hdfimport/
H A Dhdfimport.input11 open cb32r2.hdf
7 open cb32r3.hdf
13 open cb64r2.hdf
19 open cb64r3.hdf
25 open ctxtr2.hdf
31 open ctxtr3.hdf
37 open cb64r2_ris.hdf
43 open ctxtr2_ris.hdf
/dports/science/hdf/hdf-4.2.15/mfhdf/hdiff/
H A DMakefile.am8 hdiff_INCLUDES=-I$(top_srcdir)/hdf/src \
48 CHECK_CLEANFILES += hdifftst1.hdf hdifftst2.hdf hdifftst3.hdf hdifftst4.hdf hdifftst5.hdf hdifftst6…
/dports/science/hdf/hdf-4.2.15/hdf/util/testfiles/
H A DREADME1 This directory contains files that can be used for testing hdf.
5 .hdf - HDF file. Could contain any number of different HDF objects
24 storm110.hdf - hdf image of data from storm simulation
25 storm120.hdf - hdf image of data from storm simulation
26 storm130.hdf - hdf image of data from storm simulation
27 storm140.hdf - hdf image of data from storm simulation
/dports/www/p5-ClearSilver/clearsilver-0.10.5/perl/
H A Dtest.pl35 $hdf = ClearSilver::HDF->new();
36 $hdf ? result($testnum, 1) : result($testnum, 0);
42 $ret = $hdf->readFile("test.hdf");
49 $lev2_node = $hdf->getObj("TopNode.2nd1");
86 $lev2_node = $hdf->getChild("TopNode.2nd1");
93 $hdf->setValue("Data.1", "Value1");
94 $str = $hdf->getValue("Data.1", "default");
98 $str = $hdf->getValue("Data.2", "default"); # doesn't exist
106 $ret = $copy->copy("", $hdf);
137 $sort_top = $hdf->getObj("Sort.Data");
[all …]

12345678910>>...58