/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | AttrIterator.h | 32 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 D | aac_debug.c | 228 " 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 D | aacreg.h | 200 /* 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 D | ucl_msgpack.c | 403 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 D | stack | 19 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 D | queue | 19 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 D | iterator | 313 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 D | aacraid_debug.c | 140 " 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 D | aacraid_reg.h | 134 /* 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 D | libelftc_vstr.c | 59 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/release/ |
H A D | Makefile.oci | 2 # 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 21 OCI_DEPS_notoolchain=container-image-runtime.txz 22 OCI_DEPS_toolchain=container-image-notoolchain.txz 25 OCI_TARGETS+= container-image-${_IMG}.txz 26 container-image-${_IMG}.txz: ${OCI_DEPS_${_IMG}} 29 …ke-oci-image.sh ${.CURDIR} ${REVISION} ${BRANCH} ${TARGET_ARCH} ${_IMG} container-image-${_IMG}.txz
|
/freebsd/contrib/libxo/libxo/ |
H A D | xo_open_container.3 | 16 .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 D | RecordsSlice.cpp | 44 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/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | SymbolRecordMapping.h | 23 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 D | SymbolDeserializer.h | 26 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 D | BitstreamRemarkContainer.h | 1 //===-- 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 D | gmock-matchers.h | 2296 // 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 D | ecore_iscsi_api.h | 210 * @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/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | iterator_range.h | 49 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/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ |
H A D | ldap_krbcontainer.c | 36 * 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/contrib/googletest/docs/reference/ |
H A D | matchers.md | 112 ## 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()`). | 131 …container)`, `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/sys/dev/qat/qat_api/common/include/ |
H A D | lac_sal_types.h | 83 * Generic Instance Container 157 /**< Container of sal_crypto_service_t */ 159 /**< Container of sal_asym_service_t */ 161 /**< Container of sal_sym_service_t */ 163 /**< Container of sal_compression_service_t */ 165 /**< Container for crypto proc debug */ 167 /**< Container for asym proc debug */ 169 /**< Container for sym proc debug */ 171 /**< Container for compression proc debug */ 173 /**< Container for version debug file */
|
/freebsd/crypto/openssl/test/quic-openssl-docker/ |
H A D | README.md | 9 This Dockerfile builds a container for use with the 15 Building the container 21 Note the tag name is important, as the interop runner knows the container 23 will pick up the container from your local registry rather than downloading it
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | back_insert_iterator.h | 39 _Container* container; 54 : container(std::addressof(__x)) {} 57 container->push_back(__value); 63 container->push_back(std::move(__value)); 71 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Container* __get_container() const { return container; } in back_inserter()
|
/freebsd/sys/contrib/openzfs/cmd/zed/ |
H A D | zed_strings.c | 68 * Return a new string container, or NULL on error. 142 * Destroy the string container [zsp] and all nodes within. 162 * Add a copy of the string [s] indexed by [key] to the container [zsp]. 163 * If [key] already exists within the container [zsp], it will be replaced 194 * Return the first string in container [zsp]. 215 * Return the next string in container [zsp]. 238 * Return the number of strings in container [zsp], or -1 on error.
|