Searched refs:components (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-11-stable/usr.sbin/acpi/
H A DMakefile.inc16 ${ACPICA_DIR}/components/debugger \
17 ${ACPICA_DIR}/components/disassembler \
18 ${ACPICA_DIR}/components/dispatcher \
19 ${ACPICA_DIR}/components/events \
20 ${ACPICA_DIR}/components/executer \
21 ${ACPICA_DIR}/components/hardware \
22 ${ACPICA_DIR}/components/namespace \
23 ${ACPICA_DIR}/components/parser \
24 ${ACPICA_DIR}/components/resources \
25 ${ACPICA_DIR}/components/table
[all...]
/freebsd-11-stable/contrib/groff/src/include/
H A Dcolor.h34 unsigned int components[4]; member in class:color
71 // Return the actual color scheme and retrieve the color components
75 // retrieve the components of a color
85 #define Cyan components[0]
86 #define Magenta components[1]
87 #define Yellow components[2]
88 #define Black components[3]
90 #define Red components[0]
91 #define Green components[1]
92 #define Blue components[
[all...]
/freebsd-11-stable/etc/periodic/daily/
H A D401.status-graid20 components="$(graid status -s | fgrep -v OPTIMAL)"
21 if [ "${components}" ]; then
H A D406.status-gmirror20 components="$(gmirror status -s | fgrep -v COMPLETE)"
21 if [ "${components}" ]; then
H A D407.status-graid320 components="$(graid3 status -s | fgrep -v COMPLETE)"
21 if [ "${components}" ]; then
H A D408.status-gstripe20 components="$(gstripe status -s | fgrep -v UP)"
21 if [ "${components}" ]; then
H A D409.status-gconcat20 components="$(gconcat status -s | fgrep -v UP)"
21 if [ "${components}" ]; then
/freebsd-11-stable/lib/libc/locale/
H A Dxlocale.c51 * components for the parts that are expected to be sensible.
189 if (loc->components[type]) {
190 xlocale_release(loc->components[type]);
223 /* Always copy from the global locale, since it has mutable components.
225 struct xlocale_component *src = base->components[type];
228 new->components[type] = constructors[type](src->locale, new);
229 if (new->components[type]) {
230 strncpy(new->components[type]->locale, src->locale,
233 } else if (base->components[type]) {
234 new->components[typ
[all...]
H A Dlmessages.c109 ? &((struct xlocale_messages *)loc->components[XLC_MESSAGES])->locale
H A Dlnumeric.c112 ? &((struct xlocale_numeric *)loc->components[XLC_NUMERIC])->locale
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dder_format.c117 p = rk_strpoolprintf(p, "%d", oid->components[i]);
140 data->components = NULL;
151 c = realloc(data->components,
152 (data->length + 1) * sizeof(data->components[0]));
158 data->components = c;
166 data->components[data->length++] = l;
H A Dder_copy.c161 to->components = malloc(to->length * sizeof(*to->components));
162 if (to->length != 0 && to->components == NULL)
164 memcpy(to->components, from->components,
165 to->length * sizeof(*to->components));
H A Dder_free.c133 free(k->components);
134 k->components = NULL;
H A Dder_cmp.c41 return memcmp(p->components,
42 q->components,
43 p->length * sizeof(*p->components));
H A Dasn1-common.h40 unsigned *components; member in struct:heim_oid
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dcolor.cpp79 components[0] = c->components[0];
80 components[1] = c->components[1];
81 components[2] = c->components[2];
82 components[3] = c->components[3];
126 fatal("argument is not big enough to store 4 color components");
128 c[0] = components[
[all...]
/freebsd-11-stable/sys/geom/virstor/
H A Dg_virstor.c29 * virtual storage (i.e. a virstor has "physical" components)
98 "Minimum number of free components before issuing administrative warning");
254 * .taste function for new components.
300 LOG_MSG(LVL_ERROR, "Cannot add components to incomplete "
306 fcp = sc->components[0].gcons;
333 " %u components)", prov_name, added);
374 if (strcmp(sc->components[j].gcons->provider->name,
383 sc->components = realloc(sc->components,
384 sizeof(*sc->components) * (s
[all...]
H A Dg_virstor.h106 struct g_virstor_component *components; member in struct:g_virstor_softc
/freebsd-11-stable/lib/libc/stdtime/
H A Dtimelocal.c124 ? &((struct xlocale_time *)loc->components[XLC_TIME])->locale
/freebsd-11-stable/lib/libc/string/
H A Dstrcoll.c75 (struct xlocale_collate*)locale->components[XLC_COLLATE];
H A Dstrxfrm.c60 (struct xlocale_collate*)locale->components[XLC_COLLATE];
H A Dwcsxfrm.c48 (struct xlocale_collate*)locale->components[XLC_COLLATE];
/freebsd-11-stable/usr.sbin/pc-sysinstall/backend-query/
H A DMakefile5 list-components.sh list-mirrors.sh list-packages.sh list-rsync-backups.sh \
/freebsd-11-stable/usr.sbin/pc-sysinstall/pc-sysinstall/
H A Dpc-sysinstall.sh45 # Set this to the components location
46 COMPDIR="${PROGDIR}/components"
163 # Function which lists components available
164 list-components) ${QUERYDIR}/list-components.sh
/freebsd-11-stable/kerberos5/lib/libgssapi_krb5/
H A Dgss_krb5.c602 oid.components = calloc(oid.length, sizeof(*oid.components));
603 if (oid.components == NULL) {
610 memcpy(oid.components, baseoid.components,
611 baseoid.length * sizeof(*baseoid.components));
615 oid.components[oid.length - 1] = ad_type;
620 free(oid.components);
627 free(oid.components);
635 free(oid.components);
[all...]

Completed in 212 milliseconds

123