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

12

/freebsd-10.0-release/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 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.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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.c965 const char *component,
969 apr_size_t clen = strlen(component);
974 assert(svn_dirent_is_canonical(component, pool));
976 /* If the component is absolute, then return it. */
977 if (svn_dirent_is_absolute(component))
978 return apr_pmemdup(pool, component, clen + 1);
982 return apr_pmemdup(pool, component, clen + 1);
983 if (SVN_PATH_IS_EMPTY(component))
987 if (component[0] == '/')
992 /* Join component withou
962 svn_dirent_join(const char *base, const char *component, apr_pool_t *pool) argument
1170 svn_relpath_join(const char *base, const char *component, apr_pool_t *pool) argument
[all...]
/freebsd-10.0-release/sys/fs/cd9660/
H A Dcd9660_rrip.h75 u_char component [ISODCL ( 5, 5)]; member in struct:__anon9742
/freebsd-10.0-release/bin/sh/
H A Dcd.c181 char *component; local
187 * Check each component of the path. If we find a symlink or
206 component = q;
208 if (equal(component, ".."))
249 * Get the next component of the path name pointed to by cdcomppath.
/freebsd-10.0-release/sys/dev/usb/input/
H A Datp.c153 * component.
878 * Match a pressure-span against a stroke-component. If there is a
879 * match, update the component's state and return TRUE.
882 atp_match_stroke_component(atp_stroke_component *component, argument
888 delta_mickeys = pspan->loc - component->loc;
893 component->loc = pspan->loc;
900 * matching stroke component(s). But such a change should
903 if (pspan->cum > ((3 * component->cum_pressure) >> 1))
906 component->cum_pressure = pspan->cum;
907 if (pspan->cum > component
1389 atp_update_pending_mickeys(atp_stroke_component *component) argument
[all...]
/freebsd-10.0-release/sbin/geom/core/
H A Dgeom.c925 const char *name, *status, *component; local
938 component = status_one_consumer(cp);
939 if (component == NULL)
943 component);
959 const char *name, *status, *component; local
979 component = status_one_consumer(cp);
980 if (component == NULL)
984 status_len, status, component);
/freebsd-10.0-release/sys/xen/xenbus/
H A Dxenbusb.c568 u_int component; local
599 for (component = 0; component < xbs->xbs_id_components; component++) {
608 if (*id != 0 && component >= xbs->xbs_id_components - 1) {
/freebsd-10.0-release/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.0-release/contrib/amd/amd/
H A Dmapc.c1156 char component[MAXPATHLEN], *str; local
1177 xstrlcpy(component, path, sizeof(component));
1179 str = strtok(component, ":");
/freebsd-10.0-release/usr.sbin/makefs/cd9660/
H A Diso9660_rrip.h118 u_char component [ISODCL ( 4, 256)]; member in struct:__anon11595
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.0-release/crypto/openssh/
H A Dsession.c1444 char component[MAXPATHLEN]; local
1449 if (strlen(path) >= sizeof(component))
1453 * Descend the path, checking that each component is a
1458 strlcpy(component, path, sizeof(component));
1461 memcpy(component, path, cp - path);
1462 component[cp - path] = '\0';
1465 debug3("%s: checking '%s'", __func__, component);
1467 if (stat(component, &st) != 0)
1469 component, strerro
[all...]
/freebsd-10.0-release/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
1139 struct g_virstor_component *component; local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dpatch.c288 const char *component;
290 component = APR_ARRAY_IDX(components, i, const char *);
291 APR_ARRAY_PUSH(stripped, const char *) = component;
2363 const char *component;
2368 component = APR_ARRAY_IDX(components, i, const char *);
2369 local_abspath = svn_dirent_join(local_abspath, component, scratch_pool);
2410 const char *component;
2411 component = APR_ARRAY_IDX(components, i, const char *);
2413 component, scratch_pool);
2427 const char *component;
287 const char *component; local
2362 const char *component; local
2409 const char *component; local
2426 const char *component; local
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Ddsl_dir.c253 getcomponent(const char *path, char *component, const char **nextp) argument
276 (void) strcpy(component, path);
281 (void) strncpy(component, path, p - path);
282 component[p - path] = '\0';
293 (void) strncpy(component, path, p - path);
294 component[p - path] = '\0';
303 * Return the dsl_dir_t, and possibly the last component which couldn't
307 * (*tail)[0] == '@' means that the last component is a snapshot.
369 * It's an error if there's more than one component left, or
370 * tailp==NULL and there's any component lef
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DPathV1.h249 /// This function returns the last component of the path name. The last
250 /// component is the file or directory name occurring after the last
253 /// @returns StringRef containing the last component of the path name.
254 /// @brief Returns the last component of the path name.
449 /// One path component is removed from the Path. If only one component is
452 /// @returns false if the path component could not be removed.
453 /// @brief Removes the last directory component of the Path.
456 /// The \p component is added to the end of the Path if it is a legal
459 /// @returns false if the path component coul
[all...]

Completed in 173 milliseconds

12