Home
last modified time | relevance | path

Searched refs:array_obj (Results 1 – 4 of 4) 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/mesa3d/src/mesa/drivers/common/
Dmeta.c305 struct gl_vertex_array_object *array_obj; in _mesa_meta_setup_vertex_objects() local
312 array_obj = _mesa_lookup_vao(ctx, *VAO); in _mesa_meta_setup_vertex_objects()
313 assert(array_obj != NULL); in _mesa_meta_setup_vertex_objects()
327 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_GENERIC(0), in _mesa_meta_setup_vertex_objects()
331 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_GENERIC(0), in _mesa_meta_setup_vertex_objects()
333 _mesa_enable_vertex_array_attrib(ctx, array_obj, in _mesa_meta_setup_vertex_objects()
336 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_GENERIC(1), in _mesa_meta_setup_vertex_objects()
340 _mesa_bind_vertex_buffer(ctx, array_obj, VERT_ATTRIB_GENERIC(1), in _mesa_meta_setup_vertex_objects()
342 _mesa_enable_vertex_array_attrib(ctx, array_obj, in _mesa_meta_setup_vertex_objects()
346 _mesa_update_array_format(ctx, array_obj, VERT_ATTRIB_POS, in _mesa_meta_setup_vertex_objects()
[all …]
/external/tensorflow/tensorflow/python/lib/core/
Dpy_func.cc153 PyArrayObject* array_obj = reinterpret_cast<PyArrayObject*>(obj); in IsSingleNone() local
154 if (PyArray_NDIM(array_obj) != 0 || PyArray_SIZE(array_obj) != 1) { in IsSingleNone()
159 static_cast<char*>(PyArray_GetPtr(array_obj, indices.data())); in IsSingleNone()
160 PyObject* item = PyArray_GETITEM(array_obj, item_ptr); in IsSingleNone()
/external/python/cpython3/Modules/
Darraymodule.c1861 PyObject *array_obj; in make_array() local
1878 array_obj = array_new(arraytype, new_args, NULL); in make_array()
1880 if (array_obj == NULL) in make_array()
1883 return array_obj; in make_array()