Searched refs:component (Results 1 - 25 of 58) sorted by relevance

123

/freebsd-11-stable/contrib/gcc/
H A Dcppdefault.h38 const char *const component; /* The component containing the directory member in struct:default_include
H A Dgenmodes.c65 struct mode_data *component; /* mode of components */ member in struct:mode_data
70 this mode as a component. */
277 validate_field (m, component);
314 m->component = 0;
324 m->component = 0;
337 m->component = 0;
341 /* A partial integer mode uses ->component to say what the
346 m->bytesize = m->component->bytesize;
349 m->component = 0; /* ??? preserve this */
354 /* Complex modes should have a component indicate
599 struct mode_data *component = find_mode (base); local
628 struct mode_data *component = find_mode (base); local
[all...]
H A Dcfgloopanal.c69 int component; /* Number of dfs restarts before reaching the member in struct:vertex
99 fprintf (f, "%d (%d)\t<-", i, g->vertices[i].component);
155 g->vertices[i].component = -1;
170 g->vertices[v].component = comp++;
176 while (e && g->vertices[EDGE_DEST (e)].component != -1)
197 g->vertices[v].component = comp - 1;
212 /* All edges should lead from a component with higher number to the
214 gcc_assert (g->vertices[e->src].component >= g->vertices[e->dest].component);
216 if (g->vertices[e->src].component !
[all...]
/freebsd-11-stable/crypto/openssh/regress/
H A Dcheck-perm.c38 char component[PATH_MAX]; local
43 if (strlen(path) >= sizeof(component))
47 * Descend the path, checking that each component is a
52 strlcpy(component, path, sizeof(component));
55 memcpy(component, path, cp - path);
56 component[cp - path] = '\0';
59 /* debug3("%s: checking '%s'", __func__, component); */
61 if (stat(component, &st) != 0)
63 component, strerro
[all...]
/freebsd-11-stable/sys/dev/mlxfw/
H A Dmlxfw_mfa2.h60 void mlxfw_mfa2_file_component_put(struct mlxfw_mfa2_component *component);
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_path.h86 /** Join a base path (@a base) with a component (@a component), allocating
87 * the result in @a pool. @a component need not be a single component: it
90 * If either @a base or @a component is the empty path, then the other
94 * If the @a component is an absolute path, then it is copied and returned.
104 * for the separator. Further, an absolute path (for @a component) is
106 * @a component won't be detected. An absolute URI can only be used
115 svn_path_join(const char *base, const char *component, apr_pool_t *pool);
120 * If any component i
[all...]
H A Dsvn_dirent_uri.h203 /** Join a base dirent (@a base) with a component (@a component).
205 * If either @a base or @a component is the empty string, then the other
209 * If the @a component is an absolute dirent, then it is copied and returned.
222 const char *component,
228 * If any component is the empty string, it will be ignored.
230 * If any component is an absolute dirent, then it resets the base and
244 /** Join a base relpath (@a base) with a component (@a component).
245 * @a component nee
[all...]
/freebsd-11-stable/contrib/groff/src/utils/afmtodit/
H A Dafmtodit.pl6291 my $component = "";
6319 $component = $1;
6322 # Map each component to a character string according to the
6325 # * If the component is in the Adobe Glyph List, then map
6328 $utmp = $AGL_to_unicode{$component};
6333 # * Otherwise, if the component is of the form `uni'
6340 # number as a Unicode scalar value and map the component
6343 elsif ($component =~ /^uni([0-9A-F]{4})+$/) {
6344 while ($component =~ /([0-9A-F]{4})/g) {
6356 # * Otherwise, if the component i
[all...]
/freebsd-11-stable/sys/dev/vxge/include/
H A Dvxge-os-debug.h122 * @component: The Component mask
135 #define vxge_debug_uld(component, level, hldev, vpid, fmt, ...) \
136 vxge_debug(component, level, hldev, vpid, fmt, __VA_ARGS__)
233 * @component: The Component mask
246 u32 component,
253 vxge_debug(component, level, hldev, vpid, fmt)
/freebsd-11-stable/contrib/ofed/libmlx5/
H A Dbuf.c327 const char *component)
355 ret = mlx5_alloc_buf_contig(mctx, buf, size, page_size, component);
417 void mlx5_get_alloc_type(const char *component, argument
425 snprintf(name, sizeof(name), "%s_ALLOC_TYPE", component);
448 const char *component)
459 snprintf(name, sizeof(name), "%s_MAX_LOG2_CONTIG_BSIZE", component);
470 sprintf(name, "%s_MIN_LOG2_CONTIG_BSIZE", component);
486 const char *component)
497 component);
323 mlx5_alloc_prefered_buf(struct mlx5_context *mctx, struct mlx5_buf *buf, size_t size, int page_size, enum mlx5_alloc_type type, const char *component) argument
446 mlx5_alloc_get_env_info(int *max_block_log, int *min_block_log, const char *component) argument
483 mlx5_alloc_buf_contig(struct mlx5_context *mctx, struct mlx5_buf *buf, size_t size, int page_size, const char *component) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dpath.c115 const char *component,
119 apr_size_t clen = strlen(component);
123 assert(svn_path_is_canonical_internal(component, pool));
125 /* If the component is absolute, then return it. */
126 if (*component == '/')
127 return apr_pmemdup(pool, component, clen + 1);
131 return apr_pmemdup(pool, component, clen + 1);
132 if (SVN_PATH_IS_EMPTY(component))
136 blen = 0; /* Ignore base, just return separator + component */
142 memcpy(path + blen + 1, component, cle
111 svn_path_join_internal(const char *base, const char *component, apr_pool_t *pool) argument
144 svn_path_join(const char *base, const char *component, apr_pool_t *pool) argument
333 svn_path_add_component(svn_stringbuf_t *path, const char *component) argument
1089 svn_path_url_add_component2(const char *url, const char *component, apr_pool_t *pool) argument
[all...]
H A Ddirent_uri.c1005 const char *component,
1009 apr_size_t clen = strlen(component);
1014 assert(svn_dirent_is_canonical(component, pool));
1016 /* If the component is absolute, then return it. */
1017 if (svn_dirent_is_absolute(component))
1018 return apr_pmemdup(pool, component, clen + 1);
1022 return apr_pmemdup(pool, component, clen + 1);
1023 if (SVN_PATH_IS_EMPTY(component))
1027 if (component[0] == '/')
1032 /* Join component withou
1002 svn_dirent_join(const char *base, const char *component, apr_pool_t *pool) argument
1210 svn_relpath_join(const char *base, const char *component, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h187 /// directory component, then the \a file must have the same directory
188 /// component. Otherwise, just it matches just the filename. An empty \a
381 FileSpec CopyByAppendingPathComponent(llvm::StringRef component) const;
384 void PrependPathComponent(llvm::StringRef component);
387 void AppendPathComponent(llvm::StringRef component);
390 /// Removes the last path component by replacing the current path with its
/freebsd-11-stable/sys/fs/autofs/
H A Dautofs.h128 int autofs_trigger(struct autofs_node *anp, const char *component,
130 bool autofs_cached(struct autofs_node *anp, const char *component,
H A Dautofs.c295 autofs_cached(struct autofs_node *anp, const char *component, int componentlen) argument
313 error = autofs_node_find(anp, component, componentlen, NULL);
385 const char *component, int componentlen)
400 key = strndup(component, componentlen, M_AUTOFS);
514 const char *component, int componentlen)
519 error = autofs_trigger_one(anp, component, componentlen);
384 autofs_trigger_one(struct autofs_node *anp, const char *component, int componentlen) argument
513 autofs_trigger(struct autofs_node *anp, const char *component, int componentlen) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp400 FileSpec::CopyByAppendingPathComponent(llvm::StringRef component) const {
402 ret.AppendPathComponent(component);
421 void FileSpec::PrependPathComponent(llvm::StringRef component) { argument
422 llvm::SmallString<64> new_path(component);
435 void FileSpec::AppendPathComponent(llvm::StringRef component) { argument
438 llvm::sys::path::append(current_path, m_style, component);
/freebsd-11-stable/sys/fs/cd9660/
H A Dcd9660_rrip.h75 u_char component [ISODCL ( 5, 5)]; member in struct:__anon11987
/freebsd-11-stable/bin/sh/
H A Dcd.c178 char *component; local
185 * Check each component of the path. If we find a symlink or
203 component = q;
205 if (equal(component, ".."))
246 * Get the next component of the path name pointed to by *path.
/freebsd-11-stable/sbin/geom/core/
H A Dgeom.c931 const char *name, *status, *component; local
944 component = status_one_consumer(cp);
945 if (component == NULL)
949 component);
965 const char *name, *status, *component; local
985 component = status_one_consumer(cp);
986 if (component == NULL)
990 status_len, status, component);
/freebsd-11-stable/sys/xen/xenbus/
H A Dxenbusb.c567 u_int component; local
597 for (component = 0; component < xbs->xbs_id_components; component++) {
606 if (*id != 0 && component >= xbs->xbs_id_components - 1) {
/freebsd-11-stable/contrib/gcc/cp/
H A Dtypeck2.c1087 the structure or union component which results from narrowing
1221 build_m_component_ref (tree datum, tree component)
1229 if (error_operand_p (datum) || error_operand_p (component))
1232 ptrmem_type = TREE_TYPE (component);
1237 component, ptrmem_type);
1246 component, datum, objtype);
1294 datum, build_nop (ptrdiff_type_node, component));
1298 return build2 (OFFSET_REF, type, datum, component);
1216 build_m_component_ref(tree datum, tree component) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGVTables.cpp623 auto &component = layout.vtable_components()[idx]; local
631 switch (component.getKind()) {
633 return addOffsetConstant(component.getVCallOffset());
636 return addOffsetConstant(component.getVBaseOffset());
639 return addOffsetConstant(component.getOffsetToTop());
650 switch (component.getKind()) {
652 llvm_unreachable("Unexpected vtable component kind");
654 GD = component.getFunctionDecl();
657 GD = GlobalDecl(component.getDestructorDecl(), Dtor_Complete);
660 GD = GlobalDecl(component
[all...]
/freebsd-11-stable/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.h120 u_char component [ISODCL ( 4, 256)]; member in struct:__anon8769
/freebsd-11-stable/crypto/openssh/
H A Dsession.c1298 char component[PATH_MAX]; local
1303 if (strlen(path) >= sizeof(component))
1307 * Descend the path, checking that each component is a
1312 strlcpy(component, path, sizeof(component));
1315 memcpy(component, path, cp - path);
1316 component[cp - path] = '\0';
1319 debug3("%s: checking '%s'", __func__, component);
1321 if (stat(component, &st) != 0)
1323 component, strerro
[all...]
/freebsd-11-stable/sys/geom/virstor/
H A Dg_virstor.c252 * "add" verb from userland - add new component(s) to the structure.
265 const char *geom_name; /* geom to add a component to */
405 /* The new component becomes visible when n_components is
414 * a non-updated component is detected first */
417 LOG_MSG(LVL_INFO, "Added %d component(s) to %s", added,
495 * component of virstor
527 * Remove a component from virstor device.
528 * Can only be done if the component is unallocated.
595 LOG_MSG(LVL_ERROR, "No %s component in %s",
621 /* This is the critical section. If a component allocatio
1134 struct g_virstor_component *component; local
[all...]

Completed in 223 milliseconds

123