HomeSort by relevance Sort by last modified time
    Searched refs:ap (Results 76 - 100 of 708) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu4c/io/
uscanf.h 31 va_list ap);
uprintf.c 107 va_list ap; local
110 va_start(ap, patternSpecification);
111 count = u_vfprintf(f, patternSpecification, ap);
112 va_end(ap);
121 va_list ap; local
123 va_start(ap, patternSpecification);
124 count = u_vfprintf(u_get_stdout(), patternSpecification, ap);
125 va_end(ap);
134 va_list ap; local
137 va_start(ap, patternSpecification)
148 va_list ap; local
    [all...]
  /external/linux-tools-perf/util/ui/
helpline.h 7 void ui_helpline__vpush(const char *fmt, va_list ap);
  /external/open-vcdiff/gflags/src/windows/
port.cc 49 va_list ap;
50 va_start(ap, format);
51 const int r = _vsnprintf(str, size-1, format, ap);
52 va_end(ap);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
weight_amrwb_lpc.cpp 48 int16 ap[], (o) Q12 : Spectral expanded LPC coefficients
56 ap[i] = a[i] (gamma i)
118 int16 ap[], /* (o) Q12 : Spectral expanded LPC coefficients */
125 ap[0] = a[0];
129 ap[i] = (int16)(fxp_mac_16by16(a[i], fac, roundFactor) >> 15);
132 ap[i] = (int16)(fxp_mac_16by16(a[i], fac, roundFactor) >> 15);
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /frameworks/base/media/jni/soundpool/
android_media_SoundPool.cpp 45 SoundPool *ap = MusterSoundPool(env, thiz); local
51 int id = ap->load(s, priority);
61 SoundPool *ap = MusterSoundPool(env, thiz); local
62 if (ap == NULL) return 0;
63 return ap->load(jniGetFDFromFileDescriptor(env, fileDescriptor),
70 SoundPool *ap = MusterSoundPool(env, thiz); local
71 if (ap == NULL) return 0;
72 return ap->unload(sampleID);
81 SoundPool *ap = MusterSoundPool(env, thiz); local
82 if (ap == NULL) return 0
90 SoundPool *ap = MusterSoundPool(env, thiz); local
99 SoundPool *ap = MusterSoundPool(env, thiz); local
108 SoundPool *ap = MusterSoundPool(env, thiz); local
117 SoundPool *ap = MusterSoundPool(env, thiz); local
126 SoundPool *ap = MusterSoundPool(env, thiz); local
136 SoundPool *ap = MusterSoundPool(env, thiz); local
146 SoundPool *ap = MusterSoundPool(env, thiz); local
156 SoundPool *ap = MusterSoundPool(env, thiz); local
166 SoundPool *ap = MusterSoundPool(env, thiz); local
182 SoundPool *ap = new SoundPool(maxChannels, (audio_stream_type_t) streamType, srcQuality); local
200 SoundPool *ap = MusterSoundPool(env, thiz); local
    [all...]
  /bionic/libc/unistd/
exec.c 50 va_list ap; local
54 va_start(ap, arg);
56 while (va_arg(ap, char *) != NULL)
58 va_end(ap);
64 va_start(ap, arg);
67 while ((argv[n] = va_arg(ap, char *)) != NULL)
69 va_end(ap);
76 va_list ap; local
80 va_start(ap, arg);
82 while (va_arg(ap, char *) != NULL
103 va_list ap; local
    [all...]
  /external/qemu/
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...]
  /frameworks/wilhelm/src/itf/
IAndroidEffectSend.c 35 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
37 if (NULL == ap) {
41 COutputMix *outputMix = CAudioPlayer_GetOutputMix(ap);
44 result = android_fxSend_attachToAux(ap, effectImplementationId, enable,
45 initialLevel + ap->mVolume.mLevel);
93 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
95 if (NULL != ap) {
96 SLmillibel oldDirectLevel = ap->mDirectLevel;
98 ap->mDirectLevel = directLevel;
99 ap->mAmplFromDirectLevel = sles_to_android_amplification(directLevel)
126 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
155 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
194 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
    [all...]
IMuteSolo.c 31 CAudioPlayer *ap = (CAudioPlayer *) thisObject; local
33 SLuint8 numChannels = ap->mNumChannels;
42 SLuint8 oldMuteMask = ap->mMuteMask;
44 ap->mMuteMask |= mask;
46 ap->mMuteMask &= ~mask;
48 interface_unlock_exclusive_attributes(thiz, oldMuteMask != ap->mMuteMask ? ATTR_GAIN :
70 CAudioPlayer *ap = (CAudioPlayer *) thisObject; local
73 SLuint8 numChannels = ap->mNumChannels;
81 SLuint8 mask = ap->mMuteMask;
103 CAudioPlayer *ap = (CAudioPlayer *) thisObject local
142 CAudioPlayer *ap = (CAudioPlayer *) thisObject; local
178 CAudioPlayer *ap = (CAudioPlayer *) thisObject; local
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
byrefcopyinner.c 15 int* ap = &a; // just to keep the address on the stack. local
26 if(&a == ap) {
  /ndk/tests/device/test-stlport_shared-exception/jni/
new3.cpp 34 A *ap = new A; local
37 return ap || bp ;
  /ndk/tests/device/test-stlport_static-exception/jni/
new3.cpp 34 A *ap = new A; local
37 return ap || bp ;
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_trace.c 105 va_list ap; local
107 va_start(ap, fmt); /* make ap point to first arg after 'fmt' */
116 vsprintf(string, fmt, ap);
125 vprintf(fmt, ap);
128 va_end(ap);
  /external/openssh/openbsd-compat/
bsd-asprintf.c 43 vasprintf(char **str, const char *fmt, va_list ap)
50 VA_COPY(ap2, ap);
67 VA_COPY(ap2, ap);
91 va_list ap; local
95 va_start(ap, fmt);
96 ret = vasprintf(str, fmt, ap);
97 va_end(ap);
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/new.delete/new.delete.array/
new_array_nothrow.pass.cpp 46 A* ap = new(std::nothrow) A[3]; local
47 assert(ap);
49 delete [] ap;
new_array_nothrow_replace.pass.cpp 42 A* ap = new (std::nothrow) A[3]; local
43 assert(ap);
46 delete [] ap;
new_array_replace.pass.cpp 42 A* ap = new A[3]; local
43 assert(ap);
46 delete [] ap;
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/new.delete/new.delete.single/
new_nothrow.pass.cpp 46 A* ap = new(std::nothrow) A; local
47 assert(ap);
49 delete ap;
new_nothrow_replace.pass.cpp 42 A* ap = new (std::nothrow) A; local
43 assert(ap);
46 delete ap;
new_replace.pass.cpp 42 A* ap = new A; local
43 assert(ap);
46 delete ap;
  /bionic/libc/stdio/
asprintf.c 30 va_list ap; local
40 va_start(ap, fmt);
41 ret = __vfprintf(&f, fmt, ap);
42 va_end(ap);
snprintf.c 43 va_list ap; local
62 va_start(ap, fmt);
63 ret = __vfprintf(&f, fmt, ap);
64 va_end(ap);
sscanf.c 51 va_list ap; local
61 va_start(ap, fmt);
62 ret = vfscanf(&f, fmt, ap);
63 va_end(ap);

Completed in 2766 milliseconds

1 2 34 5 6 7 8 91011>>