HomeSort by relevance Sort by last modified time
    Searched defs:ap (Results 201 - 225 of 621) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libvpx/libvpx/
example_xma.c 62 va_list ap; local
63 va_start(ap, fmt);
64 vprintf(fmt, ap);
  /external/libvpx/libvpx/examples/
decoder_tmpl.c 35 va_list ap; local
37 va_start(ap, fmt);
38 vprintf(fmt, ap);
  /external/mesa3d/src/gallium/auxiliary/util/
u_string.h 73 util_vsprintf(char *str, const char *format, va_list ap)
75 util_vsnprintf(str, (size_t)-1, format, ap);
81 va_list ap; local
82 va_start(ap, format);
83 util_vsnprintf(str, (size_t)-1, format, ap);
84 va_end(ap);
217 va_list ap; local
218 va_start(ap, format);
219 written = util_vsnprintf(sbuf->ptr, sbuf->left, format, ap);
220 va_end(ap);
    [all...]
  /external/qemu/
cpus.c 41 va_list ap; local
44 va_start(ap, fmt);
46 vfprintf(stderr, fmt, ap);
56 va_end(ap);
qemu-error.c 21 void error_vprintf(const char *fmt, va_list ap)
24 monitor_vprintf(cur_mon, fmt, ap);
26 vfprintf(stderr, fmt, ap);
36 va_list ap; local
38 va_start(ap, fmt);
39 error_vprintf(fmt, ap);
40 va_end(ap);
45 va_list ap; local
48 va_start(ap, fmt);
49 error_vprintf(fmt, ap);
201 va_list ap; local
    [all...]
qerror.c 233 va_list ap; local
238 va_start(ap, fmt);
239 vfprintf(stderr, fmt, ap);
240 va_end(ap);
  /external/qemu/distrib/sdl-1.2.15/src/
SDL_error.c 52 va_list ap; local
60 va_start(ap, fmt);
79 va_arg(ap, int);
83 va_arg(ap, double);
87 va_arg(ap, void *);
92 const char *str = va_arg(ap, const char *);
107 va_end(ap);
  /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 static struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *ap)
57 s = iface->ap_hash[STA_HASH(ap)];
131 struct ap_info *ap, *prev; local
147 struct ap_info *ap; local
174 struct ap_info *ap; local
256 struct ap_info *ap; local
    [all...]
  /external/wpa_supplicant_8/src/utils/
wpabuf.c 293 va_list ap; local
297 va_start(ap, fmt);
298 res = vsnprintf(tmp, buf->size - buf->used, fmt, ap);
299 va_end(ap);
  /frameworks/base/tools/aapt/
SourcePos.cpp 124 va_list ap; local
125 va_start(ap, fmt);
126 retval = vsnprintf(buf, sizeof(buf), fmt, ap);
127 va_end(ap);
142 va_list ap; local
143 va_start(ap, fmt);
144 retval = vsnprintf(buf, sizeof(buf), fmt, ap);
145 va_end(ap);
  /frameworks/wilhelm/src/itf/
