Home
last modified time | relevance | path

Searched refs:handle_obj (Results 1 – 10 of 10) sorted by relevance

/dports/science/py-gpaw/gpaw-21.6.0/c/
H A Delpa.c8 elpa_t* unpack_handleptr(PyObject* handle_obj) in unpack_handleptr() argument
14 elpa_t unpack_handle(PyObject* handle_obj) in unpack_handle() argument
45 PyObject *handle_obj; in pyelpa_set() local
49 &handle_obj, in pyelpa_set()
97 PyObject *handle_obj; in pyelpa_allocate() local
109 PyObject *handle_obj; in pyelpa_setup() local
121 PyObject *handle_obj; in pyelpa_set_comm() local
149 PyObject *handle_obj; in pyelpa_diagonalize() local
173 PyObject *handle_obj; in pyelpa_general_diagonalize() local
212 PyObject *handle_obj; in pyelpa_hermitian_multiply() local
[all …]
/dports/net/mpich/mpich-3.4.3/src/mpid/ch4/shm/ipc/gpu/
H A Dgpu_post.c27 void **handle_obj) in ipc_handle_cache_search() argument
34 *handle_obj = NULL; in ipc_handle_cache_search()
153 MPIDI_GPU_ipc_handle_t *handle_obj = in MPIDI_GPU_ipc_handle_cache_insert() local
155 *handle_obj = handle; in MPIDI_GPU_ipc_handle_cache_insert()
165 MPL_free(handle_obj); in MPIDI_GPU_ipc_handle_cache_insert()
190 MPIDI_GPU_ipc_handle_t *handle_obj = NULL; in MPIDI_GPU_get_ipc_attr() local
206 if (handle_obj == NULL) { in MPIDI_GPU_get_ipc_attr()
274 if (handle_obj == NULL) { in MPIDI_GPU_ipc_handle_map()
283 handle_obj = in MPIDI_GPU_ipc_handle_map()
285 MPIR_Assert(handle_obj != NULL); in MPIDI_GPU_ipc_handle_map()
[all …]
H A Dgpu_init.c10 static void ipc_handle_cache_free(void *handle_obj) in ipc_handle_cache_free() argument
17 MPIDI_GPUI_handle_obj_s *handle_obj_ptr = (MPIDI_GPUI_handle_obj_s *) handle_obj; in ipc_handle_cache_free()
20 MPL_free(handle_obj); in ipc_handle_cache_free()
26 static void ipc_handle_status_free(void *handle_obj) in ipc_handle_status_free() argument
31 MPL_free(handle_obj); in ipc_handle_status_free()
/dports/www/py-dj32-django-cacheops/django-cacheops-6.0/cacheops/management/commands/
H A Dinvalidate.py22 self.handle_obj(*app_n_model)
37 def handle_obj(self, app_name, model_name, obj_pk): member in Command
/dports/www/py-django-cacheops/django-cacheops-6.0/cacheops/management/commands/
H A Dinvalidate.py22 self.handle_obj(*app_n_model)
37 def handle_obj(self, app_name, model_name, obj_pk): member in Command
/dports/devel/gdb/gdb-11.1/gdb/python/
H A Dpy-inferior.c782 PyObject *handle_obj; in infpy_thread_from_thread_handle() local
788 if (! gdb_PyArg_ParseTupleAndKeywords (args, kw, "O", keywords, &handle_obj)) in infpy_thread_from_thread_handle()
796 if (PyObject_CheckBuffer (handle_obj) in infpy_thread_from_thread_handle()
797 && PyObject_GetBuffer (handle_obj, &py_buf, PyBUF_SIMPLE) == 0) in infpy_thread_from_thread_handle()
803 else if (gdbpy_is_value_object (handle_obj)) in infpy_thread_from_thread_handle()
805 struct value *val = value_object_to_value (handle_obj); in infpy_thread_from_thread_handle()
/dports/www/node10/node-v10.24.1/deps/v8/src/wasm/
H A Dwasm-debug.cc545 Object* handle_obj = debug_info->interpreter_handle(); in GetInterpreterHandle() local
546 DCHECK(!handle_obj->IsUndefined(debug_info->GetIsolate())); in GetInterpreterHandle()
547 return Managed<wasm::InterpreterHandle>::cast(handle_obj)->raw(); in GetInterpreterHandle()
551 Object* handle_obj = debug_info->interpreter_handle(); in GetInterpreterHandleOrNull() local
552 if (handle_obj->IsUndefined(debug_info->GetIsolate())) return nullptr; in GetInterpreterHandleOrNull()
553 return Managed<wasm::InterpreterHandle>::cast(handle_obj)->raw(); in GetInterpreterHandleOrNull()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/wasm/
H A Dwasm-debug.cc1046 Object handle_obj = debug_info.interpreter_handle(); in GetInterpreterHandle() local
1047 DCHECK(!handle_obj.IsUndefined()); in GetInterpreterHandle()
1048 return Managed<wasm::InterpreterHandle>::cast(handle_obj).raw(); in GetInterpreterHandle()
1052 Object handle_obj = debug_info.interpreter_handle(); in GetInterpreterHandleOrNull() local
1053 if (handle_obj.IsUndefined()) return nullptr; in GetInterpreterHandleOrNull()
1054 return Managed<wasm::InterpreterHandle>::cast(handle_obj).raw(); in GetInterpreterHandleOrNull()
/dports/textproc/py-xlrd/xlrd-2.0.1/xlrd/
H A Dsheet.py1116 saved_obj = self.handle_obj(data)
1907 def handle_obj(self, data): member in Sheet
H A Dbook.py1079 def handle_obj(self, data): member in Book