Searched refs:as (Results 1 - 25 of 459) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.bin/clang/llvm-as/
H A DMakefile1 # $FreeBSD: stable/11/usr.bin/clang/llvm-as/Makefile 360660 2020-05-05 17:10:49Z dim $
3 PROG_CXX= llvm-as
5 SRCDIR= llvm/tools/llvm-as
6 SRCS+= llvm-as.cpp
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Daggsum.c31 * buckets. The core counter contains a lock for the entire counter, as well
32 * as the current upper and lower bounds on the value of the counter. The
83 aggsum_init(aggsum_t *as, uint64_t value) argument
85 bzero(as, sizeof (*as));
86 as->as_lower_bound = as->as_upper_bound = value;
87 mutex_init(&as->as_lock, NULL, MUTEX_DEFAULT, NULL);
88 as->as_numbuckets = boot_ncpus;
89 as
98 aggsum_fini(aggsum_t *as) argument
106 aggsum_lower_bound(aggsum_t *as) argument
112 aggsum_upper_bound(aggsum_t *as) argument
118 aggsum_flush_bucket(aggsum_t *as, struct aggsum_bucket *asb) argument
138 aggsum_value(aggsum_t *as) argument
166 aggsum_borrow(aggsum_t *as, int64_t delta, struct aggsum_bucket *asb) argument
183 aggsum_add(aggsum_t *as, int64_t delta) argument
207 aggsum_compare(aggsum_t *as, uint64_t target) argument
[all...]
/freebsd-11-stable/sys/net80211/
H A Dieee80211_acl.c64 * NB: ACL_POLICY_RADIUS must be the same value as
101 struct aclstate *as; local
103 as = (struct aclstate *) IEEE80211_MALLOC(sizeof(struct aclstate),
105 if (as == NULL)
107 ACL_LOCK_INIT(as, "acl");
108 TAILQ_INIT(&as->as_list);
109 as->as_policy = ACL_POLICY_OPEN;
110 as->as_vap = vap;
111 vap->iv_as = as;
119 struct aclstate *as local
131 _find_acl(struct aclstate *as, const uint8_t *macaddr) argument
145 _acl_free(struct aclstate *as, struct acl *acl) argument
158 struct aclstate *as = vap->iv_as; local
175 struct aclstate *as = vap->iv_as; local
214 struct aclstate *as = vap->iv_as; local
233 struct aclstate *as = vap->iv_as; local
249 struct aclstate *as = vap->iv_as; local
276 struct aclstate *as = vap->iv_as; local
291 struct aclstate *as = vap->iv_as; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_string_sprintf.c54 append_uint(struct archive_string *as, uintmax_t d, unsigned base) argument
58 append_uint(as, d/base, base);
59 archive_strappend_char(as, digits[d % base]);
63 append_int(struct archive_string *as, intmax_t d, unsigned base) argument
68 archive_strappend_char(as, '-');
72 append_uint(as, ud, base);
77 archive_string_sprintf(struct archive_string *as, const char *fmt, ...) argument
82 archive_string_vsprintf(as, fmt, ap);
91 archive_string_vsprintf(struct archive_string *as, const char *fmt, argument
100 if (archive_string_ensure(as, 6
[all...]
H A Darchive_cmdline.c45 extract_quotation(struct archive_string *as, const char *p) argument
52 archive_strappend_char(as, s[1]);
59 archive_strappend_char(as, s[0]);
69 get_argument(struct archive_string *as, const char *p) argument
73 archive_string_empty(as);
82 archive_strappend_char(as, s[1]);
89 ssize_t q = extract_quotation(as, s);
94 archive_strappend_char(as, s[0]);
111 struct archive_string as; local
116 archive_string_init(&as);
[all...]
H A Darchive_string.c204 archive_string_append(struct archive_string *as, const char *p, size_t s) argument
206 if (archive_string_ensure(as, as->length + s + 1) == NULL)
209 memmove(as->s + as->length, p, s);
210 as->length += s;
211 as->s[as->length] = 0;
212 return (as);
216 archive_wstring_append(struct archive_wstring *as, cons argument
228 archive_array_append(struct archive_string *as, const char *p, size_t s) argument
249 archive_string_free(struct archive_string *as) argument
258 archive_wstring_free(struct archive_wstring *as) argument
267 archive_wstring_ensure(struct archive_wstring *as, size_t s) argument
276 archive_string_ensure(struct archive_string *as, size_t s) argument
338 archive_strncat(struct archive_string *as, const void *_p, size_t n) argument
358 archive_wstrncat(struct archive_wstring *as, const wchar_t *p, size_t n) argument
376 archive_strcat(struct archive_string *as, const void *p) argument
388 archive_wstrcat(struct archive_wstring *as, const wchar_t *p) argument
395 archive_strappend_char(struct archive_string *as, char c) argument
403 archive_wstrappend_wchar(struct archive_wstring *as, wchar_t c) argument
670 archive_string_append_from_wcs(struct archive_string *as, const wchar_t *w, size_t len) argument
677 archive_string_append_from_wcs_in_codepage(struct archive_string *as, const wchar_t *ws, size_t len, struct archive_string_conv *sc) argument
775 archive_string_append_from_wcs(struct archive_string *as, const wchar_t *w, size_t len) argument
849 archive_string_append_from_wcs(struct archive_string *as, const wchar_t *w, size_t len) argument
1951 archive_strncpy_l(struct archive_string *as, const void *_p, size_t n, struct archive_string_conv *sc) argument
1959 archive_strncat_l(struct archive_string *as, const void *_p, size_t n, struct archive_string_conv *sc) argument
2021 iconv_strncat_in_locale(struct archive_string *as, const void *_p, size_t length, struct archive_string_conv *sc) argument
2123 strncat_in_codepage(struct archive_string *as, const void *_p, size_t length, struct archive_string_conv *sc) argument
2225 best_effort_strncat_in_locale(struct archive_string *as, const void *_p, size_t length, struct archive_string_conv *sc) argument
2642 strncat_from_utf8_to_utf8(struct archive_string *as, const void *_p, size_t len, struct archive_string_conv *sc) argument
2716 archive_string_append_unicode(struct archive_string *as, const void *_p, size_t len, struct archive_string_conv *sc) argument
2931 archive_string_normalize_C(struct archive_string *as, const void *_p, size_t len, struct archive_string_conv *sc) argument
3238 archive_string_normalize_D(struct archive_string *as, const void *_p, size_t len, struct archive_string_conv *sc) argument
3419 strncat_from_utf8_libarchive2(struct archive_string *as, const void *_p, size_t len, struct archive_string_conv *sc) argument
3504 win_strncat_from_utf16(struct archive_string *as, const void *_p, size_t bytes, struct archive_string_conv *sc, int be) argument
3602 win_strncat_from_utf16be(struct archive_string *as, const void *_p, size_t bytes, struct archive_string_conv *sc) argument
3609 win_strncat_from_utf16le(struct archive_string *as, const void *_p, size_t bytes, struct archive_string_conv *sc) argument
3733 best_effort_strncat_from_utf16(struct archive_string *as, const void *_p, size_t bytes, struct archive_string_conv *sc, int be) argument
3773 best_effort_strncat_from_utf16be(struct archive_string *as, const void *_p, size_t bytes, struct archive_string_conv *sc) argument
3780 best_effort_strncat_from_utf16le(struct archive_string *as, const void *_p, size_t bytes, struct archive_string_conv *sc) argument
[all...]
H A Darchive_write_add_filter_lrzip.c134 struct archive_string as; local
137 archive_string_init(&as);
138 archive_strcpy(&as, "lrzip -q");
145 archive_strcat(&as, " -b");
148 archive_strcat(&as, " -g");
151 archive_strcat(&as, " -l");
154 archive_strcat(&as, " -n");
157 archive_strcat(&as, " -z");
163 archive_strcat(&as, " -L ");
164 archive_strappend_char(&as, '
[all...]
H A Darchive_string.h76 /* Append a C char to an archive_string, resizing as necessary. */
84 /* Append a raw array to an archive_string, resizing as necessary */
144 /* Ensure that the underlying buffer is at least as large as the request. */
153 * Declaring it "char *" as with some of the other functions just
160 /* Append a C string to an archive_string, resizing as necessary. */
166 /* Copy a C string to an archive_string, resizing as necessary. */
167 #define archive_strcpy(as,p) \
168 archive_strncpy((as), (p), ((p) == NULL ? 0 : strlen(p)))
169 #define archive_wstrcpy(as,
[all...]
H A Darchive_write_add_filter_uuencode.c167 uu_encode(struct archive_string *as, const unsigned char *p, size_t len) argument
172 archive_strappend_char(as, c?c + 0x20:'`');
175 archive_strappend_char(as, c?c + 0x20:'`');
177 archive_strappend_char(as, c?c + 0x20:'`');
179 archive_strappend_char(as, c?c + 0x20:'`');
181 archive_strappend_char(as, c?c + 0x20:'`');
185 archive_strappend_char(as, c?c + 0x20:'`');
188 archive_strappend_char(as, c?c + 0x20:'`');
189 archive_strappend_char(as, '`');
190 archive_strappend_char(as, '`');
[all...]
H A Darchive_write_add_filter_b64encode.c178 la_b64_encode(struct archive_string *as, const unsigned char *p, size_t len) argument
184 archive_strappend_char(as, base64[c]);
186 archive_strappend_char(as, base64[c]);
188 archive_strappend_char(as, base64[c]);
190 archive_strappend_char(as, base64[c]);
194 archive_strappend_char(as, base64[c]);
197 archive_strappend_char(as, base64[c]);
198 archive_strappend_char(as, '=');
199 archive_strappend_char(as, '=');
202 archive_strappend_char(as, base6
[all...]
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_arange.c34 Dwarf_ArangeSet as, tas; local
37 STAILQ_FOREACH_SAFE(as, &dbg->dbg_aslist, as_next, tas) {
38 STAILQ_FOREACH_SAFE(ar, &as->as_arlist, ar_next, tar) {
39 STAILQ_REMOVE(&as->as_arlist, ar, _Dwarf_Arange,
43 STAILQ_REMOVE(&dbg->dbg_aslist, as, _Dwarf_ArangeSet, as_next);
44 free(as);
58 Dwarf_ArangeSet as; local
78 if ((as = malloc(sizeof(struct _Dwarf_ArangeSet))) == NULL) {
82 STAILQ_INIT(&as->as_arlist);
83 STAILQ_INSERT_TAIL(&dbg->dbg_aslist, as, as_nex
169 Dwarf_ArangeSet as; local
246 Dwarf_ArangeSet as; local
[all...]
H A Ddwarf_arange.c97 Dwarf_ArangeSet as; local
104 as = ar->ar_as;
105 assert(as != NULL);
106 cu = as->as_cu;
123 Dwarf_ArangeSet as; local
130 as = ar->ar_as;
131 assert(as != NULL);
134 DWARF_SET_ERROR(as->as_cu->cu_dbg, error, DW_DLE_ARGUMENT);
138 *ret_offset = as->as_cu_offset;
148 Dwarf_ArangeSet as; local
[all...]
H A Ddwarf_pro_arange.c45 Dwarf_ArangeSet as; local
52 as = dbg->dbgp_as;
64 ar->ar_as = as;
70 STAILQ_INSERT_TAIL(&as->as_arlist, ar, ar_next);
/freebsd-11-stable/crypto/openssh/
H A Dauth-bsdauth.c64 if (authctxt->as != NULL) {
66 challenge = auth_getitem(authctxt->as, AUTHV_CHALLENGE);
68 auth_close(authctxt->as);
69 authctxt->as = NULL;
77 authctxt->as = auth_userchallenge(authctxt->user,
79 if (authctxt->as == NULL)
106 if (authctxt->as == NULL)
112 authok = auth_userresponse(authctxt->as, responses[0], 0);
113 authctxt->as = NULL;
124 if (authctxt && authctxt->as) {
[all...]
H A Dauth-passwd.c9 * As far as I am concerned, the code I have written for this software
11 * software must be clearly marked as such, and if the derived work is
139 warn_expiry(Authctxt *authctxt, auth_session_t *as) argument
146 pwtimeleft = auth_check_change(as);
147 actimeleft = auth_check_expire(as);
176 auth_session_t *as; local
179 as = auth_usercheck(pw->pw_name, authctxt->style, "auth-ssh",
181 if (as == NULL)
183 if (auth_getstate(as) & AUTH_PWEXPIRED) {
184 auth_close(as);
[all...]
/freebsd-11-stable/sys/dev/acpica/Osd/
H A DOsdSynch.c81 struct acpi_sema *as; local
88 if ((as = malloc(sizeof(*as), M_ACPISEM, M_NOWAIT | M_ZERO)) == NULL)
91 snprintf(as->as_name, sizeof(as->as_name), "ACPI sema (%p)", as);
92 mtx_init(&as->as_lock, as->as_name, NULL, MTX_DEF);
93 cv_init(&as->as_cv, as
108 struct acpi_sema *as = (struct acpi_sema *)Handle; local
154 struct acpi_sema *as = (struct acpi_sema *)Handle; local
239 struct acpi_sema *as = (struct acpi_sema *)Handle; local
[all...]
/freebsd-11-stable/sys/kgssapi/krb5/
H A Dkcrypto_aes.c53 struct aes_state *as; local
55 as = malloc(sizeof(struct aes_state), M_GSSAPI, M_WAITOK|M_ZERO);
56 mtx_init(&as->as_lock, "gss aes lock", NULL, MTX_DEF);
57 ks->ks_priv = as;
63 struct aes_state *as = ks->ks_priv; local
65 if (as->as_session_aes != 0)
66 crypto_freesession(as->as_session_aes);
67 if (as->as_session_sha1 != 0)
68 crypto_freesession(as->as_session_sha1);
69 mtx_destroy(&as
77 struct aes_state *as = ks->ks_priv; local
121 struct aes_state *as = (struct aes_state *) crp->crp_opaque; local
141 struct aes_state *as = ks->ks_priv; local
320 struct aes_state *as = ks->ks_priv; local
[all...]
/freebsd-11-stable/gnu/usr.bin/binutils/doc/
H A DMakefile9 MAN= ld.7 ldint.7 as.7 binutils.7
/freebsd-11-stable/share/doc/psd/20.ipctut/
H A Dpipe.c32 #define DATA "Bright star, would I were steadfast as thou art . . ."
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dslc-gram.y126 check_option(struct assignment *as)
138 for(a = as; a != NULL; a = a->next) {
159 ex(as, "neither long nor short option");
163 ex(as, "either of long or name option must be used");
167 ex(as, "multiple long options");
171 ex(as, "multiple short options");
175 ex(as, "multiple types");
179 ex(as, "multiple arguments");
183 ex(as, "multiple help strings");
187 ex(as, "multipl
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Dlistener.c521 free_and_unlock_accepting_socket(struct accepting_socket *as) argument
524 if (as->s != INVALID_SOCKET)
525 closesocket(as->s);
527 LeaveCriticalSection(&as->lock);
528 DeleteCriticalSection(&as->lock);
529 mm_free(as);
533 start_accepting(struct accepting_socket *as) argument
538 SOCKET s = socket(as->family, SOCK_STREAM, 0);
541 if (!as->lev->base.enabled)
552 (char *)&as
587 stop_accepting(struct accepting_socket *as) argument
598 struct accepting_socket *as = arg; local
665 struct accepting_socket *as = local
715 struct accepting_socket *as = lev_iocp->accepting[i]; local
737 struct accepting_socket *as = lev_iocp->accepting[i]; local
[all...]
/freebsd-11-stable/contrib/netbsd-tests/net/net/
H A Dt_tcp.c76 int srvr = -1, clnt = -1, as = -1; local
115 as = paccept(srvr, NULL, NULL, NULL, pacceptblock ? 0 : SOCK_NONBLOCK);
130 if (as == -1) { /* not true under NetBSD */
131 as = paccept(srvr, NULL, NULL, NULL, pacceptblock ? 0 : SOCK_NONBLOCK);
132 if (as == -1)
136 fl = fcntl(as, F_GETFL, 0);
141 ok = fcntl(as, F_SETFL, fl & ~O_NONBLOCK);
145 fl = fcntl(as, F_GETFL, 0);
154 n = read(as, buf, 10);
167 close(as);
[all...]
/freebsd-11-stable/contrib/binutils/gas/doc/
H A DMakefile.am8 # Options to extract the man page from as.texinfo
16 man_MANS = as.1
18 info_TEXINFOS = as.texinfo
69 # We want install to imply install-info as per GNU standards, despite the
113 as.1: $(srcdir)/as.texinfo asconfig.texi $(CPU_DOCS)
115 -$(TEXI2POD) $(MANCONF) < $(srcdir)/as.texinfo > as.pod
116 -($(POD2MAN) as.pod | \
120 rm -f as
[all...]
H A DMakefile.in8 # with or without modifications, as long as this notice is preserved.
61 INFO_DEPS = as.info
64 DVIS = as.dvi
65 PDFS = as.pdf
66 PSS = as.ps
67 HTMLS = as.html
68 TEXINFOS = as.texinfo
219 # Options to extract the man page from as.texinfo
225 man_MANS = as
[all...]
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dks_p12.c330 PKCS12_AuthenticatedSafe as; local
410 &as,
419 for (i = 0; i < as.len; i++)
422 &as.val[i].contentType,
423 as.val[i].content->data,
424 as.val[i].content->length,
427 free_PKCS12_AuthenticatedSafe(&as);
449 PKCS12_AuthenticatedSafe *as,
457 ptr = realloc(as->val, sizeof(as
448 addBag(hx509_context context, PKCS12_AuthenticatedSafe *as, const heim_oid *oid, void *data, size_t length) argument
488 PKCS12_AuthenticatedSafe *as = ctx; local
569 PKCS12_AuthenticatedSafe as; local
[all...]

Completed in 188 milliseconds

1234567891011>>