Home
last modified time | relevance | path

Searched refs:src_space (Results 1 – 25 of 90) sorted by relevance

1234

/dports/science/hdf5/hdf5-1.10.6/examples/
H A Dh5_vds-percival-unlim-maxmin.c59 hid_t vfile, file, src_space, mem_space, vspace, in main() local
104 src_space = H5Screate_simple (RANK, dims, dims_max); in main()
111 status = H5Sclose (src_space); in main()
123 src_space = H5Screate_simple (RANK, dims, dims_max); in main()
163 status = H5Sclose (src_space); in main()
185 src_space = H5Dget_space (dset); in main()
201 status = H5Sclose (src_space); in main()
297 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
298 if (H5Sget_select_type(src_space) == H5S_SEL_HYPERSLABS) { in main()
299 if (H5Sis_regular_hyperslab(src_space)) { in main()
[all …]
H A Dh5_vds-percival.c62 hid_t file, src_space, vspace, in main() local
102 src_space = H5Screate_simple (RANK, dims, NULL); in main()
103 dset = H5Dcreate2 (file, SRC_DATASET[i], H5T_NATIVE_INT, src_space, H5P_DEFAULT, in main()
107 status = H5Sclose (src_space); in main()
118 src_space = H5Screate_simple (RANK, dims, dims_max); in main()
154 status = H5Pset_virtual (dcpl, vspace, SRC_FILE[i], SRC_DATASET[i], src_space); in main()
164 status = H5Sclose (src_space); in main()
230 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
231 if (H5Sget_select_type(src_space) == H5S_SEL_HYPERSLABS) { in main()
232 if (H5Sis_regular_hyperslab(src_space)) { in main()
[all …]
H A Dh5_vds-percival-unlim.c57 hid_t vfile, file, src_space, mem_space, vspace, in main() local
103 src_space = H5Screate_simple (RANK, dims, dims_max); in main()
110 status = H5Sclose (src_space); in main()
122 src_space = H5Screate_simple (RANK, dims, dims_max); in main()
162 status = H5Sclose (src_space); in main()
189 src_space = H5Dget_space (dset); in main()
204 status = H5Sclose (src_space); in main()
274 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
275 if (H5Sget_select_type(src_space) == H5S_SEL_HYPERSLABS) { in main()
276 if (H5Sis_regular_hyperslab(src_space)) { in main()
[all …]
H A Dh5_vds-eiger.c39 hid_t file, src_space, vspace, in main() local
68 src_space = H5Screate_simple (RANK, dims, NULL); in main()
93 status = H5Pset_virtual (dcpl, vspace, "f-%b.h5", "/A", src_space); in main()
101 status = H5Sclose (src_space); in main()
168 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
169 if(H5Sget_select_type(src_space) == H5S_SEL_ALL) { in main()
174 H5Sclose(src_space); in main()
H A Dh5_vds-simpleIO.c43 hid_t file, space, src_space, vspace, dset; /* Handles */ in main() local
92 src_space = H5Screate_simple (RANK, dims, NULL); in main()
93 status = H5Pset_virtual (dcpl, vspace, SRC_FILE, SRC_DATASET, src_space); in main()
99 status = H5Sclose (src_space); in main()
159 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
162 if(H5Sget_select_type(src_space) == H5S_SEL_ALL) { in main()
166 H5Sclose(src_space); in main()
H A Dh5_vds.c61 hid_t file, space, src_space, vspace, dset; /* Handles */ in main() local
135 src_space = H5Screate_simple (RANK1, dims, NULL); in main()
140 status = H5Pset_virtual (dcpl, space, SRC_FILE[i], SRC_DATASET[i], src_space); in main()
147 status = H5Sclose (src_space); in main()
227 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
230 if(H5Sget_select_type(src_space) == H5S_SEL_ALL) { in main()
234 H5Sclose(src_space); in main()
H A Dh5_vds-exc.c60 src_space, in main() local
211 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
212 if (H5Sget_select_type(src_space) == H5S_SEL_HYPERSLABS) { in main()
214 … status = H5Sget_regular_hyperslab (src_space, start_out, stride_out, count_out, block_out); in main()
222 H5Sclose(src_space); in main()
H A Dh5_vds-exclim.c61 src_space, in main() local
207 src_space = H5Pget_virtual_srcspace (dcpl, (size_t)i); in main()
208 if(H5Sget_select_type(src_space) == H5S_SEL_HYPERSLABS) { in main()
218 H5Sclose(src_space); in main()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudev/test/
H A Dtest_color_cvt.cu61 #define CVT_COLOR_TEST(src_space, dst_space, src_cn, dst_cn) \ argument
62 TEST(CvtColor, src_space ## _to_ ## dst_space) \
67 cv::cvtColor(bgrb, srcb, COLOR_BGR ## 2 ## src_space, src_cn); \
69 …GpuMat_<SelectIf<dst_cn == 1, uchar, uchar ## dst_cn>::type> dstb = src_space ## _to_ ## dst_space…
71 cv::cvtColor(srcb, dstb_gold, COLOR_ ## src_space ## 2 ## dst_space); \
75 cv::cvtColor(bgrf, srcf, COLOR_BGR ## 2 ## src_space, src_cn); \
77 …GpuMat_<SelectIf<dst_cn == 1, float, float ## dst_cn>::type> dstf = src_space ## _to_ ## dst_space…
79 cv::cvtColor(srcf, dstf_gold, COLOR_ ## src_space ## 2 ## dst_space); \
/dports/emulators/citra/citra-ac98458e0/externals/teakra/src/
H A Ddma.cpp40 switch (src_space) { in Tick()
56 std::printf("Unknown SrcSpace %04X\n", src_space); in Tick()
81 switch (src_space) { in Tick()
93 std::printf("Unknown SrcSpace %04X\n", src_space); in Tick()
H A Ddma.h124 channels[active_channel].src_space = value; in SetSrcSpace()
127 return channels[active_channel].src_space; in GetSrcSpace()
181 u16 src_space = 0, dst_space = 0; member
/dports/emulators/citra-qt5/citra-ac98458e0/externals/teakra/src/
H A Ddma.cpp40 switch (src_space) { in Tick()
56 std::printf("Unknown SrcSpace %04X\n", src_space); in Tick()
81 switch (src_space) { in Tick()
93 std::printf("Unknown SrcSpace %04X\n", src_space); in Tick()
H A Ddma.h124 channels[active_channel].src_space = value; in SetSrcSpace()
127 return channels[active_channel].src_space; in GetSrcSpace()
181 u16 src_space = 0, dst_space = 0; member
/dports/mail/dovecot/dovecot-2.3.17/src/lib/
H A Dbase64.c146 size_t src_space = 0; in base64_encode_get_full_space() local
181 src_space++; in base64_encode_get_full_space()
185 return src_space; in base64_encode_get_full_space()
187 src_space++; in base64_encode_get_full_space()
194 return src_space; in base64_encode_get_full_space()
196 src_space += dst_space / 4 * 3; in base64_encode_get_full_space()
203 src_space += 1; in base64_encode_get_full_space()
206 src_space += 2; in base64_encode_get_full_space()
211 return src_space; in base64_encode_get_full_space()
/dports/science/hdf5/hdf5-1.10.6/fortran/test/
H A DtH5P_F03.F90656 INTEGER(hid_t) :: vfile, file, src_space, mem_space, vspace, vdset, dset !Handles local
728 CALL h5screate_simple_f(RANK, dims, src_space, error, dims_max)
740 CALL H5Sclose_f(src_space, error)
758 CALL H5Screate_simple_f(RANK, dims, src_space, error, dims_max)
776 CALL H5Sselect_hyperslab_f(src_space, H5S_SELECT_SET_F, start, src_count, error, block=block)
786 CALL H5Pset_virtual_f (dcpl, vspace, SRC_FILE(i), SRC_DATASET(i), src_space, error)
800 CALL H5Sclose_f(src_space, error)
826 CALL H5Dget_space_f(dset, src_space, error)
838 CALL H5Sselect_hyperslab_f(src_space, H5S_SELECT_SET_F, start,count, error,block=block)
841 CALL H5Dwrite_f(dset, H5T_NATIVE_INTEGER, f_ptr, error, mem_space, src_space, H5P_DEFAULT_F)
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Sselect.c2571 H5S_select_project_intersection(const H5S_t *src_space, const H5S_t *dst_space, in H5S_select_project_intersection() argument
2586 HDassert(src_space); in H5S_select_project_intersection()
2590 HDassert(H5S_GET_SELECT_NPOINTS(src_space) == H5S_GET_SELECT_NPOINTS(dst_space)); in H5S_select_project_intersection()
2626 HDassert(H5S_GET_EXTENT_TYPE(src_space) != H5S_SCALAR); in H5S_select_project_intersection()
2638 if (H5S_SELECT_BOUNDS(src_space, coords_start, coords_end) < 0) in H5S_select_project_intersection()
2693 if ((H5S_GET_SELECT_TYPE(src_space) == H5S_SEL_POINTS) || in H5S_select_project_intersection()
2752 HDassert(H5S_GET_SELECT_TYPE(src_space) != H5S_SEL_NONE); in H5S_select_project_intersection()
2824 H5S_t *src_space, *dst_space, *src_intersect_space; /* Input dataspaces */ in H5Sselect_project_intersection() local
2832 if (NULL == (src_space = (H5S_t *)H5I_object_verify(src_space_id, H5I_DATASPACE))) in H5Sselect_project_intersection()
2840 if (H5S_GET_SELECT_NPOINTS(src_space) != H5S_GET_SELECT_NPOINTS(dst_space)) in H5Sselect_project_intersection()
[all …]
/dports/misc/adios2/ADIOS2-2.7.1/source/adios2/engine/mixer/
H A DHDFMixerWriter.cpp162 hid_t src_space = H5Screate_simple( in AddVar() local
178 subfileVarName.c_str(), src_space); in AddVar()
179 status = H5Sclose(src_space); in AddVar()
/dports/science/hdf5/hdf5-1.10.6/java/test/
H A DTestH5Pvirtual.java268 long src_space = -1; in testH5Pget_selection_source_dataset() local
273 src_space = H5.H5Pget_virtual_srcspace (H5dcplid, 0); in testH5Pget_selection_source_dataset()
274 src_selection = H5.H5Sget_select_type(src_space); in testH5Pget_selection_source_dataset()
281 if (src_space > 0) in testH5Pget_selection_source_dataset()
282 try {H5.H5Sclose(src_space);} catch (Exception ex) {} in testH5Pget_selection_source_dataset()
/dports/biology/sra-tools/sra-tools-2.11.0/ncbi-vdb/libs/hdf5/
H A Dhdf5arrayfile.c459 hid_t src_space = H5Screate_simple( 1, &total, NULL ); in HDF5ArrayFileWrite_intern() local
460 if ( src_space < 0 ) in HDF5ArrayFileWrite_intern()
466 src_space, /* temp. 1D dataspace */ in HDF5ArrayFileWrite_intern()
472 H5Sclose( src_space ); in HDF5ArrayFileWrite_intern()
/dports/biology/ncbi-vdb/ncbi-vdb-2.11.0/libs/hdf5/
H A Dhdf5arrayfile.c459 hid_t src_space = H5Screate_simple( 1, &total, NULL ); in HDF5ArrayFileWrite_intern() local
460 if ( src_space < 0 ) in HDF5ArrayFileWrite_intern()
466 src_space, /* temp. 1D dataspace */ in HDF5ArrayFileWrite_intern()
472 H5Sclose( src_space ); in HDF5ArrayFileWrite_intern()
/dports/x11/babl/babl-0.1.88/babl/
H A Dbabl-fish.c296 const Babl *src_space = (void*)source_format->format.space; in babl_fish() local
300 if (!babl_space_is_cmyk (src_space) && in babl_fish()
/dports/science/hdf5-18/hdf5-1.8.21/src/
H A DH5Dscatgath.c1023 H5S_t *src_space; /* Dataspace */ in H5Dgather() local
1039 if(NULL == (src_space= (H5S_t *)H5I_object_verify(src_space_id, H5I_DATASPACE))) in H5Dgather()
1064 if((nelmts = (hssize_t)H5S_GET_SELECT_NPOINTS(src_space)) < 0) in H5Dgather()
1073 if(H5S_select_iter_init(&iter, src_space, type_size) < 0) in H5Dgather()
1080 …if(0 == (nelmts_gathered = H5D__gather_mem(src_buf, src_space, &iter, MIN(dst_buf_nelmts, (size_t)… in H5Dgather()
/dports/math/vtk6/VTK-6.2.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Dscatgath.c1025 H5S_t *src_space; /* Dataspace */ in H5Dgather() local
1041 if(NULL == (src_space= (H5S_t *)H5I_object_verify(src_space_id, H5I_DATASPACE))) in H5Dgather()
1066 if((nelmts = (hssize_t)H5S_GET_SELECT_NPOINTS(src_space)) < 0) in H5Dgather()
1075 if(H5S_select_iter_init(&iter, src_space, type_size) < 0) in H5Dgather()
1082 …if(0 == (nelmts_gathered = H5D__gather_mem(src_buf, src_space, &iter, MIN(dst_buf_nelmts, (size_t)… in H5Dgather()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/HDF5/src/itkhdf5/src/
H A DH5Dscatgath.c1048 H5S_t *src_space; /* Dataspace */ in H5Dgather() local
1062 if(NULL == (src_space= (H5S_t *)H5I_object_verify(src_space_id, H5I_DATASPACE))) in H5Dgather()
1083 if((nelmts = (hssize_t)H5S_GET_SELECT_NPOINTS(src_space)) < 0) in H5Dgather()
1096 if(H5S_select_iter_init(iter, src_space, type_size) < 0) in H5Dgather()
1103 …if(0 == (nelmts_gathered = H5D__gather_mem(src_buf, src_space, iter, MIN(dst_buf_nelmts, (size_t)n… in H5Dgather()
/dports/science/hdf5/hdf5-1.10.6/src/
H A DH5Dscatgath.c1048 H5S_t *src_space; /* Dataspace */ in H5Dgather() local
1062 if(NULL == (src_space= (H5S_t *)H5I_object_verify(src_space_id, H5I_DATASPACE))) in H5Dgather()
1083 if((nelmts = (hssize_t)H5S_GET_SELECT_NPOINTS(src_space)) < 0) in H5Dgather()
1096 if(H5S_select_iter_init(iter, src_space, type_size) < 0) in H5Dgather()
1103 …if(0 == (nelmts_gathered = H5D__gather_mem(src_buf, src_space, iter, MIN(dst_buf_nelmts, (size_t)n… in H5Dgather()

1234