/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 | 141 " BlockRead: container %d 0x%x/%d\n", in aacraid_print_fib() 148 " BlockWrite: container %d 0x%x/%d " in aacraid_print_fib() 194 case AifEnContainerChange: /* Adapter specific container in aacraid_print_aif() 197 "container %d,%d\n", in aacraid_print_aif() 198 aif->data.EN.data.ECC.container[0], in aacraid_print_aif() 199 aif->data.EN.data.ECC.container[1]); in aacraid_print_aif() 208 "container %d failed, " in aacraid_print_aif() 210 aif->data.EN.data.EMF.container, in aacraid_print_aif() 214 case AifEnContainerEvent: /* Significant container in aacraid_print_aif() 217 "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 | 4 # Makefile for building OCI container images. 15 cp -p ${.OBJDIR}/container-image-${_IMG}.txz ${DESTDIR}/ociimages 21 OCI_DEPS_dynamic= container-image-static.txz 22 OCI_DEPS_minimal= container-image-dynamic.txz 25 OCI_TARGETS+= container-image-${_IMG}.txz 26 container-image-${_IMG}.txz: ${OCI_DEPS_${_IMG}} 30 …oci-archive:${.OBJDIR}/container-image-${_IMG}.tar:freebsd${REVISION:R}-${_IMG}:${REVISION}-${BRAN… 31 ${XZ_CMD} < ${.OBJDIR}/container-image-${_IMG}.tar > ${.OBJDIR}/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);
|
H A D | BitstreamRemarkSerializer.h | 32 /// Separate meta: | Container info 36 /// Separate remarks: | Container info 43 /// * The standalone model: | Container info 59 /// The type of the container we are serializing. 63 /// Note: depending on the container type, some IDs might be uninitialized. 89 /// Set up the necessary block info entries according to the container type. 148 /// container type of the current serializer, the container type of the
|
/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/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/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 | 67 * Return a new string container, or NULL on error. 141 * Destroy the string container [zsp] and all nodes within. 161 * Add a copy of the string [s] indexed by [key] to the container [zsp]. 162 * If [key] already exists within the container [zsp], it will be replaced 193 * Return the first string in container [zsp]. 214 * Return the next string in container [zsp]. 237 * Return the number of strings in container [zsp], or -1 on error.
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugSubsectionRecord.cpp | 63 // regardless of the container kind. in calculateSerializedLength() 68 CodeViewContainer Container) const { in commit() 69 assert(Writer.getOffset() % alignOf(Container) == 0 && in commit() 75 // container's alignment in commit() 78 Header.Length = alignTo(DataSize, alignOf(Container)); in commit()
|