nc4file.c#873 | hid_t native_typeid, hdf_typeid; |
#900 | if ((hdf_typeid = H5Dget_type(datasetid)) < 0) |
#905 | if ((native_typeid = H5Tget_native_type(hdf_typeid, H5T_DIR_DEFAULT)) < 0) |
#926 | if (is_str || H5Tget_size(hdf_typeid) > 1) |
#955 | if((order = H5Tget_order(hdf_typeid)) < 0) |
#974 | (*type_info)->hdf_typeid = hdf_typeid; |
#991 | if (H5Tclose(hdf_typeid) < 0) |
#1200 | read_type(NC_GRP_INFO_T *grp, hid_t hdf_typeid, char *type_name) |
#1213 | if ((native_typeid = H5Tget_native_type(hdf_typeid, H5T_DIR_DEFAULT)) < 0) |
#1227 | type->hdf_typeid = hdf_typeid; |
#1228 | H5Iinc_ref(type->hdf_typeid); /* Increment number of objects using ID */ |
#1232 | if ((class = H5Tget_class(hdf_typeid)) < 0) |
#1251 | if ((nmembers = H5Tget_nmembers(hdf_typeid)) < 0) |
#1367 | if ((ret = H5Tis_variable_str(hdf_typeid)) < 0) |
#1420 | if (!(base_hdf_typeid = H5Tget_super(hdf_typeid))) |
#1437 | if ((type->u.e.num_members = H5Tget_nmembers(hdf_typeid)) < 0) |
#1449 | if (!(member_name = H5Tget_member_name(hdf_typeid, i))) |
#1464 | if (H5Tget_member_value(hdf_typeid, i, value) < 0) |
nc4hdf.c#299 | hid_t *hdf_typeid, int endianness) |
#305 | assert(hdf_typeid && h5); |
#307 | *hdf_typeid = -1; |
#326 | *hdf_typeid = typeid; |
#339 | *hdf_typeid = typeid; |
#444 | typeid = type->hdf_typeid; |
#450 | if ((*hdf_typeid = H5Tcopy(typeid)) < 0) |
#454 | assert(*hdf_typeid != -1); |
#816 | if (H5Dwrite(var->hdf_datasetid, var->type_info->hdf_typeid, |
#1042 | H5Tget_size(var->type_info->hdf_typeid) > 1 && |
#1043 | !H5Tis_variable_str(var->type_info->hdf_typeid)) { |
#1046 | if ((fstring_len = H5Tget_size(var->type_info->hdf_typeid)) == 0) |
#1848 | hid_t hdf_base_typeid, hdf_typeid; |
#1850 | if ((type->hdf_typeid = H5Tcreate(H5T_COMPOUND, type->size)) < 0) |
#1853 | type->hdf_typeid)); |
#1869 | if ((hdf_typeid = H5Tarray_create(hdf_base_typeid, field->ndims, |
#1880 | hdf_typeid = hdf_base_typeid; |
#1882 | field->offset, hdf_typeid)); |
#1883 | if (H5Tinsert(type->hdf_typeid, field->name, field->offset, |
#1884 | hdf_typeid) < 0) |
#1886 | if (H5Tclose(hdf_typeid) < 0) |
#1898 | if ((type->hdf_typeid = H5Tvlen_create(type->u.v.base_hdf_typeid)) < 0) |
#1904 | if ((type->hdf_typeid = H5Tcreate(H5T_OPAQUE, type->size)) < 0) |
#1920 | if ((type->hdf_typeid = H5Tenum_create(type->u.e.base_hdf_typeid)) < 0) |
#1925 | if (H5Tenum_insert(type->hdf_typeid, enum_m->name, enum_m->value) < 0) |
#1935 | if (H5Tcommit(grp->hdf_grpid, type->name, type->hdf_typeid) < 0) |
#1939 | type->hdf_typeid)); |
#1944 | if ((type->native_hdf_typeid = H5Tget_native_type(type->hdf_typeid, |
nc4internal.c#401 | if ((equal = H5Tequal(type->native_hdf_typeid ? type->native_hdf_typeid : type->hdf_typeid, target_hdf_typeid)) < 0) |
#853 | field->hdf_typeid = field_hdf_typeid; |
#940 | if (type->hdf_typeid && H5Tclose(type->hdf_typeid) < 0) |
#1508 | type->hdf_typeid, type->size, (int)type->committed, type->name, |
nc4internal.h#198 | hid_t hdf_typeid; |
#224 | hid_t hdf_typeid; /* HDF5 type ID, in the file */ |
#379 | hid_t *hdf_typeid, int endianness); |
nc4var.c#438 | if ((retval = nc4_get_hdf_typeid(h5, xtype, &type_info->hdf_typeid, |
#441 | if ((type_info->native_hdf_typeid = H5Tget_native_type(type_info->hdf_typeid, |
#455 | if ((class = H5Tget_class(type_info->hdf_typeid)) < 0) |