Searched refs:ap (Results 26 - 50 of 787) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Decho_cancellation_impl_unittest.cc22 scoped_ptr<AudioProcessing> ap(AudioProcessing::Create(0));
23 EXPECT_TRUE(ap->echo_cancellation()->aec_core() == NULL);
25 EXPECT_EQ(ap->kNoError, ap->echo_cancellation()->Enable(true));
26 EXPECT_TRUE(ap->echo_cancellation()->is_enabled());
28 AecCore* aec_core = ap->echo_cancellation()->aec_core();
35 ap->SetExtraOptions(config);
39 EXPECT_EQ(ap->kNoError, ap->Initialize());
43 ap
[all...]
/external/clang/test/CodeGen/
H A Dppc64-align-struct.c34 // CHECK: %ap.cur = load i8** %ap
35 // CHECK: %ap.next = getelementptr i8* %ap.cur, i64 8
36 // CHECK: store i8* %ap.next, i8** %ap
37 // CHECK: bitcast i8* %ap.cur to %struct.test1*
41 va_list ap; local
42 va_start(ap, x);
43 y = va_arg (ap, struc
60 va_list ap; local
79 va_list ap; local
94 va_list ap; local
110 va_list ap; local
130 va_list ap; local
[all...]
H A Dvariadic-gpfp-x86.c9 struct Bar foo(__builtin_va_list ap) { argument
10 return __builtin_va_arg(ap, struct Bar);
H A Dppc64-varargs-struct.c13 va_list ap; local
15 struct x t = va_arg (ap, struct x);
21 int v = va_arg (ap, int);
27 __int128_t u = va_arg (ap, __int128_t);
H A Dxcore-abi.c26 va_list ap; local
27 va_start(ap,n);
32 char* v1 = va_arg (ap, char*);
43 char v2 = va_arg (ap, char); // expected-warning{{second argument to 'va_arg' is of promotable type 'char'}}
52 int v3 = va_arg (ap, int);
63 long long int v4 = va_arg (ap, long long int);
74 struct x v5 = va_arg (ap, struct x); // typical aggregate type
87 int* v6 = va_arg (ap, int[4]); // an unusual aggregate type
103 double v7 = va_arg (ap, double);
/external/blktrace/btt/
H A Daqd.c35 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
72 struct aqd_info *ap = info; local
[all...]
/external/tcpdump/
H A Dprint-aodv.c85 aodv_rreq(const union aodv *ap, const u_char *dat, u_int length) argument
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
117 aodv_rrep(const union aodv *ap, const u_char *dat, u_int length) argument
146 aodv_rerr(const union aodv *ap, const u_char *dat, u_int length) argument
179 aodv_v6_rreq(const union aodv *ap, const u_char *dat, u_int length) argument
219 aodv_v6_rrep(const union aodv *ap, const u_char *dat, u_int length) argument
256 aodv_v6_rerr(const union aodv *ap, u_int length) argument
286 aodv_v6_draft_01_rreq(const union aodv *ap, const u_char *dat, u_int length) argument
327 aodv_v6_draft_01_rrep(const union aodv *ap, const u_char *dat, u_int length) argument
365 aodv_v6_draft_01_rerr(const union aodv *ap, u_int length) argument
396 const union aodv *ap; local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dioctl.c17 va_list ap; local
18 va_start(ap, request);
19 int rtn = ki_ioctl(fd, request, ap);
20 va_end(ap);
/external/chromium_org/skia/ext/
H A Dgoogle_logging.cc15 va_list ap; local
16 va_start(ap, format);
19 base::StringAppendV(&msg, format, ap);
20 va_end(ap);
/external/clang/test/Sema/
H A Dknr-variadic-def.c12 va_list ap; local
16 va_start(ap,fmt);
17 a=va_arg(ap,char*);
19 va_end(ap);
/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
H A Dexplicit.fail.cpp26 std::auto_ptr<A> ap = p; local
27 assert(ap.get() == p);
32 std::auto_ptr<A> ap; local
33 assert(ap.get() == 0);
H A Dpointer.pass.cpp26 std::auto_ptr<A> ap(p);
27 assert(ap.get() == p);
32 std::auto_ptr<A> ap; local
33 assert(ap.get() == 0);
/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/
H A Darrow.pass.cpp26 std::auto_ptr<A> ap(p);
27 assert(ap->id() == 1);
28 *ap = A(3);
29 assert(ap->id() == 3);
H A Dderef.pass.cpp26 const std::auto_ptr<A> ap(p);
27 assert((*ap).id() == 1);
28 *ap = A(3);
29 assert((*ap).id() == 3);
H A Dreset.pass.cpp26 std::auto_ptr<A> ap(p);
27 ap.reset();
28 assert(ap.get() == 0);
34 std::auto_ptr<A> ap(p);
35 ap.reset(p);
36 assert(ap.get() == p);
42 std::auto_ptr<A> ap(p);
44 ap.reset(p2);
45 assert(ap.get() == p2);
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke.fail.cpp36 const A_int_1* ap = &a; local
37 assert(r2(ap) == 6);
38 r2(ap) = 7;
39 assert(r2(ap) == 7);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dhelpline.c20 va_list ap __maybe_unused)
43 void ui_helpline__vpush(const char *fmt, va_list ap) argument
47 if (vasprintf(&s, fmt, ap) < 0)
48 vfprintf(stderr, fmt, ap);
57 va_list ap; local
59 va_start(ap, fmt);
60 ui_helpline__vpush(fmt, ap);
61 va_end(ap);
70 int ui_helpline__vshow(const char *fmt, va_list ap) argument
72 return helpline_fns->show(fmt, ap);
[all...]
/external/bison/lib/
H A Dprintf-args.c39 argument *ap; local
41 for (i = 0, ap = &a->arg[0]; i < a->count; i++, ap++)
42 switch (ap->type)
45 ap->a.a_schar = va_arg (args, /*signed char*/ int);
48 ap->a.a_uchar = va_arg (args, /*unsigned char*/ int);
51 ap->a.a_short = va_arg (args, /*short*/ int);
54 ap->a.a_ushort = va_arg (args, /*unsigned short*/ int);
57 ap->a.a_int = va_arg (args, int);
60 ap
[all...]
/external/chromium_org/third_party/libevent/
H A Dlog.c66 va_list ap);
72 va_list ap; local
74 va_start(ap, fmt);
75 _warn_helper(_EVENT_LOG_ERR, errno, fmt, ap);
76 va_end(ap);
83 va_list ap; local
85 va_start(ap, fmt);
86 _warn_helper(_EVENT_LOG_WARN, errno, fmt, ap);
87 va_end(ap);
93 va_list ap; local
104 va_list ap; local
114 va_list ap; local
124 va_list ap; local
132 _warn_helper(int severity, int log_errno, const char *fmt, va_list ap) argument
[all...]
/external/chromium_org/third_party/re2/util/
H A Dstringprintf.cc9 static void StringAppendV(string* dst, const char* format, va_list ap) { argument
17 va_copy(backup_ap, ap);
40 va_copy(backup_ap, ap);
55 va_list ap; local
56 va_start(ap, format);
58 StringAppendV(&result, format, ap);
59 va_end(ap);
64 va_list ap; local
65 va_start(ap, format);
67 StringAppendV(dst, format, ap);
72 va_list ap; local
[all...]
/external/regex-re2/util/
H A Dstringprintf.cc9 static void StringAppendV(string* dst, const char* format, va_list ap) { argument
17 va_copy(backup_ap, ap);
40 va_copy(backup_ap, ap);
55 va_list ap; local
56 va_start(ap, format);
58 StringAppendV(&result, format, ap);
59 va_end(ap);
64 va_list ap; local
65 va_start(ap, format);
67 StringAppendV(dst, format, ap);
72 va_list ap; local
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_er.c28 static void wps_er_ap_process(struct wps_er_ap *ap, struct wpabuf *msg);
29 static int wps_er_send_get_device_info(struct wps_er_ap *ap,
30 void (*m1_handler)(struct wps_er_ap *ap,
59 static struct wps_er_sta * wps_er_sta_get(struct wps_er_ap *ap, const u8 *addr, argument
63 dl_list_for_each(sta, &ap->sta, struct wps_er_sta, list) {
76 wps_er_sta_event(sta->ap->er->wps, sta, WPS_EV_ER_ENROLLEE_REMOVE);
91 static void wps_er_sta_remove_all(struct wps_er_ap *ap) argument
94 dl_list_for_each_safe(sta, prev, &ap->sta, struct wps_er_sta, list)
103 struct wps_er_ap *ap; local
104 dl_list_for_each(ap,
118 struct wps_er_ap *ap; local
127 wps_er_ap_event(struct wps_context *wps, struct wps_er_ap *ap, enum wps_event event) argument
154 wps_er_ap_free(struct wps_er_ap *ap) argument
181 wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap) argument
196 struct wps_er_ap *ap = ctx; local
221 wps_er_ap_unsubscribe(struct wps_er *er, struct wps_er_ap *ap) argument
291 struct wps_er_ap *ap; local
313 wps_er_ap_use_cached_settings(struct wps_er *er, struct wps_er_ap *ap) argument
335 wps_er_ap_remove_entry(struct wps_er *er, struct wps_er_ap *ap) argument
361 struct wps_er_ap *ap = user_ctx; local
367 wps_er_get_sid(struct wps_er_ap *ap, char *sid) argument
405 struct wps_er_ap *ap = ctx; local
426 wps_er_subscribe(struct wps_er_ap *ap) argument
475 wps_er_ap_get_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
494 wps_er_get_device_info(struct wps_er_ap *ap) argument
533 wps_er_parse_device_description(struct wps_er_ap *ap, struct wpabuf *reply) argument
613 struct wps_er_ap *ap = ctx; local
641 struct wps_er_ap *ap; local
679 struct wps_er_ap *ap; local
691 struct wps_er_ap *prev, *ap; local
757 wps_er_add_sta_data(struct wps_er_ap *ap, const u8 *addr, struct wps_parse_attr *attr, int probe_req) argument
837 wps_er_process_wlanevent_probe_req(struct wps_er_ap *ap, const u8 *addr, struct wpabuf *msg) argument
1069 wps_er_process_wlanevent_eap(struct wps_er_ap *ap, const u8 *addr, struct wpabuf *msg) argument
1112 wps_er_process_wlanevent(struct wps_er_ap *ap, struct wpabuf *event) argument
1155 struct wps_er_ap *ap = wps_er_ap_get_id(er, ap_id); local
1333 struct wps_er_ap *ap; local
1351 struct wps_er_ap *ap, *tmp; local
1393 struct wps_er_ap *ap = ctx; local
1421 wps_er_send_set_sel_reg(struct wps_er_ap *ap, struct wpabuf *msg) argument
1507 struct wps_er_ap *ap; local
1564 struct wps_er_ap *ap; local
1609 struct wps_er_ap *ap = ctx; local
1630 struct wps_er_ap *ap; local
1644 struct wps_er_ap *ap = ctx; local
1690 wps_er_ap_put_message(struct wps_er_ap *ap, const struct wpabuf *msg) argument
1730 wps_er_ap_process(struct wps_er_ap *ap, struct wpabuf *msg) argument
1776 wps_er_ap_learn_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
1799 wps_er_ap_learn(struct wps_er_ap *ap, const char *dev_info) argument
1821 struct wps_er_ap *ap = ctx; local
1852 wps_er_send_get_device_info(struct wps_er_ap *ap, void (*m1_handler)(struct wps_er_ap *ap, struct wpabuf *m1)) argument
1902 struct wps_er_ap *ap; local
1935 struct wps_er_ap *ap; local
1960 wps_er_ap_config_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
1988 struct wps_er_ap *ap; local
2053 struct wps_er_ap *ap; local
2075 struct wps_er_ap *ap; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_er.c28 static void wps_er_ap_process(struct wps_er_ap *ap, struct wpabuf *msg);
29 static int wps_er_send_get_device_info(struct wps_er_ap *ap,
30 void (*m1_handler)(struct wps_er_ap *ap,
59 static struct wps_er_sta * wps_er_sta_get(struct wps_er_ap *ap, const u8 *addr, argument
63 dl_list_for_each(sta, &ap->sta, struct wps_er_sta, list) {
76 wps_er_sta_event(sta->ap->er->wps, sta, WPS_EV_ER_ENROLLEE_REMOVE);
91 static void wps_er_sta_remove_all(struct wps_er_ap *ap) argument
94 dl_list_for_each_safe(sta, prev, &ap->sta, struct wps_er_sta, list)
103 struct wps_er_ap *ap; local
104 dl_list_for_each(ap,
118 struct wps_er_ap *ap; local
127 wps_er_ap_event(struct wps_context *wps, struct wps_er_ap *ap, enum wps_event event) argument
154 wps_er_ap_free(struct wps_er_ap *ap) argument
181 wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap) argument
196 struct wps_er_ap *ap = ctx; local
221 wps_er_ap_unsubscribe(struct wps_er *er, struct wps_er_ap *ap) argument
291 struct wps_er_ap *ap; local
313 wps_er_ap_use_cached_settings(struct wps_er *er, struct wps_er_ap *ap) argument
335 wps_er_ap_remove_entry(struct wps_er *er, struct wps_er_ap *ap) argument
361 struct wps_er_ap *ap = user_ctx; local
367 wps_er_get_sid(struct wps_er_ap *ap, char *sid) argument
405 struct wps_er_ap *ap = ctx; local
426 wps_er_subscribe(struct wps_er_ap *ap) argument
475 wps_er_ap_get_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
494 wps_er_get_device_info(struct wps_er_ap *ap) argument
533 wps_er_parse_device_description(struct wps_er_ap *ap, struct wpabuf *reply) argument
613 struct wps_er_ap *ap = ctx; local
641 struct wps_er_ap *ap; local
679 struct wps_er_ap *ap; local
691 struct wps_er_ap *prev, *ap; local
757 wps_er_add_sta_data(struct wps_er_ap *ap, const u8 *addr, struct wps_parse_attr *attr, int probe_req) argument
837 wps_er_process_wlanevent_probe_req(struct wps_er_ap *ap, const u8 *addr, struct wpabuf *msg) argument
1069 wps_er_process_wlanevent_eap(struct wps_er_ap *ap, const u8 *addr, struct wpabuf *msg) argument
1112 wps_er_process_wlanevent(struct wps_er_ap *ap, struct wpabuf *event) argument
1155 struct wps_er_ap *ap = wps_er_ap_get_id(er, ap_id); local
1333 struct wps_er_ap *ap; local
1351 struct wps_er_ap *ap, *tmp; local
1393 struct wps_er_ap *ap = ctx; local
1421 wps_er_send_set_sel_reg(struct wps_er_ap *ap, struct wpabuf *msg) argument
1507 struct wps_er_ap *ap; local
1564 struct wps_er_ap *ap; local
1609 struct wps_er_ap *ap = ctx; local
1630 struct wps_er_ap *ap; local
1644 struct wps_er_ap *ap = ctx; local
1690 wps_er_ap_put_message(struct wps_er_ap *ap, const struct wpabuf *msg) argument
1730 wps_er_ap_process(struct wps_er_ap *ap, struct wpabuf *msg) argument
1776 wps_er_ap_learn_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
1799 wps_er_ap_learn(struct wps_er_ap *ap, const char *dev_info) argument
1821 struct wps_er_ap *ap = ctx; local
1852 wps_er_send_get_device_info(struct wps_er_ap *ap, void (*m1_handler)(struct wps_er_ap *ap, struct wpabuf *m1)) argument
1902 struct wps_er_ap *ap; local
1935 struct wps_er_ap *ap; local
1960 wps_er_ap_config_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
1988 struct wps_er_ap *ap; local
2053 struct wps_er_ap *ap; local
2075 struct wps_er_ap *ap; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_er.c28 static void wps_er_ap_process(struct wps_er_ap *ap, struct wpabuf *msg);
29 static int wps_er_send_get_device_info(struct wps_er_ap *ap,
30 void (*m1_handler)(struct wps_er_ap *ap,
59 static struct wps_er_sta * wps_er_sta_get(struct wps_er_ap *ap, const u8 *addr, argument
63 dl_list_for_each(sta, &ap->sta, struct wps_er_sta, list) {
76 wps_er_sta_event(sta->ap->er->wps, sta, WPS_EV_ER_ENROLLEE_REMOVE);
91 static void wps_er_sta_remove_all(struct wps_er_ap *ap) argument
94 dl_list_for_each_safe(sta, prev, &ap->sta, struct wps_er_sta, list)
103 struct wps_er_ap *ap; local
104 dl_list_for_each(ap,
118 struct wps_er_ap *ap; local
127 wps_er_ap_event(struct wps_context *wps, struct wps_er_ap *ap, enum wps_event event) argument
154 wps_er_ap_free(struct wps_er_ap *ap) argument
181 wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap) argument
196 struct wps_er_ap *ap = ctx; local
221 wps_er_ap_unsubscribe(struct wps_er *er, struct wps_er_ap *ap) argument
291 struct wps_er_ap *ap; local
313 wps_er_ap_use_cached_settings(struct wps_er *er, struct wps_er_ap *ap) argument
335 wps_er_ap_remove_entry(struct wps_er *er, struct wps_er_ap *ap) argument
361 struct wps_er_ap *ap = user_ctx; local
367 wps_er_get_sid(struct wps_er_ap *ap, char *sid) argument
405 struct wps_er_ap *ap = ctx; local
426 wps_er_subscribe(struct wps_er_ap *ap) argument
475 wps_er_ap_get_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
494 wps_er_get_device_info(struct wps_er_ap *ap) argument
533 wps_er_parse_device_description(struct wps_er_ap *ap, struct wpabuf *reply) argument
613 struct wps_er_ap *ap = ctx; local
641 struct wps_er_ap *ap; local
679 struct wps_er_ap *ap; local
691 struct wps_er_ap *prev, *ap; local
757 wps_er_add_sta_data(struct wps_er_ap *ap, const u8 *addr, struct wps_parse_attr *attr, int probe_req) argument
837 wps_er_process_wlanevent_probe_req(struct wps_er_ap *ap, const u8 *addr, struct wpabuf *msg) argument
1069 wps_er_process_wlanevent_eap(struct wps_er_ap *ap, const u8 *addr, struct wpabuf *msg) argument
1112 wps_er_process_wlanevent(struct wps_er_ap *ap, struct wpabuf *event) argument
1155 struct wps_er_ap *ap = wps_er_ap_get_id(er, ap_id); local
1333 struct wps_er_ap *ap; local
1351 struct wps_er_ap *ap, *tmp; local
1393 struct wps_er_ap *ap = ctx; local
1421 wps_er_send_set_sel_reg(struct wps_er_ap *ap, struct wpabuf *msg) argument
1507 struct wps_er_ap *ap; local
1564 struct wps_er_ap *ap; local
1609 struct wps_er_ap *ap = ctx; local
1630 struct wps_er_ap *ap; local
1644 struct wps_er_ap *ap = ctx; local
1690 wps_er_ap_put_message(struct wps_er_ap *ap, const struct wpabuf *msg) argument
1730 wps_er_ap_process(struct wps_er_ap *ap, struct wpabuf *msg) argument
1776 wps_er_ap_learn_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
1799 wps_er_ap_learn(struct wps_er_ap *ap, const char *dev_info) argument
1821 struct wps_er_ap *ap = ctx; local
1852 wps_er_send_get_device_info(struct wps_er_ap *ap, void (*m1_handler)(struct wps_er_ap *ap, struct wpabuf *m1)) argument
1902 struct wps_er_ap *ap; local
1935 struct wps_er_ap *ap; local
1960 wps_er_ap_config_m1(struct wps_er_ap *ap, struct wpabuf *m1) argument
1988 struct wps_er_ap *ap; local
2053 struct wps_er_ap *ap; local
2075 struct wps_er_ap *ap; local
[all...]
/external/clang/lib/Headers/
H A Dstdarg.h33 #define va_start(ap, param) __builtin_va_start(ap, param)
34 #define va_end(ap) __builtin_va_end(ap)
35 #define va_arg(ap, type) __builtin_va_arg(ap, type)

Completed in 422 milliseconds

1234567891011>>