Searched refs:arraytype (Results 1 – 5 of 5) sorted by relevance
/external/llvm/test/Transforms/GlobalOpt/ |
D | 2005-09-27-Crash.ll | 2 %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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GlobalOpt/ |
D | 2005-09-27-Crash.ll | 2 %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/swiftshader/third_party/LLVM/test/Transforms/GlobalOpt/ |
D | 2005-09-27-Crash.ll | 2 %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/ |
D | arraymodule.c.h | 449 array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype, 458 PyTypeObject *arraytype; in array__array_reconstructor() local 464 &arraytype, &typecode, &mformat_code, &items)) { in array__array_reconstructor() 467 … return_value = array__array_reconstructor_impl(module, arraytype, typecode, mformat_code, items); in array__array_reconstructor()
|
/external/python/cpython3/Modules/ |
D | arraymodule.c | 1922 make_array(PyTypeObject *arraytype, char typecode, PyObject *items) in make_array() argument 1928 assert(arraytype != NULL); in make_array() 1944 array_obj = array_new(arraytype, new_args, NULL); in make_array() 1969 array__array_reconstructor_impl(PyObject *module, PyTypeObject *arraytype, in array__array_reconstructor_impl() argument 1979 if (!PyType_Check(arraytype)) { in array__array_reconstructor_impl() 1982 Py_TYPE(arraytype)->tp_name); in array__array_reconstructor_impl() 1985 if (!PyType_IsSubtype(arraytype, &Arraytype)) { in array__array_reconstructor_impl() 1988 arraytype->tp_name, Arraytype.tp_name); in array__array_reconstructor_impl() 2016 return make_array(arraytype, (char)typecode, items); in array__array_reconstructor_impl() 2162 result = make_array(arraytype, (char)typecode, converted_items); in array__array_reconstructor_impl()
|