Home
last modified time | relevance | path

Searched refs:as (Results 1 – 25 of 6845) sorted by relevance

12345678910>>...274

/netbsd-src/sys/dev/ic/
H A Dac97.c490 #define SOURCE_INFO_SIZE(as) ((as)->type == AC97_CODEC_TYPE_MODEM ? \ argument
929 #define POWER_EAMP_ON(as) ((as->host_flags & AC97_HOST_INVERTED_EAMP) \ argument
931 #define POWER_EAMP_OFF(as) ((as->host_flags & AC97_HOST_INVERTED_EAMP) \ argument
935 ac97_read(struct ac97_softc *as, uint8_t reg, uint16_t *val) in ac97_read() argument
937 KASSERT(mutex_owned(as->lock)); in ac97_read()
939 if (as->host_flags & AC97_HOST_DONT_READ && in ac97_read()
942 *val = as->shadow_reg[reg >> 1]; in ac97_read()
946 if (as->host_if->read(as->host_if->arg, reg, val)) { in ac97_read()
947 *val = as->shadow_reg[reg >> 1]; in ac97_read()
952 ac97_write(struct ac97_softc *as, uint8_t reg, uint16_t val) in ac97_write() argument
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/
H A Dssl_asn1.c107 SSL_SESSION_ASN1 as; in i2d_SSL_SESSION() local
132 memset(&as, 0, sizeof(as)); in i2d_SSL_SESSION()
134 as.version = SSL_SESSION_ASN1_VERSION; in i2d_SSL_SESSION()
135 as.ssl_version = in->ssl_version; in i2d_SSL_SESSION()
144 ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2); in i2d_SSL_SESSION()
149 ssl_session_oinit(&as.comp_id, &comp_id, &comp_id_data, 1); in i2d_SSL_SESSION()
153 ssl_session_oinit(&as.master_key, &master_key, in i2d_SSL_SESSION()
156 ssl_session_oinit(&as.session_id, &session_id, in i2d_SSL_SESSION()
159 ssl_session_oinit(&as.session_id_context, &sid_ctx, in i2d_SSL_SESSION()
162 as.time = in->time; in i2d_SSL_SESSION()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/ssl/
H A Dssl_asn1.c109 SSL_SESSION_ASN1 as; in i2d_SSL_SESSION() local
134 memset(&as, 0, sizeof(as)); in i2d_SSL_SESSION()
136 as.version = SSL_SESSION_ASN1_VERSION; in i2d_SSL_SESSION()
137 as.ssl_version = in->ssl_version; in i2d_SSL_SESSION()
139 as.kex_group = in->kex_group; in i2d_SSL_SESSION()
148 ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2); in i2d_SSL_SESSION()
153 ssl_session_oinit(&as.comp_id, &comp_id, &comp_id_data, 1); in i2d_SSL_SESSION()
157 ssl_session_oinit(&as.master_key, &master_key, in i2d_SSL_SESSION()
160 ssl_session_oinit(&as.session_id, &session_id, in i2d_SSL_SESSION()
163 ssl_session_oinit(&as.session_id_context, &sid_ctx, in i2d_SSL_SESSION()
[all …]
/netbsd-src/sys/net80211/
H A Dieee80211_acl.c99 struct aclstate *as; in acl_attach() local
101 as = malloc(sizeof(struct aclstate), in acl_attach()
103 ACL_LOCK_INIT(as, "acl"); in acl_attach()
104 TAILQ_INIT(&as->as_list); in acl_attach()
105 as->as_policy = ACL_POLICY_OPEN; in acl_attach()
106 as->as_ic = ic; in acl_attach()
107 ic->ic_as = as; in acl_attach()
114 struct aclstate *as = ic->ic_as; in acl_detach() local
118 ACL_LOCK_DESTROY(as); in acl_detach()
119 free(as, M_DEVBUF); in acl_detach()
[all …]
/netbsd-src/sys/dev/acpi/acpica/
H A DOsdSynch.c114 struct acpi_semaphore *as; in AcpiOsCreateSemaphore() local
121 as = malloc(sizeof(*as), M_ACPI, M_NOWAIT); in AcpiOsCreateSemaphore()
122 if (as == NULL) in AcpiOsCreateSemaphore()
125 mutex_init(&as->as_slock, MUTEX_DEFAULT, IPL_NONE); in AcpiOsCreateSemaphore()
126 cv_init(&as->as_cv, "acpisem"); in AcpiOsCreateSemaphore()
127 as->as_units = InitialUnits; in AcpiOsCreateSemaphore()
128 as->as_maxunits = MaxUnits; in AcpiOsCreateSemaphore()
132 as, as->as_maxunits, as->as_units)); in AcpiOsCreateSemaphore()
134 *OutHandle = (ACPI_HANDLE) as; in AcpiOsCreateSemaphore()
146 struct acpi_semaphore *as = (void *) Handle; in AcpiOsDeleteSemaphore() local
[all …]
/netbsd-src/external/mit/isl/dist/include/isl/
H A Dcpp-checked-conversion.h50 return checked::manage(obj.copy()).as<checked::ast_expr_id>(); in check()
54 return manage(obj.copy()).as<ast_expr_id>(); in uncheck()
58 return checked::manage(obj.copy()).as<checked::ast_expr_int>(); in check()
62 return manage(obj.copy()).as<ast_expr_int>(); in uncheck()
66 return checked::manage(obj.copy()).as<checked::ast_expr_op>(); in check()
70 return manage(obj.copy()).as<ast_expr_op>(); in uncheck()
74 return checked::manage(obj.copy()).as<checked::ast_expr_op>().as<checked::ast_expr_op_access>(); in check()
78 return manage(obj.copy()).as<ast_expr_op>().as<ast_expr_op_access>(); in uncheck()
82 return checked::manage(obj.copy()).as<checked::ast_expr_op>().as<checked::ast_expr_op_add>(); in check()
86 return manage(obj.copy()).as<ast_expr_op>().as<ast_expr_op_add>(); in uncheck()
[all …]
/netbsd-src/external/bsd/elftoolchain/dist/libdwarf/
H A Dlibdwarf_arange.c37 Dwarf_ArangeSet as, tas; in _dwarf_arange_cleanup() local
40 STAILQ_FOREACH_SAFE(as, &dbg->dbg_aslist, as_next, tas) { in _dwarf_arange_cleanup()
41 STAILQ_FOREACH_SAFE(ar, &as->as_arlist, ar_next, tar) { in _dwarf_arange_cleanup()
42 STAILQ_REMOVE(&as->as_arlist, ar, _Dwarf_Arange, in _dwarf_arange_cleanup()
46 STAILQ_REMOVE(&dbg->dbg_aslist, as, _Dwarf_ArangeSet, as_next); in _dwarf_arange_cleanup()
47 free(as); in _dwarf_arange_cleanup()
61 Dwarf_ArangeSet as; in _dwarf_arange_init() local
81 if ((as = malloc(sizeof(struct _Dwarf_ArangeSet))) == NULL) { in _dwarf_arange_init()
85 STAILQ_INIT(&as->as_arlist); in _dwarf_arange_init()
86 STAILQ_INSERT_TAIL(&dbg->dbg_aslist, as, as_next); in _dwarf_arange_init()
[all …]
H A Ddwarf_arange.c100 Dwarf_ArangeSet as; in dwarf_get_cu_die_offset() local
107 as = ar->ar_as; in dwarf_get_cu_die_offset()
108 assert(as != NULL); in dwarf_get_cu_die_offset()
109 cu = as->as_cu; in dwarf_get_cu_die_offset()
126 Dwarf_ArangeSet as; in dwarf_get_arange_cu_header_offset() local
133 as = ar->ar_as; in dwarf_get_arange_cu_header_offset()
134 assert(as != NULL); in dwarf_get_arange_cu_header_offset()
137 DWARF_SET_ERROR(as->as_cu->cu_dbg, error, DW_DLE_ARGUMENT); in dwarf_get_arange_cu_header_offset()
141 *ret_offset = as->as_cu_offset; in dwarf_get_arange_cu_header_offset()
151 Dwarf_ArangeSet as; in dwarf_get_arange_info() local
[all …]
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DQLParser.tab.cc623 { result.out = yystack_[0].value.as < Expression * > (); } in parse()
629 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_DEG, yystack_[2].value.as < … in parse()
635 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_MUL, yystack_[2].value.as < … in parse()
641 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_DIV, yystack_[2].value.as < … in parse()
647 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_REM, yystack_[2].value.as < … in parse()
653 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_ADD, yystack_[2].value.as < … in parse()
659 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_MINUS, yystack_[2].value.as in parse()
665 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_LS, yystack_[2].value.as < E… in parse()
671 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_RS, yystack_[2].value.as < E… in parse()
677 …{ yylhs.value.as < Expression * > () = new Expression (Expression::OP_LT, yystack_[2].value.as < E… in parse()
[all …]
/netbsd-src/external/bsd/libevent/dist/
H A Dlistener.c534 free_and_unlock_accepting_socket(struct accepting_socket *as) in free_and_unlock_accepting_socket() argument
537 if (as->s != EVUTIL_INVALID_SOCKET) in free_and_unlock_accepting_socket()
538 closesocket(as->s); in free_and_unlock_accepting_socket()
540 LeaveCriticalSection(&as->lock); in free_and_unlock_accepting_socket()
541 DeleteCriticalSection(&as->lock); in free_and_unlock_accepting_socket()
542 mm_free(as); in free_and_unlock_accepting_socket()
546 start_accepting(struct accepting_socket *as) in start_accepting() argument
551 SOCKET s = socket(as->family, SOCK_STREAM, 0); in start_accepting()
554 if (!as->lev->base.enabled) in start_accepting()
565 (char *)&as->lev->fd, sizeof(&as->lev->fd)); in start_accepting()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Darray.c174 gfc_match_array_ref (gfc_array_ref *ar, gfc_array_spec *as, int init, in gfc_match_array_ref() argument
186 ar->as = as; in gfc_match_array_ref()
340 gfc_free_array_spec (gfc_array_spec *as) in gfc_free_array_spec() argument
344 if (as == NULL) in gfc_free_array_spec()
347 if (as->corank == 0) in gfc_free_array_spec()
349 for (i = 0; i < as->rank; i++) in gfc_free_array_spec()
351 gfc_free_expr (as->lower[i]); in gfc_free_array_spec()
352 gfc_free_expr (as->upper[i]); in gfc_free_array_spec()
357 int n = as->rank + as->corank - (as->cotype == AS_EXPLICIT ? 1 : 0); in gfc_free_array_spec()
360 gfc_free_expr (as->lower[i]); in gfc_free_array_spec()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Darray.cc181 gfc_match_array_ref (gfc_array_ref *ar, gfc_array_spec *as, int init, in gfc_match_array_ref() argument
193 ar->as = as; in gfc_match_array_ref()
347 gfc_free_array_spec (gfc_array_spec *as) in gfc_free_array_spec() argument
351 if (as == NULL) in gfc_free_array_spec()
354 if (as->corank == 0) in gfc_free_array_spec()
356 for (i = 0; i < as->rank; i++) in gfc_free_array_spec()
358 gfc_free_expr (as->lower[i]); in gfc_free_array_spec()
359 gfc_free_expr (as->upper[i]); in gfc_free_array_spec()
364 int n = as->rank + as->corank - (as->cotype == AS_EXPLICIT ? 1 : 0); in gfc_free_array_spec()
367 gfc_free_expr (as->lower[i]); in gfc_free_array_spec()
[all …]
/netbsd-src/external/bsd/libarchive/dist/libarchive/
H A Darchive_string_sprintf.c53 append_uint(struct archive_string *as, uintmax_t d, unsigned base) in append_uint() argument
57 append_uint(as, d/base, base); in append_uint()
58 archive_strappend_char(as, digits[d % base]); in append_uint()
62 append_int(struct archive_string *as, intmax_t d, unsigned base) in append_int() argument
67 archive_strappend_char(as, '-'); in append_int()
71 append_uint(as, ud, base); in append_int()
76 archive_string_sprintf(struct archive_string *as, const char *fmt, ...) in archive_string_sprintf() argument
81 archive_string_vsprintf(as, fmt, ap); in archive_string_sprintf()
90 archive_string_vsprintf(struct archive_string *as, const char *fmt, in archive_string_vsprintf() argument
99 if (archive_string_ensure(as, 64) == NULL) in archive_string_vsprintf()
[all …]
H A Darchive_cmdline.c43 extract_quotation(struct archive_string *as, const char *p) in extract_quotation() argument
50 archive_strappend_char(as, s[1]); in extract_quotation()
57 archive_strappend_char(as, s[0]); in extract_quotation()
67 get_argument(struct archive_string *as, const char *p) in get_argument() argument
71 archive_string_empty(as); in get_argument()
80 archive_strappend_char(as, s[1]); in get_argument()
87 ssize_t q = extract_quotation(as, s); in get_argument()
92 archive_strappend_char(as, s[0]); in get_argument()
109 struct archive_string as; in __archive_cmdline_parse() local
114 archive_string_init(&as); in __archive_cmdline_parse()
[all …]
H A Darchive_write_add_filter_lrzip.c132 struct archive_string as; in archive_write_lrzip_open() local
135 archive_string_init(&as); in archive_write_lrzip_open()
136 archive_strcpy(&as, "lrzip -q"); in archive_write_lrzip_open()
143 archive_strcat(&as, " -b"); in archive_write_lrzip_open()
146 archive_strcat(&as, " -g"); in archive_write_lrzip_open()
149 archive_strcat(&as, " -l"); in archive_write_lrzip_open()
152 archive_strcat(&as, " -n"); in archive_write_lrzip_open()
155 archive_strcat(&as, " -z"); in archive_write_lrzip_open()
161 archive_strcat(&as, " -L "); in archive_write_lrzip_open()
162 archive_strappend_char(&as, '0' + data->compression_level); in archive_write_lrzip_open()
[all …]
/netbsd-src/sys/dev/acpi/
H A Daibs_acpi.c177 struct aibs_sensor *as; in aibs_detach() local
185 as = SIMPLEQ_FIRST(&sc->as_head); in aibs_detach()
187 kmem_free(as, sizeof(*as)); in aibs_detach()
410 struct aibs_sensor *as; in aibs_sensor_add() local
415 as = NULL; in aibs_sensor_add()
462 as = kmem_zalloc(sizeof(*as), KM_SLEEP); in aibs_sensor_add()
466 as->as_type = obj->Package.Elements[0].Integer.Value; in aibs_sensor_add()
467 as->as_liml = obj->Package.Elements[llo].Integer.Value; in aibs_sensor_add()
468 as->as_limh = obj->Package.Elements[lhi].Integer.Value; in aibs_sensor_add()
471 as->as_limh += as->as_liml; /* A range in the new model. */ in aibs_sensor_add()
[all …]
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/sl/
H A Dslc-gram.y127 check_option(struct assignment *as) in check_option() argument
139 for(a = as; a != NULL; a = a->next) { in check_option()
160 ex(as, "neither long nor short option"); in check_option()
164 ex(as, "either of long or name option must be used"); in check_option()
168 ex(as, "multiple long options"); in check_option()
172 ex(as, "multiple short options"); in check_option()
176 ex(as, "multiple types"); in check_option()
180 ex(as, "multiple arguments"); in check_option()
184 ex(as, "multiple help strings"); in check_option()
188 ex(as, "multiple default values"); in check_option()
[all …]
H A Dslc-gram.c1429 check_option(struct assignment *as) in check_option() argument
1441 for(a = as; a != NULL; a = a->next) { in check_option()
1462 ex(as, "neither long nor short option"); in check_option()
1466 ex(as, "either of long or name option must be used"); in check_option()
1470 ex(as, "multiple long options"); in check_option()
1474 ex(as, "multiple short options"); in check_option()
1478 ex(as, "multiple types"); in check_option()
1482 ex(as, "multiple arguments"); in check_option()
1486 ex(as, "multiple help strings"); in check_option()
1490 ex(as, "multiple default values"); in check_option()
[all …]
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dauth-bsdauth.c64 if (authctxt->as != NULL) { in bsdauth_query()
66 challenge = auth_getitem(authctxt->as, AUTHV_CHALLENGE); in bsdauth_query()
68 auth_close(authctxt->as); in bsdauth_query()
69 authctxt->as = NULL; in bsdauth_query()
77 authctxt->as = auth_userchallenge(authctxt->user, in bsdauth_query()
79 if (authctxt->as == NULL) in bsdauth_query()
106 if (authctxt->as == NULL) in bsdauth_respond()
112 authok = auth_userresponse(authctxt->as, responses[0], 0); in bsdauth_respond()
113 authctxt->as = NULL; in bsdauth_respond()
124 if (authctxt && authctxt->as) { in bsdauth_free_ctx()
[all …]
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Dks_p12.c336 PKCS12_AuthenticatedSafe as; in p12_init() local
416 &as, in p12_init()
425 for (i = 0; i < as.len; i++) in p12_init()
428 &as.val[i].contentType, in p12_init()
429 as.val[i].content->data, in p12_init()
430 as.val[i].content->length, in p12_init()
433 free_PKCS12_AuthenticatedSafe(&as); in p12_init()
455 PKCS12_AuthenticatedSafe *as, in addBag() argument
463 ptr = realloc(as->val, sizeof(as->val[0]) * (as->len + 1)); in addBag()
468 as->val = ptr; in addBag()
[all …]
/netbsd-src/usr.bin/make/unit-tests/
H A Dvarname-empty.exp1 Command: ignoring ' = cmdline-u' as the variable name '${:U}' expands to empty
2 Command: ignoring ' = cmdline-plain' as the variable name '' expands to empty
9 Global: ignoring delete '.INCLUDEDFROMDIR' as it is not found
10 Global: ignoring delete '.INCLUDEDFROMFILE' as it is not found
11 Global: ignoring ' = default' as the variable name '' expands to empty
12 Global: ignoring ' = assigned' as the variable name '' expands to empty
13 Global: ignoring ' = appended' as the variable name is empty
14 Global: ignoring ' = ' as the variable name '' expands to empty
15 Global: ignoring ' = subst' as the variable name '' expands to empty
17 Global: ignoring ' = shell-output' as the variable name '' expands to empty
[all …]
/netbsd-src/external/gpl3/gdb/dist/libiberty/testsuite/
H A Drust-demangle-expected17 # Demangles as rust symbol.
21 # Also demangles as c++ gnu v3 mangled symbol. But with extra Rust hash.
48 _ZN71_$LT$Test$u20$$u2b$$u20$$u27$static$u20$as$u20$foo..Bar$LT$Test$GT$$GT$3bar17h930b740aa94f1d3aE
49 <Test + 'static as foo::Bar<Test>>::bar
52 _ZN54_$LT$I$u20$as$u20$core..iter..traits..IntoIterator$GT$9into_iter17h8581507801fb8615E
53 <I as core::iter::traits::IntoIterator>::into_iter
60 _ZN65_$LT$std..env..Args$u20$as$u20$core..iter..iterator..Iterator$GT$4next17h420a7c8d0c7eef40E
61 <std::env::Args as core::iter::iterator::Iterator>::next
92 _ZN70_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$9deref_mut17hf299b860dc5…
93 <collections::vec::Vec<T> as core::ops::DerefMut>::deref_mut
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-sparc.texi3 @c For copying conditions, see the file as.texinfo.
37 v6), but ``bumps'' the architecture level as needed: it switches to
38 successively higher architectures as it encounters instructions that
45 GAS treats sparclite as being compatible with v8, unless an architecture
48 @c The order here is the same as the order of enum sparc_opcode_arch_val
96 as well as the instructions enabled by @samp{-Av8plusa} and @samp{-Av9a}.
99 as well as the instructions enabled by @samp{-Av8plusb} and @samp{-Av9b}.
102 multiply-add, VIS 3.0, and HPC extension instructions, as well as the
106 instructions, as well as the instructions enabled by @samp{-Av8plusd}
110 multiply-add, and integer multiply-add, as well as the instructions
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-sparc.texi3 @c For copying conditions, see the file as.texinfo.
37 v6), but ``bumps'' the architecture level as needed: it switches to
38 successively higher architectures as it encounters instructions that
45 GAS treats sparclite as being compatible with v8, unless an architecture
48 @c The order here is the same as the order of enum sparc_opcode_arch_val
96 as well as the instructions enabled by @samp{-Av8plusa} and @samp{-Av9a}.
99 as well as the instructions enabled by @samp{-Av8plusb} and @samp{-Av9b}.
102 multiply-add, VIS 3.0, and HPC extension instructions, as well as the
106 instructions, as well as the instructions enabled by @samp{-Av8plusd}
110 multiply-add, and integer multiply-add, as well as the instructions
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-as.rst1 llvm-as - LLVM assembler
4 .. program:: llvm-as
9 **llvm-as** [*options*] [*filename*]
14 **llvm-as** is the LLVM assembler. It reads a file containing human-readable
18 If *filename* is omitted or is ``-``, then **llvm-as** reads its input from
22 **llvm-as** sends its output to a file or standard output by following
31 output file has the same name as the input file, except that the ``.bc``
38 Enable binary output on terminals. Normally, **llvm-as** will refuse to
40 **llvm-as** will write raw bitcode regardless of the output device.
46 Specify the output file name. If *filename* is ``-``, then **llvm-as**
[all …]

12345678910>>...274