Home
last modified time | relevance | path

Searched refs:native_id (Results 1 – 25 of 194) sorted by relevance

12345678

/dports/science/ALPSCore/ALPSCore-2.2.0/hdf5/src/
H A Darchive_read_scalar_helpers.cpp22 …_data_helper_impl(T & value, data_type const &data_id, type_type const &native_id, std::true_type)… in hdf5_read_scalar_data_helper_impl() argument
24 H5Tequal(type_type(H5Tcopy(native_id)), type_type(get_native_type(U()))) in hdf5_read_scalar_data_helper_impl()
27 check_error(H5Dread(data_id, native_id, H5S_ALL, H5S_ALL, H5P_DEFAULT, &u)); in hdf5_read_scalar_data_helper_impl()
33 native_id, in hdf5_read_scalar_data_helper_impl()
40 …ool hdf5_read_scalar_data_helper(T & value, data_type const &data_id, type_type const &native_id) { in hdf5_read_scalar_data_helper() argument
41 …ar_data_helper_impl<T, ALPS_HDF5_NATIVE_INTEGRAL_TYPES>(value, data_id, native_id, std::true_type(… in hdf5_read_scalar_data_helper()
55 H5Tequal(type_type(H5Tcopy(native_id)), type_type(get_native_type(U()))) in hdf5_read_scalar_attribute_helper_impl()
58 check_error(H5Aread(attribute_id, native_id, &u)); in hdf5_read_scalar_attribute_helper_impl()
64 native_id, in hdf5_read_scalar_attribute_helper_impl()
71 …calar_attribute_helper(T & value, attribute_type const &attribute_id, type_type const &native_id) { in hdf5_read_scalar_attribute_helper() argument
[all …]
H A Darchive_read.cpp52 detail::type_type native_id(H5Tget_native_type(type_id, H5T_DIR_ASCEND)); in read() local
57 } else if (H5Tget_class(native_id) == H5T_STRING) { in read()
62 } else if(detail::hdf5_read_scalar_data_helper(value, data_id, native_id)) { in read()
77 detail::type_type native_id(H5Tget_native_type(type_id, H5T_DIR_ASCEND)); in read() local
80 detail::check_error(H5Aread(attribute_id, native_id, &raw[0])); in read()
82 } else if (H5Tget_class(native_id) == H5T_STRING) { in read()
84 detail::check_error(H5Aread(attribute_id, native_id, &raw)); in read()
122 else if (H5Tget_class(native_id) == H5T_STRING) { in read()
160 else if (H5Tget_class(native_id) == H5T_STRING) { in read()
171 } else if (H5Tget_class(native_id) == H5T_STRING) { in read()
[all …]
H A Darchive_read_vector_data_helper.cpp23 … hdf5_read_vector_data_helper_impl(T * value, data_type const &data_id, type_type const &native_id, in hdf5_read_vector_data_helper_impl() argument
29 H5Tequal(type_type(H5Tcopy(native_id)), type_type(get_native_type(U()))) in hdf5_read_vector_data_helper_impl()
36 … check_error(H5Dread(data_id, native_id, H5S_ALL, H5S_ALL, H5P_DEFAULT, raw.get())); in hdf5_read_vector_data_helper_impl()
44 … check_error(H5Dread(data_id, native_id, mem_id, space_id, H5P_DEFAULT, raw.get())); in hdf5_read_vector_data_helper_impl()
51 native_id, in hdf5_read_vector_data_helper_impl()
66 … bool hdf5_read_vector_data_helper(T * value, data_type const &data_id, type_type const &native_id, in hdf5_read_vector_data_helper() argument
72native_id, in hdf5_read_vector_data_helper()
H A Darchive_read_vector_attribute_helper.cpp23 …std::string const &path, T * value, attribute_type const &attribute_id, type_type const &native_id, in hdf5_read_vector_attribute_helper_impl() argument
28 H5Tequal(type_type(H5Tcopy(native_id)), type_type(get_native_type(U()))) in hdf5_read_vector_attribute_helper_impl()
35 check_error(H5Aread(attribute_id, native_id, raw.get())); in hdf5_read_vector_attribute_helper_impl()
44 native_id, in hdf5_read_vector_attribute_helper_impl()
57 …std::string const &path, T * value, attribute_type const &attribute_id, type_type const &native_id, in hdf5_read_vector_attribute_helper() argument
63native_id, in hdf5_read_vector_attribute_helper()
H A Darchive_free.cpp89 static bool apply(type_type const & native_id) { in apply()
91 …H5Tequal(type_type(H5Tcopy(native_id)), type_type(get_native_type(typename alps::detail::type_wrap… in apply()
96 static bool apply(type_type const & native_id) { in apply()
97 return H5Tget_class(native_id) == H5T_STRING; in apply()
117 detail::type_type native_id(H5Tget_native_type(type_id, H5T_DIR_ASCEND)); in is_datatype_impl() local
121 return detail::is_datatype_impl_compare< T >::apply(native_id); in is_datatype_impl()
/dports/x11-wm/e16/e16-1.0.24/src/
H A Dcursors.c48 int native_id; member
109 ECursorCreate(const char *name, const char *image, int native_id, in ECursorCreate() argument
114 if ((!name) || (!image && native_id == -1)) in ECursorCreate()
126 ec->native_id = native_id; in ECursorCreate()
198 ec->cursor = (ec->native_id == 999) ? in ECursorRealize()
199 None : XCreateFontCursor(disp, ec->native_id); in ECursorRealize()
266 int native_id = -1; in ECursorConfigLoad() local
286 native_id = -1; in ECursorConfigLoad()
289 ECursorCreate(pname, pfile, native_id, clr, clr2); in ECursorConfigLoad()
317 native_id = atoi(s2); in ECursorConfigLoad()
/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dthread_pthread.h329 uint64_t native_id; in PyThread_get_thread_native_id() local
332 pid_t native_id; in PyThread_get_thread_native_id() local
333 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
335 int native_id; in PyThread_get_thread_native_id() local
338 pid_t native_id; in PyThread_get_thread_native_id() local
339 native_id = getthrid(); in PyThread_get_thread_native_id()
341 tid_t native_id; in PyThread_get_thread_native_id() local
342 native_id = thread_self(); in PyThread_get_thread_native_id()
344 lwpid_t native_id; in PyThread_get_thread_native_id() local
345 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dthread_pthread.h329 uint64_t native_id; in PyThread_get_thread_native_id() local
332 pid_t native_id; in PyThread_get_thread_native_id() local
333 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
335 int native_id; in PyThread_get_thread_native_id() local
338 pid_t native_id; in PyThread_get_thread_native_id() local
339 native_id = getthrid(); in PyThread_get_thread_native_id()
341 tid_t native_id; in PyThread_get_thread_native_id() local
342 native_id = thread_self(); in PyThread_get_thread_native_id()
344 lwpid_t native_id; in PyThread_get_thread_native_id() local
345 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dthread_pthread.h329 uint64_t native_id; in PyThread_get_thread_native_id() local
332 pid_t native_id; in PyThread_get_thread_native_id() local
333 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
335 int native_id; in PyThread_get_thread_native_id() local
338 pid_t native_id; in PyThread_get_thread_native_id() local
339 native_id = getthrid(); in PyThread_get_thread_native_id()
341 tid_t native_id; in PyThread_get_thread_native_id() local
342 native_id = thread_self(); in PyThread_get_thread_native_id()
344 lwpid_t native_id; in PyThread_get_thread_native_id() local
345 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/lang/python38/Python-3.8.12/Python/
H A Dthread_pthread.h329 uint64_t native_id; in PyThread_get_thread_native_id() local
332 pid_t native_id; in PyThread_get_thread_native_id() local
333 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
335 int native_id; in PyThread_get_thread_native_id() local
338 pid_t native_id; in PyThread_get_thread_native_id() local
339 native_id = getthrid(); in PyThread_get_thread_native_id()
341 tid_t native_id; in PyThread_get_thread_native_id() local
342 native_id = thread_self(); in PyThread_get_thread_native_id()
344 lwpid_t native_id; in PyThread_get_thread_native_id() local
345 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Python/
H A Dthread_pthread.h329 uint64_t native_id; in PyThread_get_thread_native_id() local
332 pid_t native_id; in PyThread_get_thread_native_id() local
333 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
335 int native_id; in PyThread_get_thread_native_id() local
338 pid_t native_id; in PyThread_get_thread_native_id() local
339 native_id = getthrid(); in PyThread_get_thread_native_id()
341 tid_t native_id; in PyThread_get_thread_native_id() local
342 native_id = thread_self(); in PyThread_get_thread_native_id()
344 lwpid_t native_id; in PyThread_get_thread_native_id() local
345 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dthread_pthread.h336 uint64_t native_id; in PyThread_get_thread_native_id() local
339 pid_t native_id; in PyThread_get_thread_native_id() local
340 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
342 int native_id; in PyThread_get_thread_native_id() local
345 pid_t native_id; in PyThread_get_thread_native_id() local
346 native_id = getthrid(); in PyThread_get_thread_native_id()
348 tid_t native_id; in PyThread_get_thread_native_id() local
349 native_id = thread_self(); in PyThread_get_thread_native_id()
351 lwpid_t native_id; in PyThread_get_thread_native_id() local
352 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/lang/python39/Python-3.9.9/Python/
H A Dthread_pthread.h342 uint64_t native_id; in PyThread_get_thread_native_id() local
345 pid_t native_id; in PyThread_get_thread_native_id() local
346 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
348 int native_id; in PyThread_get_thread_native_id() local
351 pid_t native_id; in PyThread_get_thread_native_id() local
352 native_id = getthrid(); in PyThread_get_thread_native_id()
354 tid_t native_id; in PyThread_get_thread_native_id() local
355 native_id = thread_self(); in PyThread_get_thread_native_id()
357 lwpid_t native_id; in PyThread_get_thread_native_id() local
358 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/lang/python310/Python-3.10.1/Python/
H A Dthread_pthread.h345 uint64_t native_id; in PyThread_get_thread_native_id() local
348 pid_t native_id; in PyThread_get_thread_native_id() local
349 native_id = syscall(SYS_gettid); in PyThread_get_thread_native_id()
351 int native_id; in PyThread_get_thread_native_id() local
354 pid_t native_id; in PyThread_get_thread_native_id() local
355 native_id = getthrid(); in PyThread_get_thread_native_id()
357 tid_t native_id; in PyThread_get_thread_native_id() local
358 native_id = thread_self(); in PyThread_get_thread_native_id()
360 lwpid_t native_id; in PyThread_get_thread_native_id() local
361 native_id = _lwp_self(); in PyThread_get_thread_native_id()
[all …]
/dports/sysutils/bareos-client/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/cdmi/
H A Dbackend.c1448 char* native_id = NULL; in dpl_cdmi_put_id() local
1464 native_id); in dpl_cdmi_put_id()
1472 if (NULL != native_id) free(native_id); in dpl_cdmi_put_id()
1514 native_id); in dpl_cdmi_get_id()
1522 if (NULL != native_id) free(native_id); in dpl_cdmi_get_id()
1561 native_id); in dpl_cdmi_head_id()
1568 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id()
1606 native_id); in dpl_cdmi_head_id_raw()
1613 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id_raw()
1650 native_id); in dpl_cdmi_delete_id()
[all …]
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/cdmi/
H A Dbackend.c1448 char* native_id = NULL; in dpl_cdmi_put_id() local
1464 native_id); in dpl_cdmi_put_id()
1472 if (NULL != native_id) free(native_id); in dpl_cdmi_put_id()
1514 native_id); in dpl_cdmi_get_id()
1522 if (NULL != native_id) free(native_id); in dpl_cdmi_get_id()
1561 native_id); in dpl_cdmi_head_id()
1568 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id()
1606 native_id); in dpl_cdmi_head_id_raw()
1613 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id_raw()
1650 native_id); in dpl_cdmi_delete_id()
[all …]
/dports/sysutils/bareos-server/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/cdmi/
H A Dbackend.c1448 char* native_id = NULL; in dpl_cdmi_put_id() local
1464 native_id); in dpl_cdmi_put_id()
1472 if (NULL != native_id) free(native_id); in dpl_cdmi_put_id()
1514 native_id); in dpl_cdmi_get_id()
1522 if (NULL != native_id) free(native_id); in dpl_cdmi_get_id()
1561 native_id); in dpl_cdmi_head_id()
1568 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id()
1606 native_id); in dpl_cdmi_head_id_raw()
1613 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id_raw()
1650 native_id); in dpl_cdmi_delete_id()
[all …]
/dports/www/bareos-webui/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/cdmi/
H A Dbackend.c1448 char* native_id = NULL; in dpl_cdmi_put_id() local
1464 native_id); in dpl_cdmi_put_id()
1472 if (NULL != native_id) free(native_id); in dpl_cdmi_put_id()
1514 native_id); in dpl_cdmi_get_id()
1522 if (NULL != native_id) free(native_id); in dpl_cdmi_get_id()
1561 native_id); in dpl_cdmi_head_id()
1568 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id()
1606 native_id); in dpl_cdmi_head_id_raw()
1613 if (NULL != native_id) free(native_id); in dpl_cdmi_head_id_raw()
1650 native_id); in dpl_cdmi_delete_id()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/glmark2/src/src/
H A Dgl-state-glx.cpp137 int native_id; in gotNativeConfig() local
138 if (glXGetFBConfigAttrib(xdpy_, glx_fbconfig_, GLX_VISUAL_ID, &native_id) != Success) in gotNativeConfig()
144 vid = native_id; in gotNativeConfig()
243 int buf, red, green, blue, alpha, depth, stencil, id, native_id; in ensure_glx_fbconfig() local
245 glXGetFBConfigAttrib(xdpy_, glx_fbconfig_, GLX_VISUAL_ID, &native_id); in ensure_glx_fbconfig()
261 id, native_id, in ensure_glx_fbconfig()
/dports/benchmarks/glmark2/glmark2-2021.12/src/
H A Dgl-state-glx.cpp152 int native_id; in gotNativeConfig() local
153 if (glXGetFBConfigAttrib(xdpy_, glx_fbconfig_, GLX_VISUAL_ID, &native_id) != Success) in gotNativeConfig()
159 vid = native_id; in gotNativeConfig()
258 int buf, red, green, blue, alpha, depth, stencil, id, native_id; in ensure_glx_fbconfig() local
260 glXGetFBConfigAttrib(xdpy_, glx_fbconfig_, GLX_VISUAL_ID, &native_id); in ensure_glx_fbconfig()
276 id, native_id, in ensure_glx_fbconfig()
/dports/x11-toolkits/gtk-sharp30/gtk-sharp-2.99.3/gtk/
H A DStock.cs58 IntPtr native_id = GLib.Marshaller.StringToPtrGStrdup (stock_id); in Lookup()
59 bool result = gtk_stock_lookup (native_id, out const_item); in Lookup()
60 GLib.Marshaller.Free (native_id); in Lookup()
H A DStockManager.cs64 IntPtr native_id = GLib.Marshaller.StringToPtrGStrdup (stock_id); in Lookup()
65 bool found = gtk_stock_lookup (native_id, out const_item); in Lookup()
66 GLib.Marshaller.Free (native_id); in Lookup()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/media/webrtc/
H A Dnative_desktop_media_list_unittest.cc234 int native_id = reinterpret_cast<DesktopMediaID::Id>(widget); in RemoveAuraWindow() local
236 int native_id = widget; in RemoveAuraWindow() local
243 if (window_list_[i].id == native_id) in RemoveAuraWindow()
248 native_aura_id_map_.erase(native_id); in RemoveAuraWindow()
310 int native_id = window_list_[index].id; in AddWindowsAndVerify() local
311 EXPECT_EQ(model_->GetSource(i).id.id, native_id); in AddWindowsAndVerify()
315 native_aura_id_map_[native_id]); in AddWindowsAndVerify()
406 int native_id = window_list_.back().id; in TEST_F() local
408 EXPECT_EQ(model_->GetSource(index).id.id, native_id); in TEST_F()
410 native_aura_id_map_[native_id]); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/browser/media/webrtc/
H A Dnative_desktop_media_list_unittest.cc234 int native_id = reinterpret_cast<DesktopMediaID::Id>(widget); in RemoveAuraWindow() local
236 int native_id = widget; in RemoveAuraWindow() local
243 if (window_list_[i].id == native_id) in RemoveAuraWindow()
248 native_aura_id_map_.erase(native_id); in RemoveAuraWindow()
310 int native_id = window_list_[index].id; in AddWindowsAndVerify() local
311 EXPECT_EQ(model_->GetSource(i).id.id, native_id); in AddWindowsAndVerify()
315 native_aura_id_map_[native_id]); in AddWindowsAndVerify()
406 int native_id = window_list_.back().id; in TEST_F() local
408 EXPECT_EQ(model_->GetSource(index).id.id, native_id); in TEST_F()
410 native_aura_id_map_[native_id]); in TEST_F()
/dports/x11-toolkits/gtk-sharp20/gtk-sharp-2.12.45/gtk/
H A DStockManager.cs64 IntPtr native_id = GLib.Marshaller.StringToPtrGStrdup (stock_id); in Lookup()
65 bool found = gtk_stock_lookup (native_id, out const_item); in Lookup()
66 GLib.Marshaller.Free (native_id); in Lookup()

12345678