Home
last modified time | relevance | path

Searched full:container (Results 1 – 25 of 881) sorted by relevance

12345678910>>...36

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DAttrIterator.h32 template <typename SpecificAttr, typename Container = AttrVec>
34 using Iterator = typename Container::const_iterator;
99 template <typename SpecificAttr, typename Container>
100 inline specific_attr_iterator<SpecificAttr, Container>
101 specific_attr_begin(const Container& container) { in specific_attr_begin() argument
102 return specific_attr_iterator<SpecificAttr, Container>(container.begin()); in specific_attr_begin()
104 template <typename SpecificAttr, typename Container>
105 inline specific_attr_iterator<SpecificAttr, Container>
106 specific_attr_end(const Container& container) { in specific_attr_end() argument
107 return specific_attr_iterator<SpecificAttr, Container>(container.end()); in specific_attr_end()
[all …]
/freebsd/sys/dev/aac/
H A Daac_debug.c228 " BlockRead: container %d 0x%x/%d\n", in aac_print_fib()
235 " BlockWrite: container %d 0x%x/%d " in aac_print_fib()
281 case AifEnContainerChange: /* Adapter specific container in aac_print_aif()
284 "container %d,%d\n", in aac_print_aif()
285 aif->data.EN.data.ECC.container[0], in aac_print_aif()
286 aif->data.EN.data.ECC.container[1]); in aac_print_aif()
295 "container %d failed, " in aac_print_aif()
297 aif->data.EN.data.EMF.container, in aac_print_aif()
301 case AifEnContainerEvent: /* Significant container in aac_print_aif()
304 "container %d event " in aac_print_aif()
[all …]
H A Daacreg.h200 /* Container Commands */
321 * Container types
362 FT_VOLUME, /* Container - Volume Set */
363 FT_STRIPE, /* Container - Stripe Set */
364 FT_MIRROR, /* Container - Mirror Set */
365 FT_RAID5, /* Container - Raid 5 Set */
412 * Container creation data
801 AifJobCtrZero, /* Container clear operation */
802 AifJobCtrCopy, /* Container copy operation */
803 AifJobCtrCreateMirror, /* Container Create Mirror operation */
[all …]
/freebsd/contrib/libucl/src/
H A Ducl_msgpack.c403 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
407 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
410 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
413 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
416 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
419 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
422 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
425 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
428 struct ucl_stack *container, size_t len, enum ucl_msgpack_format fmt,
771 * Insert new container to the stack in ucl_msgpack_get_container()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstack19 template <class T, class Container = deque<T>>
23 typedef Container container_type;
45 template<container-compatible-range<T> R> stack(from_range_t, R&& rg); // since C++23
53 template<container-compatible-range<T> R, class Alloc>
63 template<container-compatible-range<T> R>
68 void swap(stack& c) noexcept(is_nothrow_swappable_v<Container>)
71 template<class Container>
72 stack(Container) -> stack<typename Container::value_type, Container>; // C++17
80 template<class Container, class Allocator>
81 stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
[all …]
H A Dqueue19 template <class T, class Container = deque<T>>
23 typedef Container container_type;
46 template<container-compatible-range<T> R> queue(from_range_t, R&& rg); // since C++23
59 template<container-compatible-range<T> R, class Alloc>
72 template<container-compatible-range<T> R>
77 void swap(queue& q) noexcept(is_nothrow_swappable_v<Container>)
80 template<class Container>
81 queue(Container) -> queue<typename Container::value_type, Container>; // C++17
89 template<class Container, class Allocator>
90 queue(Container, Allocator) -> queue<typename Container::value_type, Container>; // C++17
[all …]
H A Diterator313 template <class Container>
318 Container* container;
320 typedef Container container_type;
327 explicit back_insert_iterator(Container& x); // constexpr in C++20
328 …back_insert_iterator& operator=(const typename Container::value_type& value); // constexpr in C++…
334 template <class Container> back_insert_iterator<Container> back_inserter(Container& x); // constex…
336 template <class Container>
341 Container* container;
343 typedef Container container_type;
350 explicit front_insert_iterator(Container& x); // constexpr in C++20
[all …]
/freebsd/sys/dev/aacraid/
H A Daacraid_debug.c140 " BlockRead: container %d 0x%x/%d\n", in aacraid_print_fib()
147 " BlockWrite: container %d 0x%x/%d " in aacraid_print_fib()
193 case AifEnContainerChange: /* Adapter specific container in aacraid_print_aif()
196 "container %d,%d\n", in aacraid_print_aif()
197 aif->data.EN.data.ECC.container[0], in aacraid_print_aif()
198 aif->data.EN.data.ECC.container[1]); in aacraid_print_aif()
207 "container %d failed, " in aacraid_print_aif()
209 aif->data.EN.data.EMF.container, in aacraid_print_aif()
213 case AifEnContainerEvent: /* Significant container in aacraid_print_aif()
216 "container %d event " in aacraid_print_aif()
[all …]
H A Daacraid_reg.h134 /* Container Commands */
268 * Container types
309 FT_VOLUME, /* Container - Volume Set */
310 FT_STRIPE, /* Container - Stripe Set */
311 FT_MIRROR, /* Container - Mirror Set */
312 FT_RAID5, /* Container - Raid 5 Set */
369 * Container creation data
790 AifJobCtrZero, /* Container clear operation */
791 AifJobCtrCopy, /* Container copy operation */
792 AifJobCtrCreateMirror, /* Container Create Mirror operation */
[all …]
/freebsd/contrib/elftoolchain/libelftc/
H A Dlibelftc_vstr.c59 len += strlen(v->container[i]); in get_strlen_sum()
76 free(v->container[i]); in vector_str_dest()
78 free(v->container); in vector_str_dest()
97 if (strncmp(v->container[i], o, l) == 0) in vector_str_find()
129 elem_size = strlen(v->container[i]); in vector_str_get_flat()
131 memcpy(rtn + elem_pos, v->container[i], elem_size); in vector_str_get_flat()
163 tmp_ctn[i] = v->container[i]; in vector_str_grow()
165 free(v->container); in vector_str_grow()
167 v->container = tmp_ctn; in vector_str_grow()
189 if ((v->container = malloc(sizeof(char *) * v->capacity)) == NULL) in vector_str_init()
[all …]
/freebsd/contrib/libxo/libxo/
H A Dxo_open_container.316 .Nd open (and close) container constructs
43 A container appears once under a given parent where a list contains
45 A container is used to hold
47 The container has no value, but serves to
50 To open a container, call
68 container, a warning will be generated.
99 To create a container, use the
113 parameter gives the name of the container, encoded in
129 avoid keeping track of the open container name.
134 close does not match the current open container.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DRecordsSlice.cpp44 ObjCContainerRecord *Container = findContainer(/*isIVar=*/false, Super); in addRecord() local
46 if (Container == nullptr) in addRecord()
47 Container = addObjCCategory(Super, {}); in addRecord()
48 return addObjCIVar(Container, IVar, Linkage); in addRecord()
58 ObjCContainerRecord *Container = findObjCInterface(Super); in findContainer() local
61 if (Container == nullptr) in findContainer()
62 Container = findObjCCategory(Super, ""); in findContainer()
63 return Container; in findContainer()
67 R *findRecord(K Key, const C &Container) { in findRecord() argument
68 const auto *Record = Container.find(Key); in findRecord()
[all …]
/freebsd/release/
H A DMakefile.oci2 # Makefile for building OCI container images.
13 cp -p ${.OBJDIR}/container-image-${_IMG}.txz ${DESTDIR}/ociimages
19 OCI_DEPS_dynamic= container-image-static.txz
20 OCI_DEPS_runtime= container-image-dynamic.txz
23 OCI_TARGETS+= container-image-${_IMG}.txz
24 container-image-${_IMG}.txz: ${OCI_DEPS_${_IMG}}
27 …ke-oci-image.sh ${.CURDIR} ${REVISION} ${BRANCH} ${TARGET_ARCH} ${_IMG} container-image-${_IMG}.txz
/freebsd/crypto/krb5/doc/html/_sources/admin/
H A Dconf_ldap.rst.txt39 5. Choose a DN for the global Kerberos container entry (but do not
42 Realm container entries will be created underneath this DN.
43 Principal entries may exist either underneath the realm container
45 container.
61 # Provide access to the realm container.
67 # Provide access to principals, if not underneath the realm container.
76 If the locations of the container and principals or the DNs of the
95 separate subtree from the realm container. Before executing the
98 exist underneath the realm container, omit the **-subtrees** option
105 file. This operation will also create the Kerberos container, if
[all …]
/freebsd/crypto/krb5/doc/admin/
H A Dconf_ldap.rst39 5. Choose a DN for the global Kerberos container entry (but do not
42 Realm container entries will be created underneath this DN.
43 Principal entries may exist either underneath the realm container
45 container.
61 # Provide access to the realm container.
67 # Provide access to principals, if not underneath the realm container.
76 If the locations of the container and principals or the DNs of the
95 separate subtree from the realm container. Before executing the
98 exist underneath the realm container, omit the **-subtrees** option
105 file. This operation will also create the Kerberos container, if
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecordMapping.h23 CodeViewContainer Container) in SymbolRecordMapping() argument
24 : IO(Reader), Container(Container) {} in SymbolRecordMapping()
26 CodeViewContainer Container) in SymbolRecordMapping() argument
27 : IO(Writer), Container(Container) {} in SymbolRecordMapping()
41 CodeViewContainer Container; variable
H A DSymbolDeserializer.h26 MappingInfo(ArrayRef<uint8_t> RecordData, CodeViewContainer Container) in MappingInfo()
28 Mapping(Reader, Container) {} in MappingInfo()
56 CodeViewContainer Container) in SymbolDeserializer() argument
57 : Delegate(Delegate), Container(Container) {} in SymbolDeserializer()
65 Mapping = std::make_unique<MappingInfo>(Record.content(), Container); in visitSymbolBegin()
93 CodeViewContainer Container; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DBitstreamRemarkContainer.h1 //===-- BitstreamRemarkContainer.h - Container for remarks --------------*-===//
24 /// The current version of the remark container.
30 /// Type of the remark container.
31 /// The remark container has two modes:
38 /// * Container version and type
44 /// * Container version and type
49 /// * Container version and type
58 /// container.
92 constexpr StringRef MetaContainerInfoName = StringRef("Container info", 14);
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2296 // Implements a matcher that checks the size of an STL-style container.
2303 template <typename Container>
2304 operator Matcher<Container>() const {
2305 return Matcher<Container>(new Impl<const Container&>(size_matcher_));
2308 template <typename Container>
2309 class Impl : public MatcherInterface<Container> {
2311 using SizeType = decltype(std::declval<Container>().size());
2324 bool MatchAndExplain(Container container,
2326 SizeType size = container.size();
2344 // container.
[all …]
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_iscsi_api.h210 * @param p_conn partially initialized incoming container of
222 * @param p_conn container of iSCSI connection data
245 * @param p_conn container of iSCSI connection data
255 * resources (incliding container of iSCSI connection
259 * @param p_conn container of iSCSI connection data
269 * @param p_conn container of iSCSI connection data
283 * @param p_conn container of iSCSI connection data
297 * @param p_conn container of iSCSI connection data
311 * @param p_conn container of iSCSI connection data
329 * @param p_conn container of iSCSI connection data
/freebsd/crypto/krb5/doc/html/_sources/appdev/refs/api/
H A Dkrb5_encode_authdata_container.rst.txt1 krb5_encode_authdata_container - Wrap authorization data in a container.
6 …text context, krb5_authdatatype type, krb5_authdata *const * authdata, krb5_authdata *** container)
15 **[in]** **type** - Container type (see KRB5_AUTHDATA macros)
19 **[out]** **container** - List of encoded authorization data
37 The result is returned in *container* as a single-element list.
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A Diterator_range.h49 template <typename Container>
52 typename Container,
54 llvm::detail::IterOfRange<Container>, IteratorT>::value> * = nullptr>
56 iterator_range(Container &&c)
68 template <typename Container>
69 iterator_range(Container &&)
70 -> iterator_range<llvm::detail::IterOfRange<Container>>;
/freebsd/contrib/googletest/docs/reference/
H A Dmatchers.md112 ## Container Matchers
115 or simply `expected_container` to match a container exactly. If you want to
121 | `BeginEndDistanceIs(m)` | `argument` is a container whose `begin()` and `end()` iterators are sep…
122 | `ContainerEq(container)` | The same as `Eq(container)` except that the failure message also inclu…
125 | `Each(e)` | `argument` is a container where *every* element matches `e`, which can be either a va…
127 …pected element values/matchers come from an initializer list, STL-style container, iterator range,…
128 | `IsEmpty()` | `argument` is an empty container (`container.empty()`). |
131container)`, `Pointwise(m, {e0, e1, ..., en})` | `argument` contains the same number of elements a…
132 | `SizeIs(m)` | `argument` is a container whose size matches `m`. E.g. `SizeIs(2)` or `SizeIs(Lt(2)…
134 …pected element values/matchers come from an initializer list, STL-style container, iterator range,…
[all …]
/freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_krbcontainer.c36 * Read the kerberos container location from krb5.conf.
51 /* read kerberos container location from [dbmodules] section of krb5.conf file */ in krb5_ldap_read_krbcontainer_dn()
56 k5_setmsg(context, st, _("Error reading kerberos container " in krb5_ldap_read_krbcontainer_dn()
62 /* read kerberos container location from [dbdefaults] section of krb5.conf file */ in krb5_ldap_read_krbcontainer_dn()
67 k5_setmsg(context, st, _("Error reading kerberos container " in krb5_ldap_read_krbcontainer_dn()
75 k5_setmsg(context, st, _("Kerberos container location not specified")); in krb5_ldap_read_krbcontainer_dn()
/freebsd/crypto/krb5/doc/html/appdev/refs/api/
H A Dkrb5_encode_authdata_container.html9 …<title>krb5_encode_authdata_container - Wrap authorization data in a container. &#8212; MIT Kerber…
42 …umentation__krb5_encode_authdata_container - Wrap authorization data in a container.">feedback</a>
55 <section id="krb5-encode-authdata-container-wrap-authorization-data-in-a-container">
56 …thorization data in a container.<a class="headerlink" href="#krb5-encode-authdata-container-wrap-a…
59 …="p"><span class="pre">*</span></span><span class="n"><span class="pre">container</span></span><sp…
65 <p><strong>[in]</strong> <strong>type</strong> - Container type (see KRB5_AUTHDATA macros)</p>
67 <p><strong>[out]</strong> <strong>container</strong> - List of encoded authorization data</p>
77 <p>The result is returned in <em>container</em> as a single-element list.</p>
94 …ternal" href="#">krb5_encode_authdata_container - Wrap authorization data in a container.</a></li>
158 …umentation__krb5_encode_authdata_container - Wrap authorization data in a container.">feedback</a>

12345678910>>...36