Home
last modified time | relevance | path

Searched refs:array_obj (Results 1 – 5 of 5) sorted by relevance

/external/llvm/test/Transforms/RewriteStatepointsForGC/
Dbase-pointers-8.ll3 ; CHECK: derived %next_element_ptr base %array_obj
5 define i32 @null_in_array(i64 addrspace(1)* %array_obj) gc "statepoint-example" {
7 %array_len_pointer.i64 = getelementptr i64, i64 addrspace(1)* %array_obj, i32 1
/external/llvm-project/llvm/test/Transforms/RewriteStatepointsForGC/
Dbase-pointers-8.ll4 ; CHECK: derived %next_element_ptr base %array_obj
6 define i32 @null_in_array(i64 addrspace(1)* %array_obj) gc "statepoint-example" {
8 %array_len_pointer.i64 = getelementptr i64, i64 addrspace(1)* %array_obj, i32 1
/external/tensorflow/tensorflow/python/lib/core/
Dpy_func.cc130 PyArrayObject* array_obj = reinterpret_cast<PyArrayObject*>(obj); in IsSingleNone() local
131 if (PyArray_NDIM(array_obj) != 0 || PyArray_SIZE(array_obj) != 1) { in IsSingleNone()
136 static_cast<char*>(PyArray_GetPtr(array_obj, indices.data())); in IsSingleNone()
137 PyObject* item = PyArray_GETITEM(array_obj, item_ptr); in IsSingleNone()
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c331 struct gl_vertex_array_object *array_obj; in _mesa_meta_setup_vertex_objects() local
338 array_obj = _mesa_lookup_vao(ctx, *VAO); in _mesa_meta_setup_vertex_objects()
339 assert(array_obj != NULL); in _mesa_meta_setup_vertex_objects()
354 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_GENERIC(0), in _mesa_meta_setup_vertex_objects()
358 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_GENERIC(0), in _mesa_meta_setup_vertex_objects()
361 _mesa_enable_vertex_array_attrib(ctx, array_obj, in _mesa_meta_setup_vertex_objects()
364 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_GENERIC(1), in _mesa_meta_setup_vertex_objects()
368 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_GENERIC(1), in _mesa_meta_setup_vertex_objects()
371 _mesa_enable_vertex_array_attrib(ctx, array_obj, in _mesa_meta_setup_vertex_objects()
375 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_POS, in _mesa_meta_setup_vertex_objects()
[all …]
/external/python/cpython3/Modules/
Darraymodule.c1892 PyObject *array_obj; in make_array() local
1911 array_obj = array_new(arraytype, new_args, NULL); in make_array()
1913 if (array_obj == NULL) in make_array()
1916 return array_obj; in make_array()