Home
last modified time | relevance | path

Searched refs:components (Results 1 – 25 of 891) sorted by relevance

12345678910>>...36

/netbsd-src/sys/external/bsd/acpica/dist/generate/lint/
H A Dfiles.lnt2 // Basic ACPICA components
4 ..\..\source\components\debugger\*.c
5 ..\..\source\components\disassembler\*.c
6 ..\..\source\components\dispatcher\*.c
7 ..\..\source\components\events\*.c
8 ..\..\source\components\executer\*.c
9 ..\..\source\components\hardware\*.c
10 ..\..\source\components\namespace\*.c
11 ..\..\source\components\parser\*.c
12 ..\..\source\components\resources\*.c
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/
H A DOID.pm156 my @components;
159 @components = ( $oid =~ m/${objcomponent_re}\s*/g );
162 @components = ( $oid =~ m/${xmlobjcomponent_re}\.?/g );
165 croak "Invalid ASN.1 object '$input'" unless @components;
167 unless scalar(@components) % 2 == 0;
178 } ( @components[0..1] );
188 } @components[2..$#components]
194 if (scalar @components > 2
195 && $components[0] ne ''
196 && defined $name2oid{$components[0]}) {
[all …]
/netbsd-src/external/gpl2/groff/dist/src/include/
H A Dcolor.h36 unsigned int components[4]; variable
87 #define Cyan components[0]
88 #define Magenta components[1]
89 #define Yellow components[2]
90 #define Black components[3]
92 #define Red components[0]
93 #define Green components[1]
94 #define Blue components[2]
96 #define Gray components[0]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dshrink-wrap.c1060 dump_components (const char *label, sbitmap components) in dump_components() argument
1062 if (bitmap_empty_p (components)) in dump_components()
1067 for (unsigned int j = 0; j < components->n_bits; j++) in dump_components()
1068 if (bitmap_bit_p (components, j)) in dump_components()
1113 init_separate_shrink_wrap (sbitmap components) in init_separate_shrink_wrap() argument
1127 bitmap_copy (SW (bb)->needs_components, components); in init_separate_shrink_wrap()
1136 SW (bb)->has_components = sbitmap_alloc (SBITMAP_SIZE (components)); in init_separate_shrink_wrap()
1137 SW (bb)->head_components = sbitmap_alloc (SBITMAP_SIZE (components)); in init_separate_shrink_wrap()
1138 SW (bb)->tail_components = sbitmap_alloc (SBITMAP_SIZE (components)); in init_separate_shrink_wrap()
1266 spread_components (sbitmap components) in spread_components() argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dshrink-wrap.cc1071 dump_components (const char *label, sbitmap components) in dump_components() argument
1073 if (bitmap_empty_p (components)) in dump_components()
1078 for (unsigned int j = 0; j < components->n_bits; j++) in dump_components()
1079 if (bitmap_bit_p (components, j)) in dump_components()
1124 init_separate_shrink_wrap (sbitmap components) in init_separate_shrink_wrap() argument
1138 bitmap_copy (SW (bb)->needs_components, components); in init_separate_shrink_wrap()
1147 SW (bb)->has_components = sbitmap_alloc (SBITMAP_SIZE (components)); in init_separate_shrink_wrap()
1148 SW (bb)->head_components = sbitmap_alloc (SBITMAP_SIZE (components)); in init_separate_shrink_wrap()
1149 SW (bb)->tail_components = sbitmap_alloc (SBITMAP_SIZE (components)); in init_separate_shrink_wrap()
1277 spread_components (sbitmap components) in spread_components() argument
[all …]
/netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/
H A Dcolor.cpp81 components[0] = c->components[0]; in color()
82 components[1] = c->components[1]; in color()
83 components[2] = c->components[2]; in color()
84 components[3] = c->components[3]; in color()
130 c[0] = components[0]; in get_components()
131 c[1] = components[1]; in get_components()
132 c[2] = components[2]; in get_components()
133 c[3] = components[3]; in get_components()
228 if (!atoh(&(components[i]), p, hex_length)) in read_encoding()
231 components[i] *= 0x101; // scale up -- 0xff should become 0xffff in read_encoding()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-config.rst9 **llvm-config** *option* [*components*...]
75 *components*, including any dependencies.
89 **--components**
105 To print a list of all available components, run **llvm-config
106 --components**. In most cases, components correspond directly to LLVM
107 libraries. Useful "virtual" components include:
111 Includes all LLVM libraries. The default if no components are specified.
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dder_format.c119 p = rk_strpoolprintf(p, "%d", oid->components[i]); in der_print_heim_oid()
142 data->components = NULL; in der_parse_heim_oid()
153 c = realloc(data->components, in der_parse_heim_oid()
154 (data->length + 1) * sizeof(data->components[0])); in der_parse_heim_oid()
160 data->components = c; in der_parse_heim_oid()
168 data->components[data->length++] = (unsigned int)l; in der_parse_heim_oid()
H A Dder_copy.c181 to->components = malloc(to->length * sizeof(*to->components)); in der_copy_oid()
182 if (to->length != 0 && to->components == NULL) in der_copy_oid()
184 memcpy(to->components, from->components, in der_copy_oid()
185 to->length * sizeof(*to->components)); in der_copy_oid()
H A Dder_cmp.c43 return memcmp(p->components, in der_heim_oid_cmp()
44 q->components, in der_heim_oid_cmp()
45 p->length * sizeof(*p->components)); in der_heim_oid_cmp()
H A Dder_get.c583 if (len + 1 > UINT_MAX/sizeof(data->components[0])) in der_get_oid()
586 data->components = malloc((len + 1) * sizeof(data->components[0])); in der_get_oid()
587 if (data->components == NULL) in der_get_oid()
589 data->components[0] = (*p) / 40; in der_get_oid()
590 data->components[1] = (*p) % 40; in der_get_oid()
606 data->components[n] = u; in der_get_oid()
/netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/record/
H A DREADME7 The record layer is divided into a number of components. At the time of writing
9 of these components is defined by:
19 The source files map to components as follows:
27 interface to the record layer for the rest of libssl. The other 3 components are
35 directly access its members. Instead components use accessor macros, so if code
/netbsd-src/sys/rump/
H A DREADME.dirs5 First, components in the kernel namespace, i.e. compiled with -D_KERNEL
20 sys/rump/dev - device components, e.g. audio, raidframe, usb drivers
22 sys/rump/fs - file system components
25 sys/rump/net - networking components
37 The rest are out-of-kernel components (i.e. no -D_KERNEL).
/netbsd-src/crypto/external/bsd/openssl/dist/ssl/record/
H A DREADME.md7 The record layer is divided into a number of components. At the time of writing
9 of these components is defined by:
19 The source files map to components as follows:
27 interface to the record layer for the rest of libssl. The other 3 components are
35 directly access its members. Instead components use accessor macros, so if code
/netbsd-src/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000-internal.h91 extern void rs6000_disqualify_components (sbitmap components, edge e,
94 extern void rs6000_emit_prologue_components (sbitmap components);
95 extern void rs6000_emit_epilogue_components (sbitmap components);
96 extern void rs6000_set_handled_components (sbitmap components);
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
H A Drs6000-internal.h87 extern void rs6000_disqualify_components (sbitmap components, edge e,
90 extern void rs6000_emit_prologue_components (sbitmap components);
91 extern void rs6000_emit_epilogue_components (sbitmap components);
92 extern void rs6000_set_handled_components (sbitmap components);
/netbsd-src/external/bsd/libevent/dist/cmake/
H A DLibeventConfig.cmake.in3 # LIBEVENT_FOUND - true if libevent and all required components found on the system
4 # LIBEVENT_xxx_FOUND - true if component xxx(see available components) found on the system
15 # When you try to locate the libevent libraries, you should specify which components you want to us…
16 # The following table lists all available components. If none is given, all imported targets will u…
24 # If no component provided, all components will be used.
76 "The valid components are core, extra${pthreadlib} and openssl.")
/netbsd-src/sys/external/bsd/acpica/
H A Dacpica2netbsd45 mv components/* .
46 rmdir source components
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-view/share/
H A DScanView.py672 components = path.split('/')[1:]
675 if components:
676 name = components[0]
677 if len(components)==2:
679 return self.send_report(components[1])
681 return self.send_open_report(components[1])
682 elif len(components)==1:
703 if components[-1] == '':
704 components[-1] = 'index.html'
706 relpath = '/'.join(components)
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
H A Dgss_krb5.c632 oid.components = calloc(oid.length, sizeof(*oid.components)); in gsskrb5_extract_authz_data_from_sec_context()
633 if (oid.components == NULL) { in gsskrb5_extract_authz_data_from_sec_context()
640 memcpy(oid.components, baseoid.components, in gsskrb5_extract_authz_data_from_sec_context()
641 baseoid.length * sizeof(*baseoid.components)); in gsskrb5_extract_authz_data_from_sec_context()
645 oid.components[oid.length - 1] = ad_type; in gsskrb5_extract_authz_data_from_sec_context()
650 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context()
657 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context()
665 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man1/
H A Dopenssl-pkey.pod.in38 converted between various forms and their components printed.
57 components.
92 With this option only the public components are read.
135 this option restricts the output to the public components.
146 Output the various key components in plain text
152 Output in text form only the public key components (also for private keys).
195 To print out the components of a private key to standard output:
199 To print out the public components of a private key to standard output:
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man1/
H A Dpkey.pod32 between various forms and their components printed out.
87 Prints out the various public or private key components in
92 Print out only public key components even if a private key is being processed.
119 components.
142 To print out the components of a private key to standard output:
146 To print out the public components of a private key to standard output:
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DPath.cpp423 SmallVector<StringRef, 4> components; in append() local
424 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage)); in append()
425 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage)); in append()
426 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage)); in append()
427 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage)); in append()
429 for (auto &component : components) { in append()
719 SmallVector<StringRef, 16> components; in remove_dots() local
752 if (!components.empty() && components.back() != "..") { in remove_dots()
753 components.pop_back(); in remove_dots()
755 components.push_back(component); in remove_dots()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-go/
H A Dllvm-go.go43 var components = []string{ var
91 args := append([]string{"--ldflags", "--libs", "--system-libs"}, components...)
130 fmt.Println(strings.Join(components, " "))
243 Available subcommands: build get install run test print-components print-config`)
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DEVP_PKEY_print_private.pod21 EVP_PKEY_print_params() print out the public, private or parameter components
33 If the key does not include all the components indicated by the function then
35 key to EVP_PKEY_print_private() will only print the public components.

12345678910>>...36