Home
last modified time | relevance | path

Searched refs:smaller_than_func_ (Results 1 – 2 of 2) sorted by relevance

/dports/databases/tiledb/TileDB-2.5.2/tiledb/sm/array_schema/
H A Ddimension.cc116 smaller_than_func_ = dim->smaller_than_func_; in Dimension()
1335 assert(smaller_than_func_ != nullptr); in smaller_than()
1336 return smaller_than_func_(this, value, range); in smaller_than()
3339 smaller_than_func_ = smaller_than<int32_t>; in set_smaller_than_func()
3342 smaller_than_func_ = smaller_than<int64_t>; in set_smaller_than_func()
3345 smaller_than_func_ = smaller_than<int8_t>; in set_smaller_than_func()
3348 smaller_than_func_ = smaller_than<uint8_t>; in set_smaller_than_func()
3363 smaller_than_func_ = smaller_than<float>; in set_smaller_than_func()
3366 smaller_than_func_ = smaller_than<double>; in set_smaller_than_func()
3393 smaller_than_func_ = smaller_than<char>; in set_smaller_than_func()
[all …]
H A Ddimension.h1008 smaller_than_func_; variable