Searched refs:components (Results 26 - 50 of 66) sorted by relevance

123

/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dpath.c200 /* an absolute path. skip all components to this point and reset
212 and all prior components are empty. just set the length to
229 /* base == "/" and no further components. just return that. */
621 apr_array_header_t *components =
627 return components; /* ### Should we return a "" component? */
635 APR_ARRAY_PUSH(components, const char *)
641 return components;
649 APR_ARRAY_PUSH(components, const char *) = SVN_EMPTY_PATH;
651 APR_ARRAY_PUSH(components, const char *)
662 return components;
617 apr_array_header_t *components = local
663 svn_path_compose(const apr_array_header_t *components, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/
H A Dacpica_prep.sh17 fulldirs="common compiler components include os_specific"
75 find ${dst}/common ${dst}/compiler ${dst}/components \
/freebsd-11-stable/lib/libc/locale/
H A Dxlocale_private.h72 * Header for a locale component. All locale components must begin with this
87 struct xlocale_component *components[XLC_LAST]; member in struct:_xlocale
88 /** Flag indicating if components[XLC_MONETARY] has changed since the
94 /** Flag indicating if components[XLC_NUMERIC] has changed since the
H A Dmblocal.h62 #define XLOCALE_CTYPE(x) ((struct xlocale_ctype*)(x)->components[XLC_CTYPE])
H A Dlmonetary.c174 ? &((struct xlocale_monetary*)loc->components[XLC_MONETARY])->locale
H A Dsetlocale.c276 (void)strcpy(__xlocale_global_locale.components[category-1]->locale, new);
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Ddotwait.mk24 # then the target names will differ in numeric components, such that
29 # of their own name, in which alphabetic components like ".a" or ".b"
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dder_get.c474 if (len + 1 > UINT_MAX/sizeof(data->components[0]))
477 data->components = malloc((len + 1) * sizeof(data->components[0]));
478 if (data->components == NULL)
480 data->components[0] = (*p) / 40;
481 data->components[1] = (*p) % 40;
497 data->components[n] = u;
H A Dder_length.c92 unsigned u = oid->components[n];
H A Dder_put.c349 unsigned u = data->components[n];
366 *p-- = 40 * data->components[0] + data->components[1];
H A Dcheck-gen.c353 atv1[0].type.components = cmp_CN;
359 atv1[1].type.components = cmp_L;
372 atv2[0].type.components = cmp_L;
378 atv2[1].type.components = cmp_CN;
/freebsd-11-stable/sys/dev/usb/input/
H A Datp.c212 * from the aggregate of their components are considered as
601 boolean_t matched; /*to track components as they match against pspans.*/
608 * touchpad. A stroke comprises two p-span components and some state.
645 * pressures for stroke components.
647 fg_stroke_component_t components[NUM_AXES]; member in struct:atp_stroke
1404 if (strokep->components[axis].matched)
1405 continue; /* skip matched components */
1412 &strokep->components[axis], &pspans[i],
1416 strokep->components[axis].matched = true;
1500 /* Reset X and Y components o
[all...]
/freebsd-11-stable/crypto/heimdal/lib/gssapi/mech/
H A Dgss_krb5.c630 oid.components = calloc(oid.length, sizeof(*oid.components));
631 if (oid.components == NULL) {
638 memcpy(oid.components, baseoid.components,
639 baseoid.length * sizeof(*baseoid.components));
643 oid.components[oid.length - 1] = ad_type;
648 free(oid.components);
655 free(oid.components);
663 free(oid.components);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp355 // {C:/,//net/}, so get the first two components.
424 SmallVector<StringRef, 4> components;
425 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage));
426 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage));
427 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage));
428 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage));
430 for (auto &component : components) {
713 SmallVector<StringRef, 16> components;
715 // Skip the root path, then look for traversal in the components.
723 if (!components
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_path.h95 * Exactly one slash character ('/') is used to join the components,
117 /** Join multiple components onto a @a base path, allocated in @a pool. The
118 * components are terminated by a @c SVN_VA_NULL.
123 * further components will be appended to it.
187 /** Return the number of components in the canonicalized @a path.
211 /** Remove @a n components off the end of the canonicalized @a path.
227 * If @a path has two or more components, the separator between @a dirpath
452 * char *</tt> components, allocated in @a pool. If @a path is
459 /** Join an array of <tt>const char *</tt> components into a '/'
469 svn_path_compose(const apr_array_header_t *components, apr_pool_
[all...]
/freebsd-11-stable/lib/libc/string/
H A Dwcscoll.c52 (struct xlocale_collate*)locale->components[XLC_COLLATE];
/freebsd-11-stable/contrib/groff/src/utils/afmtodit/
H A Dafmtodit.pl6314 # Split the remaining string into a sequence of components,
6409 while (my ($lig, $components) = each %default_ligatures) {
6411 $ligatures{$lig} = $components;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dpatch.c333 /* Strip STRIP_COUNT components from the front of PATH, returning
341 apr_array_header_t *components;
344 components = svn_path_decompose(path, scratch_pool);
345 if (strip_count > components->nelts)
348 "Cannot strip %u components from '%s'",
353 stripped = apr_array_make(scratch_pool, components->nelts - strip_count,
355 for (i = strip_count; i < components->nelts; i++)
359 component = APR_ARRAY_IDX(components, i, const char *);
437 * STRIP_COUNT specifies the number of leading path components
959 * with the fewest path components, th
340 apr_array_header_t *components; local
3001 apr_array_header_t *components; local
[all...]
H A Dadd.c799 apr_array_header_t *components;
806 components = svn_path_decompose(child_relpath, scratch_pool);
808 for (i = 0; i < components->nelts - 1; i++)
818 component = APR_ARRAY_IDX(components, i, const char *);
797 apr_array_header_t *components; local
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp209 // Walk the initial components.
705 llvm::SmallVectorImpl<llvm::Type*> &components) {
708 components.push_back(origVectorTy);
750 components.append(numVecs, llvm::VectorType::get(eltTy, candidateNumElts));
760 components.push_back(llvm::VectorType::get(eltTy, numElts));
773 components.append(numElts, eltTy);
703 legalizeVectorType(CodeGenModule &CGM, CharUnits origVectorSize, llvm::VectorType *origVectorTy, llvm::SmallVectorImpl<llvm::Type*> &components) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp200 llvm::SmallVector<llvm::StringRef, 8> components; local
201 name.split(components, '.');
203 for (const auto &part : components)
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound.spec21 Unbound is designed as a set of modular components, so that also
/freebsd-11-stable/lib/libc/gen/
H A Dfnmatch.c243 (struct xlocale_collate*)__get_locale()->components[XLC_COLLATE];
/freebsd-11-stable/usr.sbin/makefs/
H A Dmtree.c996 "components");
/freebsd-11-stable/share/mk/
H A Dbsd.crunchgen.mk151 # targets should NOT be propagated into the components.

Completed in 358 milliseconds

123