Searched refs:dtype_min (Results 1 – 10 of 10) sorted by relevance
/dports/databases/py-tiledb/tiledb-0.8.11/tiledb/ |
H A D | util.py | 14 dtype_min, dtype_max = tiledb.libtiledb.dtype_range(dim_info.dtype) 18 if np.issubdtype(dim_dtype, np.integer) and dtype_min < 0: 19 dtype_min = dtype_min + 1 23 name=name, domain=(dtype_min, dtype_max), dtype=dim_dtype, tile=1 29 dtype_min, dtype_max = tiledb.libtiledb.dtype_range(attr_info.dtype)
|
H A D | dataframe_.py | 251 dtype_min, dtype_max = tiledb.libtiledb.dtype_range(dim_info.dtype) 256 dim_min = np.datetime64(dtype_min, date_unit) 258 if np.uint64(dtype_max - dtype_min) > tile_max: 261 dim_min = dtype_min 265 if np.uint64(dtype_max - dtype_min) > tile_max:
|
H A D | libtiledb.pyx | 580 dtype_min, dtype_max = info.min, info.max 583 dtype_min, dtype_max = info.min, info.max 588 dtype_min = np.datetime64(info.min + 1, date_unit) 592 return (dtype_min, dtype_max) 2572 dtype_min, dtype_max = dtype_range(dtype) 2576 domain = (dtype_min, dtype_max) 2577 elif (domain[0] < dtype_min or domain[0] > dtype_max or 2578 domain[1] < dtype_min or domain[1] > dtype_max):
|
/dports/math/openlibm/openlibm-0.8.0/src/ |
H A D | s_lround.c | 53 static const type dtype_min = DTYPE_MIN - 0.5; variable 56 ((x) > dtype_min && (x) < dtype_max))
|
/dports/math/opensolaris-libm/opensolaris-libm-2017.01.31/usr/src/libm/src/m9x/ |
H A D | lroundf.c | 67 static const float dtype_min = LONG_MIN - 0.5; variable 80 if ((dtype_max - LONG_MAX != 0.5 || ((x) > dtype_min && (x) < dtype_max))) { in lroundf()
|
H A D | lround.c | 83 static const double dtype_min = LONG_MIN - 0.5; variable 96 if ((dtype_max - LONG_MAX != 0.5 || ((x) > dtype_min && (x) < dtype_max))) { in lround()
|
H A D | lroundl.c | 145 static const long double dtype_min = LONG_MIN - 0.5; variable 158 if ((dtype_max - LONG_MAX != 0.5 || ((x) > dtype_min && (x) < dtype_max))) { in lroundl()
|
/dports/databases/py-tiledb/tiledb-0.8.11/tiledb/tests/ |
H A D | common.py | 182 def dtype_min(dtype): function 202 dtype_min(dtype), high=dtype_max(dtype), size=size, dtype=dtype
|
/dports/devel/py-tinyarray/tinyarray-1.2.4/src/ |
H A D | array.cc | 1529 PyObject *array_from_arraylike(PyObject *in, Dtype *dtype, Dtype dtype_min, in array_from_arraylike() argument 1539 dt = Dtype(std::max(int(dtype_in), int(dtype_min))); in array_from_arraylike() 1574 if (find_type && int(dt) < int(dtype_min)) dt = dtype_min; in array_from_arraylike() 1614 if (int(dt) < int(dtype_min)) dt = dtype_min; in array_from_arraylike() 1651 dt = Dtype(std::max(int(dtype_in), int(dtype_min))); in array_from_arraylike()
|
H A D | array.hh | 154 Dtype dtype_min = Dtype(0),
|