| /OK3568_Linux_fs/kernel/drivers/vfio/ |
| H A D | vfio_iommu_spapr_tce.c | 73 static long tce_iommu_mm_set(struct tce_container *container) in tce_iommu_mm_set() argument 75 if (container->mm) { in tce_iommu_mm_set() 76 if (container->mm == current->mm) in tce_iommu_mm_set() 81 container->mm = current->mm; in tce_iommu_mm_set() 82 mmgrab(container->mm); in tce_iommu_mm_set() 87 static long tce_iommu_prereg_free(struct tce_container *container, in tce_iommu_prereg_free() argument 92 ret = mm_iommu_put(container->mm, tcemem->mem); in tce_iommu_prereg_free() 102 static long tce_iommu_unregister_pages(struct tce_container *container, in tce_iommu_unregister_pages() argument 113 mem = mm_iommu_get(container->mm, vaddr, size >> PAGE_SHIFT); in tce_iommu_unregister_pages() 117 list_for_each_entry(tcemem, &container->prereg_list, next) { in tce_iommu_unregister_pages() [all …]
|
| H A D | vfio.c | 75 struct vfio_container *container; member 282 static void vfio_container_get(struct vfio_container *container) in vfio_container_get() argument 284 kref_get(&container->kref); in vfio_container_get() 289 struct vfio_container *container; in vfio_container_release() local 290 container = container_of(kref, struct vfio_container, kref); in vfio_container_release() 292 kfree(container); in vfio_container_release() 295 static void vfio_container_put(struct vfio_container *container) in vfio_container_put() argument 297 kref_put(&container->kref, vfio_container_release); in vfio_container_put() 958 wait_event(group->container_q, !group->container); in vfio_unregister_group_dev() 980 static long vfio_ioctl_check_extension(struct vfio_container *container, in vfio_ioctl_check_extension() argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/ |
| H A D | advanced_insert_int.hpp | 44 namespace boost { namespace container { namespace container_detail { namespace 58 this->first_ = ::boost::container::uninitialized_move_alloc_n_source in uninitialized_copy_n_and_update() 64 this->first_ = ::boost::container::move_n_source(this->first_, n, p); in copy_n_and_update() 83 this->first_ = ::boost::container::uninitialized_copy_alloc_n_source(a, this->first_, n, p); in uninitialized_copy_n_and_update() 88 this->first_ = ::boost::container::copy_n_source(this->first_, n, p); in copy_n_and_update() 106 { boost::container::uninitialized_fill_alloc_n(a, v_, n, p); } in uninitialized_copy_n_and_update() 121 typedef ::boost::container::allocator_traits<Allocator> alloc_traits; 126 { boost::container::uninitialized_value_init_alloc_n(a, n, p); } in uninitialized_copy_n_and_update() 135 typedef ::boost::container::allocator_traits<Allocator> alloc_traits; 140 { boost::container::uninitialized_default_init_alloc_n(a, n, p); } in uninitialized_copy_n_and_update() [all …]
|
| H A D | copy_move_algo.hpp | 40 namespace container { namespace 92 namespace container { namespace 103 struct are_elements_contiguous<boost::container::container_detail::vector_iterator<Pointer> > 109 struct are_elements_contiguous<boost::container::container_detail::vector_const_iterator<Pointer> > 131 …, is_same< typename remove_const< typename ::boost::container::iterator_traits<I>::value_type >::t… 132 , typename ::boost::container::iterator_traits<O>::value_type 141 …, container_detail::is_trivially_copy_assignable< typename ::boost::container::iterator_traits<I>:… 149 …, container_detail::is_trivially_copy_constructible< typename ::boost::container::iterator_traits<… 178 typedef typename boost::container::iterator_traits<I>::value_type value_type; in memmove() 179 …typename boost::container::iterator_traits<I>::difference_type n = boost::container::iterator_dist… in memmove() [all …]
|
| H A D | destroyers.hpp | 32 namespace container { namespace 43 boost::container::container_detail:: 84 typedef boost::container::allocator_traits<Allocator> AllocTraits; 106 typedef boost::container::allocator_traits<Allocator> AllocTraits; 128 typedef boost::container::allocator_traits<Allocator> AllocTraits; 142 typedef boost::container::allocator_traits<Allocator> AllocTraits; 146 boost::container::container_detail:: 181 typedef boost::container::allocator_traits<Allocator> AllocTraits; 222 typedef boost::container::allocator_traits<Allocator> AllocTraits; 245 typedef boost::container::allocator_traits<Allocator> AllocTraits; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/display/dc/basics/ |
| H A D | vector.c | 37 vector->container = NULL; in dal_vector_construct() 45 vector->container = kcalloc(capacity, struct_size, GFP_KERNEL); in dal_vector_construct() 46 if (vector->container == NULL) in dal_vector_construct() 64 vector->container = NULL; in dal_vector_presized_costruct() 72 vector->container = kcalloc(count, struct_size, GFP_KERNEL); in dal_vector_presized_costruct() 74 if (vector->container == NULL) in dal_vector_presized_costruct() 83 vector->container + i * struct_size, in dal_vector_presized_costruct() 135 kfree(vector->container); in dal_vector_destruct() 160 if (vector->container == NULL || index >= vector->count) in dal_vector_at_index() 162 return vector->container + (index * vector->struct_size); in dal_vector_at_index() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/aacraid/ |
| H A D | commsup.c | 1066 u32 channel, id, lun, container; in aac_handle_aif() local 1079 container = channel = id = lun = (u32)-1; in aac_handle_aif() 1091 container = le32_to_cpu(((__le32 *)aifcmd->data)[1]); in aac_handle_aif() 1092 if ((container >> 28)) { in aac_handle_aif() 1093 container = (u32)-1; in aac_handle_aif() 1096 channel = (container >> 24) & 0xF; in aac_handle_aif() 1098 container = (u32)-1; in aac_handle_aif() 1101 id = container & 0xFFFF; in aac_handle_aif() 1103 container = (u32)-1; in aac_handle_aif() 1106 lun = (container >> 16) & 0xFF; in aac_handle_aif() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/ |
| H A D | allocator_traits.hpp | 53 …VE_HAS_MEMBER_FUNCTION_CALLABLE_WITH_NS_BEG namespace boost { namespace container { namespace cont… 60 …VE_HAS_MEMBER_FUNCTION_CALLABLE_WITH_NS_BEG namespace boost { namespace container { namespace cont… 67 …VE_HAS_MEMBER_FUNCTION_CALLABLE_WITH_NS_BEG namespace boost { namespace container { namespace cont… 76 namespace container { namespace 199 … typedef BOOST_INTRUSIVE_OBTAIN_TYPE_WITH_DEFAULT(boost::container::container_detail::, Allocator, 203 …typedef BOOST_INTRUSIVE_OBTAIN_TYPE_WITH_EVAL_DEFAULT(boost::container::container_detail::, Alloca… 208 … typedef BOOST_INTRUSIVE_OBTAIN_TYPE_WITH_DEFAULT(boost::container::container_detail::, Allocator, 212 … typedef BOOST_INTRUSIVE_OBTAIN_TYPE_WITH_DEFAULT(boost::container::container_detail::, Allocator, 216 …typedef BOOST_INTRUSIVE_OBTAIN_TYPE_WITH_EVAL_DEFAULT(boost::container::container_detail::, Alloca… 221 …typedef BOOST_INTRUSIVE_OBTAIN_TYPE_WITH_EVAL_DEFAULT(boost::container::container_detail::, Alloca… [all …]
|
| H A D | vector.hpp | 72 namespace container { namespace 345 typedef boost::container::allocator_traits<Allocator> allocator_traits_type; 465 BOOST_CONTAINER_FORCEINLINE pointer allocation_command(boost::container::allocation_type command, in allocation_command() 541 …BOOST_CONTAINER_FORCEINLINE pointer priv_allocation_command(version_1, boost::container::allocatio… in priv_allocation_command() 554 pointer priv_allocation_command(version_2, boost::container::allocation_type command, in priv_allocation_command() 572 typedef boost::container::allocator_traits<Allocator> allocator_traits_type; 615 ::boost::container::uninitialized_move_alloc_n in vector_alloc_holder() 627 ::boost::container::uninitialized_move_alloc_n in vector_alloc_holder() 686 …boost::container::deep_swap_alloc_n<MaxTmpStorage>(this->alloc(), first_this, this->m_size, first_… in priv_deep_swap() 689 …boost::container::deep_swap_alloc_n<MaxTmpStorage>(this->alloc(), first_x, x.m_size, first_this, t… in priv_deep_swap() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/geometry/0.9.3/include/mapbox/geometry/ |
| H A D | for_each_point.hpp | 16 auto for_each_point(Container&& container, F&& f) 17 -> decltype(container.begin(), container.end(), void()); 36 auto for_each_point(Container&& container, F&& f) in for_each_point() argument 37 -> decltype(container.begin(), container.end(), void()) in for_each_point() 39 for (auto& e: container) { in for_each_point()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | std.hpp | 11 void erase_if(Container &container, ForwardIterator it, Predicate pred) { in erase_if() argument 12 while (it != container.end()) { in erase_if() 14 it = container.erase(it); in erase_if() 22 void erase_if(Container &container, Predicate pred) { in erase_if() argument 23 erase_if(container, container.begin(), pred); in erase_if()
|
| /OK3568_Linux_fs/buildroot/package/freescale-imx/imx-seco/ |
| H A D | Config.in | 18 Select the appropriate ahab container image to install 47 default "mx8dxla0-ahab-container.img" if BR2_PACKAGE_IMX_SECO_MX8DXLA0 48 default "mx8dxla1-ahab-container.img" if BR2_PACKAGE_IMX_SECO_MX8DXLA1 49 default "mx8qmb0-ahab-container.img" if BR2_PACKAGE_IMX_SECO_MX8QMB0 50 default "mx8qxb0-ahab-container.img" if BR2_PACKAGE_IMX_SECO_MX8QXB0 51 default "mx8qxc0-ahab-container.img" if BR2_PACKAGE_IMX_SECO_MX8QXC0
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/ |
| H A D | vfio.rst | 80 a container class, which may hold one or more groups. A container 83 On its own, the container provides little functionality, with all 85 The user needs to add a group into the container for the next level 99 Once the group is ready, it may be added to the container by opening 102 previously opened container file. If desired and if the IOMMU driver 104 be set to the same container. If a group fails to set to a container 105 with existing groups, a new empty container will need to be used 108 With a group (or groups) attached to a container, the remaining 169 int container, group, device, i; 176 /* Create a new container */ [all …]
|
| /OK3568_Linux_fs/buildroot/fs/oci/ |
| H A D | Config.in | 35 Tag to be used in the container image. If empty, 'latest' will 42 Command to execute when the container starts. 47 Default arguments to the entrypoint of the container. 53 container. 64 Default environment variables for the container. 70 Default set of ports to expose from a container running 79 Metadata in the format KEY=VALUE for the container compliant
|
| /OK3568_Linux_fs/kernel/drivers/usb/gadget/udc/aspeed-vhub/ |
| H A D | hub.c | 304 ast_vhub_str_of_container(struct usb_gadget_string_container *container) in ast_vhub_str_of_container() argument 306 return (struct usb_gadget_strings *)container->stash; in ast_vhub_str_of_container() 314 struct usb_gadget_string_container *container; in ast_vhub_collect_languages() local 320 list_for_each_entry(container, &vhub->vhub_str_desc, list) { in ast_vhub_collect_languages() 324 lang_str = ast_vhub_str_of_container(container); in ast_vhub_collect_languages() 339 struct usb_gadget_string_container *container; in ast_vhub_lookup_string() local 341 list_for_each_entry(container, &vhub->vhub_str_desc, list) { in ast_vhub_lookup_string() 342 lang_str = ast_vhub_str_of_container(container); in ast_vhub_lookup_string() 911 struct usb_gadget_string_container *container; in ast_vhub_str_container_alloc() local 913 size = sizeof(*container); in ast_vhub_str_container_alloc() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/security/tpm/ |
| H A D | tpm_vtpm_proxy.rst | 15 container. This allows programs to interact with a TPM in a container 17 container gets its own unique, emulated, software TPM. 22 To make an emulated software TPM available to each container, the container 25 descriptor. The former is moved into the container by creating a character 27 is passed to the TPM emulator. Software inside the container can then send
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/host_include/openssl/ |
| H A D | span.h | 117 Span(const C &container) : data_(container.data()), size_(container.size()) {} in Span() argument 122 explicit Span(C &container) in Span() argument 123 : data_(container.data()), size_(container.size()) {} in Span()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/openssl/ |
| H A D | span.h | 117 Span(const C &container) : data_(container.data()), size_(container.size()) {} in Span() argument 122 explicit Span(C &container) in Span() argument 123 : data_(container.data()), size_(container.size()) {} in Span()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/geoflickr/flickrmobile/ |
| H A D | Button.qml | 54 id: container 63 width: container.width; height: container.height 69 width: container.width; height: container.height 74 onClicked: { container.clicked(); } 79 text: container.text; style: Text.Raised; styleColor: "black"
|
| H A D | ImageDetails.qml | 55 id: container 67 origin.x: container.width / 2; 72 id: containerFront; anchors.fill: container 86 … Text { font.bold: true; color: "white"; elide: Text.ElideRight; text: container.photoTitle } 87 … Text { color: "white"; elide: Text.ElideRight; text: "<b>Published:</b> " + container.photoDate } 92 anchors.fill: container 111 id: bigImage; // source: container.photoUrl 112 source: container.photoUrl
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/openssl/ |
| H A D | span.h | 121 Span(const C &container) : data_(container.data()), size_(container.size()) {} in Span() argument 126 explicit Span(C &container) in Span() argument 127 : data_(container.data()), size_(container.size()) {} in Span()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/openssl/ |
| H A D | span.h | 121 Span(const C &container) : data_(container.data()), size_(container.size()) {} in Span() argument 126 explicit Span(C &container) in Span() argument 127 : data_(container.data()), size_(container.size()) {} in Span()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/openssl/ |
| H A D | span.h | 121 Span(const C &container) : data_(container.data()), size_(container.size()) {} in Span() argument 126 explicit Span(C &container) in Span() argument 127 : data_(container.data()), size_(container.size()) {} in Span()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/openssl/ |
| H A D | span.h | 121 Span(const C &container) : data_(container.data()), size_(container.size()) {} in Span() argument 126 explicit Span(C &container) in Span() argument 127 : data_(container.data()), size_(container.size()) {} in Span()
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | image-container.bbclass | 2 IMAGE_TYPES_MASKED += "container" 3 IMAGE_TYPEDEP:container = "tar.bz2" 6 if "container" in d.getVar("IMAGE_FSTYPES") and \ 9 msg = '"container" is in IMAGE_FSTYPES, but ' \
|