HomeSort by relevance Sort by last modified time
    Searched refs:ap (Results 1 - 25 of 671) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-08-20-BadBitfieldRef.c 5 char *ap; local
6 ap[1] == '-' && ap[2] == 0; local
2002-07-31-SubregFailure.c 5 long (*ap)[4]; member in union:__anon5665
10 abase.ap+=27;
11 Assignment(*abase.ap);
arm-vaarg-align.c 12 __builtin_va_list ap; local
13 __builtin_va_start(ap, i);
18 long long ll = __builtin_va_arg(ap, long long);
19 __builtin_va_end(ap);
25 __builtin_va_list ap; local
26 __builtin_va_start(ap, i);
31 double ll = __builtin_va_arg(ap, double);
32 __builtin_va_end(ap);
2004-02-13-IllegalVararg.c 4 __builtin_va_list ap; local
6 __builtin_va_start(ap, X);
7 F = __builtin_va_arg(ap, float);
vfprintf.c 5 void foo(__builtin_va_list ap) {
6 vfprintf(0, " ", ap);
  /external/tcpdump/
print-arp.c 80 #define ar_sha(ap) (((const u_char *)((ap)+1))+0)
81 #define ar_spa(ap) (((const u_char *)((ap)+1))+ (ap)->ar_hln)
82 #define ar_tha(ap) (((const u_char *)((ap)+1))+ (ap)->ar_hln+(ap)->ar_pln)
83 #define ar_tpa(ap) (((const u_char *)((ap)+1))+2*(ap)->ar_hln+(ap)->ar_pln
179 const struct atmarp_pkthdr *ap; local
258 const struct arp_pkthdr *ap; local
    [all...]
print-aodv.c 85 aodv_rreq(const union aodv *ap, const u_char *dat, u_int length)
94 if (i < sizeof(ap->rreq)) {
98 i -= sizeof(ap->rreq);
101 ap->rreq.rreq_type & RREQ_JOIN ? "[J]" : "",
102 ap->rreq.rreq_type & RREQ_REPAIR ? "[R]" : "",
103 ap->rreq.rreq_type & RREQ_GRAT ? "[G]" : "",
104 ap->rreq.rreq_type & RREQ_DEST ? "[D]" : "",
105 ap->rreq.rreq_type & RREQ_UNKNOWN ? "[U] " : " ",
106 ap->rreq.rreq_hops,
107 (unsigned long)EXTRACT_32BITS(&ap->rreq.rreq_id)
396 const union aodv *ap; local
    [all...]
  /external/clang/test/Sema/
varargs.c 6 __builtin_va_list ap; local
8 __builtin_va_start(ap, a, a); // expected-error {{too many arguments to function}}
9 __builtin_va_start(ap, a); // expected-error {{'va_start' used in function with fixed args}}
14 __builtin_va_list ap; local
16 __builtin_va_start(ap, 10); // expected-warning {{second parameter of 'va_start' not last named argument}}
17 __builtin_va_start(ap, a); // expected-warning {{second parameter of 'va_start' not last named argument}}
18 __builtin_va_start(ap, b);
23 __builtin_va_list ap; local
25 __builtin_va_start(ap, a);
26 __builtin_va_start(ap, (a))
32 __builtin_va_list ap; local
38 __builtin_va_list ap; local
43 __builtin_va_list ap; local
56 __builtin_va_list ap; local
65 __builtin_va_list ap; local
    [all...]
  /bionic/libc/stdio/
printf.c 41 va_list ap; local
43 va_start(ap, fmt);
44 ret = vfprintf(stdout, fmt, ap);
45 va_end(ap);
scanf.c 41 va_list ap; local
43 va_start(ap, fmt);
44 ret = vfscanf(stdin, fmt, ap);
45 va_end(ap);
vprintf.c 37 vprintf(const char *fmt, __va_list ap)
39 return (vfprintf(stdout, fmt, ap));
vscanf.c 37 vscanf(const char *fmt, __va_list ap)
40 return (vfscanf(stdin, fmt, ap));
fprintf.c 41 va_list ap; local
43 va_start(ap, fmt);
44 ret = vfprintf(fp, fmt, ap);
45 va_end(ap);
fscanf.c 41 va_list ap; local
43 va_start(ap, fmt);
44 ret = vfscanf(fp, fmt, ap);
45 va_end(ap);
  /system/core/libnl_2/
dbg.c 6 va_list ap; local
9 va_start(ap, format);
10 __android_log_vprint(level, "libnl_2", format, ap);
11 va_end(ap);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p3.cpp 9 void test_cvquals(AnyPtr ap) {
10 int* const ip = ap;
11 const float * const volatile fp = ap;
16 void test_ref_arg(AnyPtr ap) {
17 const int* const &ip = ap;
18 double * const &dp = ap;
  /system/core/sh/
alias.c 67 struct alias *ap, **app; local
70 for (ap = *app; ap; ap = ap->next) {
71 if (equal(name, ap->name)) {
73 ckfree(ap->val);
74 ap->val = savestr(val);
81 ap = ckmalloc(sizeof (struct alias));
82 ap->name = savestr(name)
119 struct alias *ap, **app; local
160 struct alias *ap, *tmp; local
181 struct alias *ap = *hashalias(name); local
197 struct alias *ap; local
213 struct alias *ap; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
ap_list.c 2 * hostapd / AP table
26 /* AP list is a double linked list with head->prev pointing to the end of the
28 * whenever a beacon has been received from the AP in question. The tail entry
32 static int ap_list_beacon_olbc(struct hostapd_iface *iface, struct ap_info *ap)
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 struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *ap)
57 s = iface->ap_hash[STA_HASH(ap)];
160 struct ap_info *ap, *prev; local
195 struct ap_info *ap; local
223 struct ap_info *ap; local
315 struct ap_info *ap; local
    [all...]
  /external/e2fsprogs/intl/
printf-args.c 33 argument *ap; local
35 for (i = 0, ap = &a->arg[0]; i < a->count; i++, ap++)
36 switch (ap->type)
39 ap->a.a_schar = va_arg (args, /*signed char*/ int);
42 ap->a.a_uchar = va_arg (args, /*unsigned char*/ int);
45 ap->a.a_short = va_arg (args, /*short*/ int);
48 ap->a.a_ushort = va_arg (args, /*unsigned short*/ int);
51 ap->a.a_int = va_arg (args, int);
54 ap->a.a_uint = va_arg (args, unsigned int)
    [all...]
  /bionic/libc/bionic/
err.c 42 va_list ap; local
44 va_start(ap, fmt);
45 verr(eval, fmt, ap);
46 va_end(ap);
52 va_list ap; local
54 va_start(ap, fmt);
55 verrx(eval, fmt, ap);
56 va_end(ap);
60 verr(int eval, const char *fmt, va_list ap)
67 (void)vfprintf(stderr, fmt, ap);
88 va_list ap; local
98 va_list ap; local
    [all...]
ioctl.c 34 va_list ap; local
37 va_start(ap, request);
38 arg = va_arg(ap, void *);
39 va_end(ap);
  /external/blktrace/btt/
aqd.c 35 struct aqd_info *ap; local
39 ap = malloc(sizeof(*ap));
40 ap->na = 0;
44 if ((ap->fp = my_fopen(oname, "w")) == NULL) {
48 add_file(ap->fp, oname);
50 return ap;
62 struct aqd_info *ap = info; local
64 fprintf(ap->fp, "%lf %d\n%lf %d\n", ts, ap->na, ts, ap->na + 1)
72 struct aqd_info *ap = info; local
    [all...]
  /external/clang/test/SemaCXX/
PR9459.cpp 6 template<typename>struct ts{}ap() // expected-error {{expected ';' after struct}} expected-error {{requires a type specifier}} function
7 {ts<a>::ap<ae_same<int>::&ae_same<>>::p(a); }; // expected-error {{use of undeclared identifier 'a'}}
  /system/core/sh/bltin/
echo.c 61 char **ap; local
68 ap = argv;
70 ap++;
72 if ((p = *ap) != NULL) {
75 ap++;
78 ap++;
82 while ((p = *ap++) != NULL) {
110 if (*ap)
  /bionic/libc/unistd/
fcntl.c 35 va_list ap; local
38 va_start(ap, cmd);
39 arg = va_arg(ap, void *);
40 va_end(ap);

Completed in 619 milliseconds

1 2 3 4 5 6 7 8 91011>>