Searched refs:ap (Results 1 - 25 of 1216) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dwarn.c41 va_list ap; local
42 va_start(ap, fmt);
43 vwarn(fmt, ap);
44 va_end(ap);
H A Derr.c41 va_list ap; local
42 va_start(ap, fmt);
43 verr(eval, fmt, ap);
44 va_end(ap);
H A Derrx.c41 va_list ap; local
42 va_start(ap, fmt);
43 verrx(eval, fmt, ap);
44 va_end(ap);
H A Dwarnx.c41 va_list ap; local
42 va_start(ap, fmt);
43 vwarnx(fmt, ap);
44 va_end(ap);
/freebsd-11-stable/usr.sbin/bluetooth/sdpd/
H A Dlog.c53 va_list ap; local
55 va_start(ap, message);
56 vsyslog(LOG_EMERG, message, ap);
57 va_end(ap);
63 va_list ap; local
65 va_start(ap, message);
66 vsyslog(LOG_ALERT, message, ap);
67 va_end(ap);
73 va_list ap; local
75 va_start(ap, messag
83 va_list ap; local
93 va_list ap; local
103 va_list ap; local
113 va_list ap; local
123 va_list ap; local
[all...]
/freebsd-11-stable/sys/sparc64/include/
H A Dstdarg.h54 #define va_start(ap, last) \
55 __builtin_va_start((ap), (last))
57 #define va_arg(ap, type) \
58 __builtin_va_arg((ap), type)
65 #define va_end(ap) \
66 __builtin_va_end(ap)
74 #define va_start(ap, last) \
75 (__builtin_next_arg(last), (ap) = (va_list)__builtin_saveregs())
77 #define va_end(ap)
79 #define __va_arg8(ap, typ
[all...]
/freebsd-11-stable/sys/powerpc/include/
H A Dstdarg.h44 #define va_start(ap, last) \
45 __builtin_va_start((ap), (last))
47 #define va_arg(ap, type) \
48 __builtin_va_arg((ap), type)
58 #define va_end(ap) \
59 __builtin_va_end(ap)
65 #define va_start(ap, last) ((ap) = *(va_list *)0)
66 #define va_arg(ap, type) (*(type *)(void *)&(ap))
[all...]
/freebsd-11-stable/stand/efi/include/
H A Defistdarg.h34 #define va_start(ap,v) ( ap = (va_list)&v + _INTSIZEOF(v) )
35 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
36 #define va_end(ap) ( ap = (va_list)0 )
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-arp.c81 #define ar_sha(ap) (((const u_char *)((ap)+1))+ 0)
82 #define ar_spa(ap) (((const u_char *)((ap)+1))+ (ap)->ar_hln)
83 #define ar_tha(ap) (((const u_char *)((ap)+1))+ (ap)->ar_hln+(ap)->ar_pln)
84 #define ar_tpa(ap) (((cons
193 tpaddr_print_ip(netdissect_options *ndo, const struct arp_pkthdr *ap, u_short pro) argument
205 spaddr_print_ip(netdissect_options *ndo, const struct arp_pkthdr *ap, u_short pro) argument
232 atmarp_tpaddr_print(netdissect_options *ndo, const struct atmarp_pkthdr *ap, u_short pro) argument
244 atmarp_spaddr_print(netdissect_options *ndo, const struct atmarp_pkthdr *ap, u_short pro) argument
259 const struct atmarp_pkthdr *ap; local
360 const struct arp_pkthdr *ap; local
[all...]
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dap_list.c31 static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap) argument
37 iface->conf->channel != ap->channel)
40 if (ap->erp != -1 && (ap->erp & ERP_INFO_NON_ERP_PRESENT))
44 int rate = (ap->supported_rates[i] & 0x7f) * 5;
53 static struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *ap) argument
57 s = iface->ap_hash[STA_HASH(ap)];
58 while (s != NULL && os_memcmp(s->addr, ap, ETH_ALEN) != 0)
64 static void ap_ap_list_add(struct hostapd_iface *iface, struct ap_info *ap) argument
67 ap
76 ap_ap_list_del(struct hostapd_iface *iface, struct ap_info *ap) argument
90 ap_ap_hash_add(struct hostapd_iface *iface, struct ap_info *ap) argument
97 ap_ap_hash_del(struct hostapd_iface *iface, struct ap_info *ap) argument
119 ap_free_ap(struct hostapd_iface *iface, struct ap_info *ap) argument
131 struct ap_info *ap, *prev; local
147 struct ap_info *ap; local
174 struct ap_info *ap; local
254 struct ap_info *ap; local
[all...]
/freebsd-11-stable/sys/arm/include/
H A Dstdarg.h47 #define va_start(ap, last) \
48 __builtin_va_start((ap), (last))
50 #define va_arg(ap, type) \
51 __builtin_va_arg((ap), type)
58 #define va_end(ap) \
59 __builtin_va_end(ap)
67 #define va_start(ap, last) \
68 ((ap) = (va_list)__builtin_next_arg(last))
70 #define va_start(ap, last) \
71 ((ap)
[all...]
/freebsd-11-stable/bin/sh/
H A Dalias.c64 struct alias *ap, **app; local
67 for (ap = *app; ap; ap = ap->next) {
68 if (equal(name, ap->name)) {
70 ckfree(ap->val);
71 ap->val = savestr(val);
78 ap = ckmalloc(sizeof (struct alias));
79 ap
91 struct alias *ap, **app; local
125 struct alias *ap, *tmp; local
147 struct alias *ap; local
183 struct alias **sorted, *ap; local
207 struct alias *ap; local
[all...]
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dmystdarg.h10 #define VASTART(ap,type,name) va_start(ap,name)
11 #define VAEND(ap) va_end(ap)
15 #define VASTART(ap,type,name) {type name; va_start(ap); name = va_arg(ap, type)
16 #define VAEND(ap) va_end(ap);}
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_err.c49 vwarnxi(const char *fmt, va_list ap) argument
53 vfprintf(stderr, fmt, ap);
57 vwarni(const char *fmt, va_list ap) argument
62 vwarnxi(fmt, ap);
71 va_list ap; local
73 va_start(ap, fmt);
74 vwarni(fmt, ap);
75 va_end(ap);
82 va_list ap; local
84 va_start(ap, fm
94 va_list ap; local
104 va_list ap; local
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dasprintf.c50 VA_OPEN (ap, fmt);
51 VA_FIXEDARG (ap, char **, buf);
52 VA_FIXEDARG (ap, const char *, fmt);
53 status = vasprintf (buf, fmt, ap);
54 VA_CLOSE (ap);
H A Dsnprintf.c53 VA_OPEN (ap, format);
54 VA_FIXEDARG (ap, char *, s);
55 VA_FIXEDARG (ap, size_t, n);
56 VA_FIXEDARG (ap, const char *, format);
57 result = vsnprintf (s, n, format, ap);
58 VA_CLOSE (ap);
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dasprintf.c50 VA_OPEN (ap, fmt);
51 VA_FIXEDARG (ap, char **, buf);
52 VA_FIXEDARG (ap, const char *, fmt);
53 status = vasprintf (buf, fmt, ap);
54 VA_CLOSE (ap);
/freebsd-11-stable/sys/amd64/include/
H A Dvarargs.h63 #define va_start(ap) __builtin_varargs_start(ap)
64 #define va_arg(ap, type) __builtin_va_arg((ap), type)
65 #define va_end(ap) __builtin_va_end(ap)
79 #define va_start(ap) \
80 ((ap) = (va_list)&va_alist)
82 #define va_arg(ap, type) \
83 (*(type *)((ap)
[all...]
/freebsd-11-stable/sys/riscv/include/
H A Dstdarg.h47 #define va_start(ap, last) \
48 __builtin_va_start((ap), (last))
50 #define va_arg(ap, type) \
51 __builtin_va_arg((ap), type)
58 #define va_end(ap) \
59 __builtin_va_end(ap)
65 #define va_start(ap, last) \
66 ((ap) = (va_list)&(last) + __va_size(last))
69 #define va_arg(ap, type) \
70 (*(type *)((ap)
[all...]
/freebsd-11-stable/sys/i386/include/
H A Dvarargs.h59 #define va_start(ap) __builtin_varargs_start(ap)
60 #define va_arg(ap, type) __builtin_va_arg((ap), type)
61 #define va_end(ap) __builtin_va_end(ap)
79 #define va_start(ap) \
80 ((ap) = (va_list)&va_alist)
82 #define va_arg(ap, type) \
83 (*(type *)((ap)
[all...]
/freebsd-11-stable/sbin/dhclient/tests/
H A Dfake.c14 va_list ap; local
16 va_start(ap, fmt);
17 (void)vfprintf(stderr, fmt, ap);
18 va_end(ap);
27 va_list ap; local
29 va_start(ap, fmt);
30 (void)vfprintf(stderr, fmt, ap);
31 va_end(ap);
45 va_list ap; local
47 va_start(ap, fm
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dvadefs.h23 #define _crt_va_start(ap, param) __builtin_va_start(ap, param)
27 #define _crt_va_end(ap) __builtin_va_end(ap)
31 #define _crt_va_arg(ap, type) __builtin_va_arg(ap, type)
39 #define __crt_va_start(ap, param) __builtin_va_start(ap, param)
43 #define __crt_va_end(ap) __builtin_va_end(ap)
[all...]
/freebsd-11-stable/contrib/sendmail/include/sm/
H A Dvarargs.h22 # define SM_VA_START(ap, f) va_start(ap, f)
26 # define SM_VA_START(ap, f) va_start(ap)
35 # define SM_VA_END_COPY(ap) do { } while (0)
39 # define SM_VA_END_COPY(ap) va_end(ap)
46 # define SM_VA_LOCAL_DECL va_list ap;
47 # define SM_VA_ARG(ap, type) va_arg(ap, typ
[all...]
/freebsd-11-stable/sys/arm64/include/
H A Dstdarg.h47 #define va_start(ap, last) \
48 __builtin_va_start((ap), (last))
50 #define va_arg(ap, type) \
51 __builtin_va_arg((ap), type)
58 #define va_end(ap) \
59 __builtin_va_end(ap)
/freebsd-11-stable/contrib/gcc/
H A Dc-errors.c38 va_list ap; local
40 va_start (ap, gmsgid);
41 diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location,
44 va_end (ap);
56 va_list ap; local
58 va_start (ap, gmsgid);
59 diagnostic_set_info (&diagnostic, gmsgid, &ap, input_location,
62 va_end (ap);

Completed in 147 milliseconds

1234567891011>>