Home
last modified time | relevance | path

Searched refs:dim_types (Results 1 – 13 of 13) sorted by relevance

/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/fragment/
H A Dsingle_fragment_info.h119 void dump(const std::vector<Datatype>& dim_types, FILE* out) const { in dump() argument
126 ss << " > Non-empty domain: " << non_empty_domain_str(dim_types).c_str() in dump()
185 const std::vector<Datatype>& dim_types) const { in non_empty_domain_str() argument
187 for (uint32_t d = 0; d < (uint32_t)dim_types.size(); ++d) { in non_empty_domain_str()
188 switch (dim_types[d]) { in non_empty_domain_str()
262 if (d != (uint32_t)dim_types.size() - 1) in non_empty_domain_str()
H A Dfragment_info.cc811 const std::vector<Datatype>& dim_types) { in set_dim_info() argument
813 dim_types_ = dim_types; in set_dim_info()
/dports/databases/py-tiledb/tiledb-0.8.11/tiledb/
H A Ddataframe_.py341 dim_types = []
347 dim_types.append(ColumnInfo.from_values(values))
354 dim_types.append(ColumnInfo.from_dtype(np.dtype("uint64")))
356 dim_types.append(ColumnInfo.from_values(values))
361 if any(d.dtype in (np.bytes_, np.unicode_) for d in dim_types):
367 d0 = dim_types[0]
368 if not all(d0.dtype == d.dtype for d in dim_types[1:]):
380 ndim = len(dim_types)
402 dim_types[idx],
/dports/databases/tiledb/TileDB-2.5.2/test/src/
H A Dhelpers.h209 const std::vector<tiledb_datatype_t>& dim_types,
252 const std::vector<tiledb_datatype_t>& dim_types,
H A Dhelpers.cc261 const std::vector<tiledb_datatype_t>& dim_types, in create_array() argument
278 assert(dim_types.size() == dim_num); in create_array()
307 dim_types[i], in create_array()
358 const std::vector<tiledb_datatype_t>& dim_types, in create_array() argument
373 assert(dim_types.size() == dim_num); in create_array()
400 dim_types[i], in create_array()
H A Dunit-rtree.cc82 const std::vector<Datatype>& dim_types, in create_domain() argument
86 assert(dim_names.size() == dim_types.size()); in create_domain()
92 Dimension dim(dim_names[d], dim_types[d]); in create_domain()
/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/array_schema/
H A Darray_schema.h178 std::vector<Datatype> dim_types() const;
H A Darray_schema.cc315 std::vector<Datatype> ArraySchema::dim_types() const { in dim_types() function in tiledb::sm::ArraySchema
/dports/devel/gdb/gdb-11.1/gdb/
H A Df-lang.c1047 std::vector<struct type *> dim_types; in value_subarray() local
1049 dim_types.reserve (ndimensions); in value_subarray()
1053 dim_types.push_back (type); in value_subarray()
1116 struct type *dim_type = dim_types[ndimensions - (i + 1)]; in value_subarray()
/dports/science/conduit/conduit-0.8.0/src/libs/blueprint/
H A Dconduit_blueprint_mesh_utils.hpp148 ShapeType dim_types[4]; member
H A Dconduit_blueprint_mesh_utils.cpp189 num_embedded *= dim_types[di].embed_count; in get_num_embedded()
201 return dim_types[level < 0 ? dim : level]; in get_shape()
210 dim_types[base_type.dim] = base_type; in init()
213 dim_types[di] = ShapeType(dim_types[di + 1].embed_id); in init()
/dports/devel/py-pythran/pythran-0.11.0/pythran/types/
H A Dtypes.py523 dim_types = tuple(self.result[d] for d in node.slice.elts)
524 return self.builder.ExpressionType(et, (t,) + dim_types)
/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/storage_manager/
H A Dstorage_manager.cc1527 array_schema->dim_names(), array_schema->dim_types()); in get_fragment_info()