Home
last modified time | relevance | path

Searched refs:format_by_dtype (Results 1 – 3 of 3) sorted by relevance

/dports/devel/py-tinyarray/tinyarray-1.2.4/src/
H A Darray.cc37 Format format_by_dtype[NONE]; variable
1400 format_by_dtype[int(DOUBLE)] = Format(FLOAT64_LE + be); in MOD_INIT_FUNC()
1401 format_by_dtype[int(COMPLEX)] = Format(COMPLEX128_LE + be); in MOD_INIT_FUNC()
1403 format_by_dtype[int(DOUBLE)] = UNKNOWN; in MOD_INIT_FUNC()
1404 format_by_dtype[int(COMPLEX)] = UNKNOWN; in MOD_INIT_FUNC()
1407 format_by_dtype[int(LONG)] = Format(INT64_LE + be); in MOD_INIT_FUNC()
1409 format_by_dtype[int(LONG)] = Format(INT32_LE + be); in MOD_INIT_FUNC()
1411 format_by_dtype[int(LONG)] = UNKNOWN; in MOD_INIT_FUNC()
1822 PyObject *format = PyInt_FromLong(format_by_dtype[int(get_dtype(self_))]); in reduce()
H A Darray.hh34 extern Format format_by_dtype[];
H A Dfunctions.cc73 if (format_by_dtype[int(dtype)] == format) break; in reconstruct()