Home
last modified time | relevance | path

Searched refs:arraytype (Results 1 – 4 of 4) sorted by relevance

/external/llvm/test/Transforms/GlobalOpt/
D2005-09-27-Crash.ll2 %RPyString = type { i32, %arraytype.Char }
3 %arraytype.Char = type { i32, [0 x i8] }
4 %arraytype.Signed = type { i32, [0 x i32] }
6 %structtype.test = type { i32, %arraytype.Signed }
/external/llvm-project/llvm/test/Transforms/GlobalOpt/
D2005-09-27-Crash.ll2 %RPyString = type { i32, %arraytype.Char }
3 %arraytype.Char = type { i32, [0 x i8] }
4 %arraytype.Signed = type { i32, [0 x i32] }
6 %structtype.test = type { i32, %arraytype.Signed }
/external/python/cpython3/Modules/clinic/
Darraymodule.c.h456 array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype,
465 PyTypeObject *arraytype; in array__array_reconstructor() local
473 arraytype = (PyTypeObject *)args[0]; in array__array_reconstructor()
496 … return_value = array__array_reconstructor_impl(module, arraytype, typecode, mformat_code, items); in array__array_reconstructor()
/external/python/cpython3/Modules/
Darraymodule.c1889 make_array(PyTypeObject *arraytype, char typecode, PyObject *items) in make_array() argument
1895 assert(arraytype != NULL); in make_array()
1911 array_obj = array_new(arraytype, new_args, NULL); in make_array()
1936 array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype, in array__array_reconstructor_impl() argument
1946 if (!PyType_Check(arraytype)) { in array__array_reconstructor_impl()
1949 Py_TYPE(arraytype)->tp_name); in array__array_reconstructor_impl()
1952 if (!PyType_IsSubtype(arraytype, &Arraytype)) { in array__array_reconstructor_impl()
1955 arraytype->tp_name, Arraytype.tp_name); in array__array_reconstructor_impl()
1983 return make_array(arraytype, (char)typecode, items); in array__array_reconstructor_impl()
2129 result = make_array(arraytype, (char)typecode, converted_items); in array__array_reconstructor_impl()