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

1234567891011>>

/freebsd-9.3-release/usr.bin/csup/
H A Dattrstack.c47 struct attrstack *as; local
49 as = xmalloc(sizeof(struct attrstack));
50 as->stack = xmalloc(sizeof(struct fattr *) * ATTRSTACK_DEFSIZE);
51 as->size = ATTRSTACK_DEFSIZE;
52 as->cur = 0;
53 return (as);
57 attrstack_pop(struct attrstack *as) argument
60 assert(as->cur > 0);
61 return (as->stack[--as
65 attrstack_push(struct attrstack *as, struct fattr *fa) argument
77 attrstack_size(struct attrstack *as) argument
84 attrstack_free(struct attrstack *as) argument
[all...]
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_string_sprintf.c52 append_uint(struct archive_string *as, uintmax_t d, unsigned base) argument
56 append_uint(as, d/base, base);
57 archive_strappend_char(as, digits[d % base]);
61 append_int(struct archive_string *as, intmax_t d, unsigned base) argument
64 archive_strappend_char(as, '-');
67 append_uint(as, d, base);
72 __archive_string_sprintf(struct archive_string *as, const char *fmt, ...) argument
77 archive_string_vsprintf(as, fmt, ap);
86 __archive_string_vsprintf(struct archive_string *as, const char *fmt, argument
94 if (__archive_string_ensure(as, 6
[all...]
H A Darchive_string.c51 __archive_string_append(struct archive_string *as, const char *p, size_t s) argument
53 if (__archive_string_ensure(as, as->length + s + 1) == NULL)
55 memcpy(as->s + as->length, p, s);
56 as->s[as->length + s] = 0;
57 as->length += s;
58 return (as);
88 __archive_string_free(struct archive_string *as) argument
100 __archive_string_ensure(struct archive_string *as, size_t s) argument
145 __archive_strncat(struct archive_string *as, const void *_p, size_t n) argument
163 __archive_strappend_char(struct archive_string *as, char c) argument
174 __archive_strappend_w_utf8(struct archive_string *as, const wchar_t *w) argument
288 __archive_string_utf8_w(struct archive_string *as) argument
362 __archive_strappend_w_mbs(struct archive_string *as, const wchar_t *w) argument
401 __archive_strappend_w_mbs(struct archive_string *as, const wchar_t *w) argument
[all...]
H A Darchive_string.h55 * Note that all visible symbols here begin with "__archive" as they
70 /* Append a C char to an archive_string, resizing as necessary. */
88 __archive_string_append(struct archive_string *as, const char *p, size_t s);
102 /* Ensure that the underlying buffer is at least as large as the request. */
110 * Declaring it "char *" as with some of the other functions just
116 /* Append a C string to an archive_string, resizing as necessary. */
117 #define archive_strcat(as,p) __archive_string_append((as),(p),strlen(p))
119 /* Copy a C string to an archive_string, resizing as necessar
[all...]
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_acl.c63 * NB: ACL_POLICY_RADIUS must be the same value as
100 struct aclstate *as; local
102 as = (struct aclstate *) malloc(sizeof(struct aclstate),
104 if (as == NULL)
106 ACL_LOCK_INIT(as, "acl");
107 TAILQ_INIT(&as->as_list);
108 as->as_policy = ACL_POLICY_OPEN;
109 as->as_vap = vap;
110 vap->iv_as = as;
118 struct aclstate *as local
130 _find_acl(struct aclstate *as, const uint8_t *macaddr) argument
144 _acl_free(struct aclstate *as, struct acl *acl) argument
157 struct aclstate *as = vap->iv_as; local
174 struct aclstate *as = vap->iv_as; local
212 struct aclstate *as = vap->iv_as; local
231 struct aclstate *as = vap->iv_as; local
247 struct aclstate *as = vap->iv_as; local
274 struct aclstate *as = vap->iv_as; local
289 struct aclstate *as = vap->iv_as; local
[all...]
/freebsd-9.3-release/usr.bin/clang/llvm-as/
H A DMakefile5 PROG_CXX=llvm-as
7 SRCDIR= tools/llvm-as
8 SRCS= llvm-as.cpp
/freebsd-9.3-release/crypto/openssh/
H A Dauth-bsdauth.c57 if (authctxt->as != NULL) {
59 challenge = auth_getitem(authctxt->as, AUTHV_CHALLENGE);
61 auth_close(authctxt->as);
62 authctxt->as = NULL;
70 authctxt->as = auth_userchallenge(authctxt->user,
72 if (authctxt->as == NULL)
99 if (authctxt->as == 0)
105 authok = auth_userresponse(authctxt->as, responses[0], 0);
106 authctxt->as = NULL;
117 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
133 warn_expiry(Authctxt *authctxt, auth_session_t *as) argument
140 pwtimeleft = auth_check_change(as);
141 actimeleft = auth_check_expire(as);
170 auth_session_t *as; local
173 as = auth_usercheck(pw->pw_name, authctxt->style, "auth-ssh",
175 if (as == NULL)
177 if (auth_getstate(as) & AUTH_PWEXPIRED) {
178 auth_close(as);
[all...]
/freebsd-9.3-release/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
222 struct acpi_sema *as = (struct acpi_sema *)Handle; local
[all...]
/freebsd-9.3-release/share/doc/psd/20.ipctut/
H A Dpipe.c36 #define DATA "Bright star, would I were steadfast as thou art . . ."
/freebsd-9.3-release/sys/kgssapi/krb5/
H A Dkcrypto_aes.c52 struct aes_state *as; local
54 as = malloc(sizeof(struct aes_state), M_GSSAPI, M_WAITOK|M_ZERO);
55 mtx_init(&as->as_lock, "gss aes lock", NULL, MTX_DEF);
56 ks->ks_priv = as;
62 struct aes_state *as = ks->ks_priv; local
64 if (as->as_session)
65 crypto_freesession(as->as_session);
66 mtx_destroy(&as->as_lock);
74 struct aes_state *as = ks->ks_priv; local
80 if (as
115 struct aes_state *as = (struct aes_state *) crp->crp_opaque; local
135 struct aes_state *as = ks->ks_priv; local
314 struct aes_state *as = ks->ks_priv; local
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/sl/
H A Dslc-gram.y123 check_option(struct assignment *as)
134 for(a = as; a != NULL; a = a->next) {
153 ex(as, "neither long nor short option");
157 ex(as, "multiple long options");
161 ex(as, "multiple short options");
165 ex(as, "multiple types");
169 ex(as, "multiple arguments");
173 ex(as, "multiple help strings");
177 ex(as, "multiple default values");
184 check_command(struct assignment *as)
[all...]
/freebsd-9.3-release/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-9.3-release/contrib/ntp/tests/libntp/
H A Drefidsmear.c51 char *as; local
59 as = lfptoa(&l, 8);
61 //printf("refid %#x, smear %s\n", r, as);
63 TEST_ASSERT_NOT_NULL_MESSAGE(as, msg);
64 TEST_ASSERT_EQUAL_STRING_MESSAGE(es, as, msg);
74 char *as; local
83 as = lfptoa(&l, 8);
89 TEST_ASSERT_NOT_NULL_MESSAGE(as, msg);
90 TEST_ASSERT_EQUAL_STRING_MESSAGE(es, as, msg);
/freebsd-9.3-release/sys/dev/acpi_support/
H A Datk0110.c142 struct aibs_sensor *as; local
199 as = malloc(sizeof(*as) * n, M_DEVBUF, M_NOWAIT | M_ZERO);
200 if (as == NULL) {
207 sc->sc_asens_volt = as;
210 sc->sc_asens_temp = as;
213 sc->sc_asens_fan = as;
246 as[i].i = oi[0].Integer.Value;
248 as[i].l = oi[2].Integer.Value;
249 as[
299 struct aibs_sensor *as; local
[all...]
/freebsd-9.3-release/gnu/usr.bin/binutils/
H A DMakefile4 addr2line ar as ld nm objcopy objdump ranlib readelf \
/freebsd-9.3-release/sys/sys/
H A Dsyslimits.h38 #error this file needs sys/cdefs.h as a prerequisite
/freebsd-9.3-release/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...]
/freebsd-9.3-release/crypto/heimdal/lib/hx509/
H A Dks_p12.c329 PKCS12_AuthenticatedSafe as; local
408 &as,
417 for (i = 0; i < as.len; i++)
420 &as.val[i].contentType,
421 as.val[i].content->data,
422 as.val[i].content->length,
425 free_PKCS12_AuthenticatedSafe(&as);
447 PKCS12_AuthenticatedSafe *as,
455 ptr = realloc(as->val, sizeof(as
446 addBag(hx509_context context, PKCS12_AuthenticatedSafe *as, const heim_oid *oid, void *data, size_t length) argument
486 PKCS12_AuthenticatedSafe *as = ctx; local
566 PKCS12_AuthenticatedSafe as; local
[all...]
/freebsd-9.3-release/usr.sbin/traceroute6/
H A DMakefile21 SRCS= as.c traceroute6.c
/freebsd-9.3-release/gnu/usr.bin/binutils/doc/
H A DMakefile7 INFO= as ld binutils
9 INFOENTRY_as= "* As: (as). The GNU assembler."
19 as.info: as.texinfo asconfig.texi bfdver.texi c-i386.texi gasver.texi
/freebsd-9.3-release/sys/dev/sound/pci/hda/
H A Dhdaa.c246 struct hdaa_audio_as *as = &devinfo->as[w->bindas]; local
253 device_printf((as->pdevinfo && as->pdevinfo->dev) ?
254 as->pdevinfo->dev : devinfo->dev,
287 if (as->pins[j] <= 0)
290 as->pins[j], HDAA_CTL_IN, -1, 1);
303 w1 = hdaa_widget_get(devinfo, as->pins[j]);
325 hdaa_autorecsrc_handler(struct hdaa_audio_as *as, struct hdaa_widget *w) argument
327 struct hdaa_pcm_devinfo *pdevinfo = as
399 struct hdaa_audio_as *as; local
607 struct hdaa_audio_as *as; local
1450 struct hdaa_audio_as *as = &ch->devinfo->as[ch->as]; local
2036 struct hdaa_audio_as *as = devinfo->as; local
2363 struct hdaa_audio_as *as; local
2766 struct hdaa_audio_as *as; local
2922 hdaa_audio_trace_dac(struct hdaa_devinfo *devinfo, int as, int seq, nid_t nid, int dupseq, int min, int only, int depth) argument
3033 hdaa_audio_trace_adc(struct hdaa_devinfo *devinfo, int as, int seq, nid_t nid, int mixed, int min, int only, int depth, int *length, int onlylength) argument
3128 hdaa_audio_undo_trace(struct hdaa_devinfo *devinfo, int as, int seq) argument
3157 hdaa_audio_trace_as_out(struct hdaa_devinfo *devinfo, int as, int seq) argument
3305 struct hdaa_audio_as *as = &devinfo->as[asid]; local
3380 hdaa_audio_trace_as_in(struct hdaa_devinfo *devinfo, int as) argument
3436 hdaa_audio_trace_as_in_mch(struct hdaa_devinfo *devinfo, int as, int seq) argument
3580 struct hdaa_audio_as *as = devinfo->as; local
3676 struct hdaa_audio_as *as = devinfo->as; local
3890 struct hdaa_audio_as *as = devinfo->as; local
3985 struct hdaa_audio_as *as = devinfo->as; local
4228 struct hdaa_audio_as *as = devinfo->as; local
4321 struct hdaa_audio_as *as = devinfo->as; local
4468 struct hdaa_audio_as *as = devinfo->as; local
4555 struct hdaa_audio_as *as = devinfo->as; local
4623 struct hdaa_audio_as *as = devinfo->as; local
4873 struct hdaa_audio_as *as = devinfo->as; local
5076 struct hdaa_audio_as *as = devinfo->as; local
5555 struct hdaa_audio_as *as; local
6342 struct hdaa_audio_as *as; local
6381 struct hdaa_audio_as *as; local
6488 struct hdaa_audio_as *as; local
6517 struct hdaa_audio_as *as; local
6541 struct hdaa_audio_as *as = (struct hdaa_audio_as *)oidp->oid_arg1; local
6641 struct hdaa_audio_as *as; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dlibunwind-frame.c10 it under the terms of the GNU General Public License as published by
128 unw_addr_space_t as; local
144 a cursor. Libunwind treats a new cursor as the top of stack and will get
153 as = unw_create_addr_space_p (acc,
158 unw_init_remote_p (&cache->cursor, as, next_frame);
174 libunwind_find_dyn_list (unw_addr_space_t as, unw_dyn_info_t *di, void *arg) argument
176 return unw_find_dyn_list_p (as, di, arg);
193 unw_addr_space_t as; local
204 as = unw_create_addr_space_p (acc,
209 ret = unw_init_remote_p (&cursor, as, next_fram
319 libunwind_search_unwind_table(void *as, long ip, void *di, void *pi, int need_unwind_info, void *args) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bn/asm/
H A Dco-586.pl108 local($i,$as,$ae,$bs,$be,$ai,$bi);
119 $as=0;
139 $ai=$as;
162 $na=$as+($i < ($num-1));
177 $as++ if ($i < ($num-1));
199 local($i,$as,$ae,$bs,$be,$ai,$bi);
220 $as=0;
228 $ai=$as;
250 $na=$as+($i < ($num-1));
273 $as
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/bn/asm/x86/
H A Dcomba.pl97 local($i,$as,$ae,$bs,$be,$ai,$bi);
108 $as=0;
128 $ai=$as;
151 $na=$as+($i < ($num-1));
166 $as++ if ($i < ($num-1));
188 local($i,$as,$ae,$bs,$be,$ai,$bi);
209 $as=0;
217 $ai=$as;
239 $na=$as+($i < ($num-1));
262 $as
[all...]

Completed in 236 milliseconds

1234567891011>>