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

12

/freebsd-10-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...]
H A Dstub-objc.c360 objc_build_component_ref (tree ARG_UNUSED (datum), tree ARG_UNUSED (component))
536 tree ARG_UNUSED (component))
H A Dtree-chrec.c671 tree component;
682 component = CHREC_RIGHT (chrec);
684 component = CHREC_LEFT (chrec);
688 return component;
696 component);
668 tree component; local
/freebsd-10-stable/usr.sbin/pkg_install/lib/
H A Dversion.c97 * PORTVERSIONs are composed of components separated by dots. A component
117 * get_component(position, component) gets the value of the next component
140 * - The special component `*' is guaranteed to be the smallest possible
141 * component (2.* < 2pl1 < 2alpha3 < 2.9f7 < 3.*)
161 get_component(const char *position, version_component *component) argument
173 component->n = strtoll(pos, &endptr, 10);
175 component->n = strtol(pos, &endptr, 10);
180 component->n = -2;
185 component
[all...]
/freebsd-10-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-10-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.h183 /** Join a base dirent (@a base) with a component (@a component).
185 * If either @a base or @a component is the empty string, then the other
189 * If the @a component is an absolute dirent, then it is copied and returned.
202 const char *component,
208 * If any component is the empty string, it will be ignored.
210 * If any component is an absolute dirent, then it resets the base and
224 /** Join a base relpath (@a base) with a component (@a component).
225 * @a component nee
[all...]
/freebsd-10-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-10-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-10-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
1078 svn_path_url_add_component2(const char *url, const char *component, apr_pool_t *pool) argument
[all...]
H A Ddirent_uri.c966 const char *component,
970 apr_size_t clen = strlen(component);
975 assert(svn_dirent_is_canonical(component, pool));
977 /* If the component is absolute, then return it. */
978 if (svn_dirent_is_absolute(component))
979 return apr_pmemdup(pool, component, clen + 1);
983 return apr_pmemdup(pool, component, clen + 1);
984 if (SVN_PATH_IS_EMPTY(component))
988 if (component[0] == '/')
993 /* Join component withou
963 svn_dirent_join(const char *base, const char *component, apr_pool_t *pool) argument
1171 svn_relpath_join(const char *base, const char *component, apr_pool_t *pool) argument
[all...]
/freebsd-10-stable/sys/fs/autofs/
H A Dautofs.h132 int autofs_trigger(struct autofs_node *anp, const char *component,
134 bool autofs_cached(struct autofs_node *anp, const char *component,
H A Dautofs.c285 autofs_cached(struct autofs_node *anp, const char *component, int componentlen) argument
303 error = autofs_node_find(anp, component, componentlen, NULL);
375 const char *component, int componentlen)
390 key = strndup(component, componentlen, M_AUTOFS);
508 const char *component, int componentlen)
513 error = autofs_trigger_one(anp, component, componentlen);
374 autofs_trigger_one(struct autofs_node *anp, const char *component, int componentlen) argument
507 autofs_trigger(struct autofs_node *anp, const char *component, int componentlen) argument
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dlock.c865 const char *component;
914 info.component = NULL;
960 if (!info->component)
962 info->component = info->path;
968 info->component = strchr(info->component + 1, '/');
969 if (!info->component)
971 /* The component is a path to lock, this cannot
1001 /* The component is a path to an index. */
1002 apr_size_t len = info->component
862 const char *component; member in struct:lock_info_t
1064 const char *component; member in struct:unlock_info_t
[all...]
/freebsd-10-stable/sys/fs/cd9660/
H A Dcd9660_rrip.h75 u_char component [ISODCL ( 5, 5)]; member in struct:__anon10213
/freebsd-10-stable/bin/sh/
H A Dcd.c181 char *component; local
187 * Check each component of the path. If we find a symlink or
205 component = q;
207 if (equal(component, ".."))
248 * Get the next component of the path name pointed to by cdcomppath.
/freebsd-10-stable/sbin/geom/core/
H A Dgeom.c924 const char *name, *status, *component; local
937 component = status_one_consumer(cp);
938 if (component == NULL)
942 component);
958 const char *name, *status, *component; local
978 component = status_one_consumer(cp);
979 if (component == NULL)
983 status_len, status, component);
/freebsd-10-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-10-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-10-stable/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.h118 u_char component [ISODCL ( 4, 256)]; member in struct:__anon12109
H A Diso9660_rrip.c528 memcpy(current->attr.rr_entry.SL.component + path_count,
576 current->attr.rr_entry.SL.component +
593 current->attr.rr_entry.SL.component[
598 current->attr.rr_entry.SL.component[1]
603 current->attr.rr_entry.SL.component[
612 memcpy(current->attr.rr_entry.SL.component +
/freebsd-10-stable/sys/geom/virstor/
H A Dg_virstor.c256 * "add" verb from userland - add new component(s) to the structure.
269 const char *geom_name; /* geom to add a component to */
409 /* The new component becomes visible when n_components is
418 * a non-updated component is detected first */
421 LOG_MSG(LVL_INFO, "Added %d component(s) to %s", added,
499 * component of virstor
531 * Remove a component from virstor device.
532 * Can only be done if the component is unallocated.
599 LOG_MSG(LVL_ERROR, "No %s component in %s",
625 /* This is the critical section. If a component allocatio
1138 struct g_virstor_component *component; local
[all...]
/freebsd-10-stable/contrib/bmake/unit-tests/
H A Ddotwait.mk21 # then the target names will differ only in an alphabetic component

Completed in 175 milliseconds

12