HomeSort by relevance Sort by last modified time
    Searched defs:ap (Results 176 - 200 of 730) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/wilhelm/src/itf/
IPlaybackRate.c 33 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
35 if (NULL != ap) {
36 result = android_audioPlayer_setPlaybackRateAndConstraints(ap, rate, thiz->mProperties);
87 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ? local
89 if (NULL != ap) {
90 result = android_audioPlayer_setPlaybackRateAndConstraints(ap, thiz->mRate,
IPrefetchStatus.c 128 CAudioPlayer *ap = (CAudioPlayer *) thiz->mThis; local
129 android_audioPlayer_setBufferingUpdateThresholdPerMille(ap, period);
ISeek.c 67 CAudioPlayer *ap = InterfaceToCAudioPlayer(thiz); local
68 if (NULL != ap) {
69 result = android_audioPlayer_loop(ap, loopEnable);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
reconintra4x4.c 81 unsigned int ap[4]; local
82 ap[0] = (top_left + 2 * Above[0] + Above[1] + 2) >> 2;
83 ap[1] = (Above[0] + 2 * Above[1] + Above[2] + 2) >> 2;
84 ap[2] = (Above[1] + 2 * Above[2] + Above[3] + 2) >> 2;
85 ap[3] = (Above[2] + 2 * Above[3] + Above[4] + 2) >> 2;
92 dst[c] = ap[c];
  /hardware/ti/omap4-aah/domx/mm_osal/src/
timm_osal_trace.c 134 va_list ap; local
136 va_start(ap, fmt); /* make ap point to first arg after 'fmt' */
152 vsprintf(string, fmt, ap);
168 vprintf(fmt, ap);
172 va_end(ap);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.array/
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++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.single/
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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
allocate.pass.cpp 50 A* ap = a.allocate(3); local
53 a.deallocate(ap, 3);
  /prebuilts/go/darwin-x86/doc/progs/
error2.go 33 type ap struct{} type
35 func (ap) NewContext(*http.Request) *ctx { return nil }
41 var appengine ap
error3.go 42 type ap struct{} type
44 func (ap) NewContext(*http.Request) *ctx { return nil }
50 var appengine ap
  /prebuilts/go/linux-x86/doc/progs/
error2.go 33 type ap struct{} type
35 func (ap) NewContext(*http.Request) *ctx { return nil }
41 var appengine ap
error3.go 42 type ap struct{} type
44 func (ap) NewContext(*http.Request) *ctx { return nil }
50 var appengine ap
  /sdk/avdlauncher/src/source/
avdlauncher.c 36 va_list ap; local
37 va_start(ap, msg);
40 vfprintf(stderr, msg, ap);
43 va_end(ap);
  /sdk/sdklauncher/src/source/
sdklauncher.c 36 va_list ap; local
37 va_start(ap, msg);
40 vfprintf(stderr, msg, ap);
43 va_end(ap);
  /system/core/base/
stringprintf.cpp 26 void StringAppendV(std::string* dst, const char* format, va_list ap) {
34 va_copy(backup_ap, ap);
57 va_copy(backup_ap, ap);
69 va_list ap; local
70 va_start(ap, fmt);
72 StringAppendV(&result, fmt, ap);
73 va_end(ap);
78 va_list ap; local
79 va_start(ap, format);
80 StringAppendV(dst, format, ap);
    [all...]
  /system/core/debuggerd/test/
log_fake.cpp 61 va_list ap; local
62 va_start(ap, fmt);
63 android::base::StringAppendV(&g_fake_log_print, fmt, ap);
64 va_end(ap);
  /system/core/libcutils/
klog.c 67 va_list ap; local
68 va_start(ap, fmt);
69 vsnprintf(buf, sizeof(buf), fmt, ap);
70 va_end(ap);
  /system/extras/perfprofd/tests/
perfprofdmockutils.cc 65 void perfprofd_mocklog(const char *tag, const char *fmt, va_list ap)
69 vsnprintf(buffer+strlen(tag), LMAX, fmt, ap);
76 va_list ap; local
77 va_start(ap, fmt);
78 vfprintf(stderr, fmt, ap); fprintf(stderr, "\n");
79 perfprofd_mocklog("E: ", fmt, ap);
80 va_end(ap);
85 va_list ap; local
86 va_start(ap, fmt);
87 vfprintf(stderr, fmt, ap); fprintf(stderr, "\n")
94 va_list ap; local
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
vasprintf.c 71 va_list ap; local
74 va_copy (ap, args);
76 memcpy ((PTR) &ap, (PTR) &args, sizeof (va_list));
88 total_width += abs (va_arg (ap, int));
98 total_width += abs (va_arg (ap, int));
116 (void) va_arg (ap, int);
123 (void) va_arg (ap, double);
129 total_width += strlen (va_arg (ap, char *));
133 (void) va_arg (ap, char *);
140 va_end (ap);
    [all...]
  /bionic/libc/bionic/
legacy_32_bit_support.cpp 52 va_list ap; local
54 va_start(ap, cmd);
55 void* arg = va_arg(ap, void*);
56 va_end(ap);
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 110 bool FileUtil::doVprintf(bool fileOnly, int logLevel, const char *fmt, va_list ap)
122 size = vsnprintf(mBuffer + start, mBufferSize - start - 2, fmt, ap); // 2 for \n\0
156 va_list ap; local
157 va_start(ap, fmt);
158 bool result = doVprintf(false, -1, fmt, ap);
159 va_end(ap);
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
EncryptedPrivateKeyInfo_ImplTest.java 108 AlgorithmParameters ap = AlgorithmParameters local
111 ap.init(EncryptedPrivateKeyInfoData.getParametersEncoding(
113 EncryptedPrivateKeyInfo epki = new EncryptedPrivateKeyInfo(ap,
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersTest.java 71 AlgorithmParameters ap = new DummyAlgorithmParameters(null, p, null); local
72 assertNull(ap.getAlgorithm());
75 ap = new DummyAlgorithmParameters(null, p, "AAA");
76 assertEquals("AAA", ap.getAlgorithm());
168 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC"); local
170 checkUnititialized(ap);
172 ap.init(new MyAlgorithmParameterSpec());
174 checkAP(ap, p);
183 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", local
186 checkUnititialized(ap);
257 AlgorithmParameters ap = AlgorithmParameters.getInstance("ABC", p); local
271 AlgorithmParameters ap = new DummyAlgorithmParameters(null, null, "AAA"); local
    [all...]

Completed in 1088 milliseconds

1 2 3 4 5 6 78 91011>>