Lines Matching refs:mformat_code
1971 enum machine_format_code mformat_code, in array__array_reconstructor_impl() argument
2000 if (mformat_code < MACHINE_FORMAT_CODE_MIN || in array__array_reconstructor_impl()
2001 mformat_code > MACHINE_FORMAT_CODE_MAX) { in array__array_reconstructor_impl()
2014 if (mformat_code == typecode_to_mformat_code((char)typecode) || in array__array_reconstructor_impl()
2015 mformat_code == UNKNOWN_FORMAT) { in array__array_reconstructor_impl()
2024 if (Py_SIZE(items) % mformat_descriptors[mformat_code].size != 0) { in array__array_reconstructor_impl()
2029 switch (mformat_code) { in array__array_reconstructor_impl()
2033 int le = (mformat_code == IEEE_754_FLOAT_LE) ? 1 : 0; in array__array_reconstructor_impl()
2055 int le = (mformat_code == IEEE_754_DOUBLE_LE) ? 1 : 0; in array__array_reconstructor_impl()
2076 int byteorder = (mformat_code == UTF16_LE) ? -1 : 1; in array__array_reconstructor_impl()
2086 int byteorder = (mformat_code == UTF32_LE) ? -1 : 1; in array__array_reconstructor_impl()
2111 mformat_descriptors[mformat_code]; in array__array_reconstructor_impl()
2184 int mformat_code; in array_array___reduce_ex__() local
2219 mformat_code = typecode_to_mformat_code(typecode); in array_array___reduce_ex__()
2220 if (mformat_code == UNKNOWN_FORMAT || protocol < 3) { in array_array___reduce_ex__()
2252 mformat_code, array_str, dict); in array_array___reduce_ex__()