IEffectSend.c 133 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
136 assert(NULL != ap);
138 COutputMix *outputMix = CAudioPlayer_GetOutputMix(ap);
142 result = translateEnableFxSendError(android_fxSend_attach(ap, (bool) enable,
144 initialLevel + ap->mVolume.mLevel));
146 result = translateEnableFxSendError(android_fxSend_attach(ap, (bool) enable,
148 initialLevel + ap->mVolume.mLevel));
199 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
201 if (NULL != ap) {
202 SLmillibel oldDirectLevel = ap->mDirectLevel
234 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
270 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
    [all...]
  /hardware/samsung_slsi/exynos5/libv4l2/
exynos_subdev.c 45 static int __subdev_open(const char *filename, int oflag, va_list ap)
51 mode = va_arg(ap, int);
60 va_list ap; local
63 va_start(ap, oflag);
64 fd = __subdev_open(filename, oflag, ap);
65 va_end(ap);
75 va_list ap; local
119 va_start(ap, oflag);
120 fd = __subdev_open(filename, oflag, ap);
121 va_end(ap);
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
SealedObject.java 99 AlgorithmParameters ap = c.getParameters(); local
100 this.encodedParams = (ap == null) ? null : ap.getEncoded();
101 this.paramsAlg = (ap == null) ? null : ap.getAlgorithm();
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
KeyAgreementThread.java 71 AlgorithmParameters ap = apg.generateParameters(); local
72 DHParameterSpec ps = ap.getParameterSpec(DHParameterSpec.class);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 97 A_void_1* ap = &a; local
98 std::bind(fp, _1)(ap);
108 A_void_1* ap = &a; local
109 std::bind(fp, ap)();
120 A_void_1* ap = &a; local
121 std::bind(fp, _1)(ap);
131 A_void_1* ap = &a; local
132 std::bind(fp, ap)();
186 A_int_1* ap = &a; local
187 assert(std::bind(&A_int_1::mem1, _1)(ap) == 3)
195 A_int_1* ap = &a; local
204 A_int_1* ap = &a; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 77 A_void_1* ap = &a; local
79 r2(ap);
92 A_void_1* ap = &a; local
93 r2(ap);
149 A_int_1* ap = &a; local
150 assert(r2(ap) == 3);
159 A_int_1* ap = &a; local
160 assert(r2(ap) == 4);
171 A_int_1* ap = &a; local
172 assert(r2(ap) == 6)
239 A_void_2* ap = &a; local
254 A_void_2* ap = &a; local
313 A_int_2* ap = &a; local
324 A_int_2* ap = &a; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke.pass.cpp 80 A_void_1* ap = &a; local
81 r1(ap);
93 A_void_1* ap = &a; local
94 r1(ap);
149 A_int_1* ap = &a; local
150 assert(r1(ap) == 3);
158 A_int_1* ap = &a; local
159 assert(r1(ap) == 4);
169 A_int_1* ap = &a; local
170 assert(r1(ap) == 6)
236 A_void_2* ap = &a; local
250 A_void_2* ap = &a; local
308 A_int_2* ap = &a; local
318 A_int_2* ap = &a; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 84 A* ap = a.allocate(3); local
88 a.construct(ap);
92 a.destroy(ap);
96 a.construct(ap, A());
100 a.destroy(ap);
104 a.construct(ap, 5);
108 a.destroy(ap);
112 a.construct(ap, 5, (int*)0);
116 a.destroy(ap);
120 a.deallocate(ap, 3)
129 move_only* ap = a.allocate(3); local
    [all...]
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_indexing.cpp 102 float *ap; local
106 if(m) ap=(float*) (((unsigned long)p)-m+nr_bytes);
107 else ap=p;
108 return(ap);
113 short *ap; local
117 if(m) ap=(short*) (((unsigned long)p)-m+nr_bytes);
118 else ap=p;
119 return(ap);
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_indexing.cpp 102 float *ap; local
106 if(m) ap=(float*) (((unsigned long)p)-m+nr_bytes);
107 else ap=p;
108 return(ap);
113 short *ap; local
117 if(m) ap=(short*) (((unsigned long)p)-m+nr_bytes);
118 else ap=p;
119 return(ap);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.cpp 102 float *ap; local
106 if(m) ap=(float*) (((unsigned long)p)-m+nr_bytes);
107 else ap=p;
108 return(ap);
113 short *ap; local
117 if(m) ap=(short*) (((unsigned long)p)-m+nr_bytes);
118 else ap=p;
119 return(ap);
  /sdk/find_java/
utils.cpp 32 va_list ap; local
33 va_start(ap, text);
34 formatted.setv(text, ap);
35 va_end(ap);
43 va_list ap; local
44 va_start(ap, description);
45 formatted.setv(description, ap);
46 va_end(ap);
  /packages/apps/Email/tests/src/com/android/email/
DBTestHelper.java 239 final AttachmentProvider ap = new AttachmentProvider(); local
240 ap.attachInfo(providerContext, null);
241 resolver.addProvider(AttachmentUtilities.AUTHORITY, ap);
  /bionic/libc/unistd/
syslog.c 61 va_list ap; local
63 va_start(ap, fmt);
64 vsyslog(pri, fmt, ap);
65 va_end(ap);
69 vsyslog(int pri, const char *fmt, va_list ap)
71 vsyslog_r(pri, &sdata, fmt, ap);
98 va_list ap; local
100 va_start(ap, fmt);
101 vsyslog_r(pri, data, fmt, ap);
102 va_end(ap);
    [all...]
  /bootable/recovery/minadbd/
adb.c 43 va_list ap; local
44 va_start(ap, fmt);
46 vfprintf(stderr, fmt, ap);
48 va_end(ap);
54 va_list ap; local
55 va_start(ap, fmt);
57 vfprintf(stderr, fmt, ap);
59 va_end(ap);

Completed in 2343 milliseconds

1 2 3 4 5 6 7 891011>>