HomeSort by relevance Sort by last modified time
    Searched defs:sl (Results 26 - 50 of 274) sorted by null

12 3 4 5 6 7 8 91011

  /frameworks/wilhelm/tests/mimeUri/
slesTestPlayStreamType.cpp 48 void TestStreamTypeConfiguration( SLObjectItf sl, const char* path, const SLint32 type)
75 /* Get the SL Engine Interface which is implicit */
76 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
238 SLObjectItf sl; local
258 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
261 /* Realizing the SL Engine in synchronous mode. */
262 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
265 TestStreamTypeConfiguration(sl, argv[1], (SLint32)atoi(argv[2]))
    [all...]
slesTestPlayUri2.cpp 63 void TestPlayUri( SLObjectItf sl, const char* path, const char* path2)
88 /* Get the SL Engine Interface which is implicit */
89 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
252 SLObjectItf sl; local
271 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
274 /* Realizing the SL Engine in synchronous mode. */
275 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
279 TestPlayUri(sl, argv[1], argv[1])
    [all...]
slesTest_playStates.cpp 47 void TestPlayUri( SLObjectItf sl, const char* path)
72 /* Get the SL Engine Interface which is implicit */
73 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
204 SLObjectItf sl; local
223 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
226 /* Realizing the SL Engine in synchronous mode. */
227 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
231 TestPlayUri(sl, argv[1])
    [all...]
slesTestGetPositionUri.cpp 127 void TestGetPositionUri( SLObjectItf sl, const char* path)
155 /* Get the SL Engine Interface which is implicit */
156 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
314 SLObjectItf sl; local
331 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
333 /* Realizing the SL Engine in synchronous mode. */
334 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
337 TestGetPositionUri(sl, argv[1])
    [all...]
slesTestLoopUri.cpp 122 void TestLoopUri( SLObjectItf sl, const char* path)
145 /* Get the SL Engine Interface which is implicit */
146 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
289 SLObjectItf sl; local
306 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
308 /* Realizing the SL Engine in synchronous mode. */
309 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
312 TestLoopUri(sl, argv[1])
    [all...]
slesTestPlayUri.cpp 125 void TestPlayUri( SLObjectItf sl, const char* path)
148 /* Get the SL Engine Interface which is implicit */
149 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
323 SLObjectItf sl; local
340 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
342 /* Realizing the SL Engine in synchronous mode. */
343 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
346 TestPlayUri(sl, argv[1])
    [all...]
  /bionic/libc/kernel/uapi/rdma/
ib_user_sa.h 49 __u8 sl; member in struct:ib_user_path_rec
  /external/aac/libFDK/include/
FDK_trigFcts.h 177 LONG sl, cl; local
184 sl = (LONG)tmp.v.re;
189 sl = (LONG)tmp.v.im;
194 *sine = (FIXP_DBL)((sl * ssign) << (DFRACT_BITS-FRACT_BITS));
197 *sine = (FIXP_DBL)(sl * ssign);
  /external/clang/test/Sema/
zvector.c 17 vector signed long long sl, sl2; variable
58 sl = sl2;
84 sl = sc2; // expected-error {{incompatible type}}
123 sl = (vector signed long long)bl2;
144 sl = (vector signed long long)bc2;
183 sl++;
223 sl--;
245 sl = +sl2;
271 sl = -sl2;
297 sl = ~sl2
    [all...]
  /external/kernel-headers/original/uapi/rdma/
ib_user_sa.h 67 __u8 sl; member in struct:ib_user_path_rec
  /external/libgsm/src/
lpc.c 96 register float sl = *sp; local
98 # define STEP(k) L_ACF[k] += (longword)(sl * sp[ -(k) ]);
101 word sl = *sp; local
103 # define STEP(k) L_ACF[k] += ((longword)sl * sp[ -(k) ]);
106 # define NEXTI sl = *++sp
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
va_1.c 42 signed long sl; local
61 sl = va_arg (ap, signed long);
73 ul, sl,
106 signed long sl; local
170 sl = 16;
185 args[11] = &sl;
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_manager_posix.cc 298 UdpSocketPosix* sl = static_cast<UdpSocketPosix*>(s); local
299 if(sl->GetFd() == INVALID_SOCKET || !(sl->GetFd() < FD_SETSIZE))
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.cpp 56 const ScriptList *sl = (const ScriptList *)kinfo->usr; local
61 for (size_t ct = 0; ct < sl->count; ct++) {
63 func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct];
64 mkinfo->usr = sl->usrPtrs[ct];
66 if (sl->ins[ct]) {
69 mkinfo->inPtr[0] = (const uint8_t *)sl->ins[ct]->mHal.drvState.lod[0].mallocPtr;
71 mkinfo->inStride[0] = sl->ins[ct]->mHal.state.elementSizeBytes;
73 if (sl->inExts[ct]) {
76 sl->ins[ct]->mHal.drvState.lod[0].stride * kinfo->current.y);
78 } else if (sl->ins[ct]->mHal.drvState.lod[0].dimY > kinfo->lid)
237 ScriptList sl; local
    [all...]
  /frameworks/wilhelm/tests/examples/
slesTestBassBoostPath.cpp 50 void TestBassBoostPathFromFD(SLObjectItf sl, const char* path, int16_t boostStrength, bool alwaysOn)
79 /* Get the SL Engine Interface which is implicit */
80 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
252 SLObjectItf sl; local
280 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
283 /* Realizing the SL Engine in synchronous mode. */
284 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
288 TestBassBoostPathFromFD(sl, argv[1], (int16_t)atoi(argv[2]), alwaysOn)
    [all...]
slesTestEqFdPath.cpp 50 void TestEQPathFromFD( SLObjectItf sl, const char* path
84 /* Get the SL Engine Interface which is implicit */
85 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
281 SLObjectItf sl; local
315 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
318 /* Realizing the SL Engine in synchronous mode. */
319 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
325 TestEQPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2])
    [all...]
slesTestEqOutputPath.cpp 50 void TestEQPathFromFD( SLObjectItf sl, const char* path
86 /* Get the SL Engine Interface which is implicit */
87 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
285 SLObjectItf sl; local
316 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
319 /* Realizing the SL Engine in synchronous mode. */
320 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
326 TestEQPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2])
    [all...]
slesTestPlayFdPath.cpp 71 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size)
95 /* Get the SL Engine Interface which is implicit */
96 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
225 SLObjectItf sl; local
243 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
246 /* Realizing the SL Engine in synchronous mode. */
247 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
252 TestPlayPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2])
    [all...]
slesTestSawtoothBufferQueue.cpp 63 fprintf(stdout, "%u SL failure, exiting\n", res);
67 //fprintf(stdout, "%d SL success, proceeding...\n", res);
105 void TestPlaySawtoothBufferQueue( SLObjectItf sl )
134 /* Get the SL Engine Interface which is implicit */
135 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
275 SLObjectItf sl; local
281 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
283 /* Realizing the SL Engine in synchronous mode. */
284 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE); CheckErr(res)
    [all...]
slesTestVirtualizerPath.cpp 50 void TestVirtualizerPathFromFD( SLObjectItf sl, const char* path, int16_t virtStrength,
80 /* Get the SL Engine Interface which is implicit */
81 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
254 SLObjectItf sl; local
282 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
285 /* Realizing the SL Engine in synchronous mode. */
286 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
290 TestVirtualizerPathFromFD(sl, argv[1], (int16_t)atoi(argv[2]), alwaysOn)
    [all...]
  /frameworks/wilhelm/tests/
mimeUri_test.cpp 66 fprintf(stderr, "%u SL failure, exiting\n", res);
99 void TestPlayUri( SLObjectItf sl, const char* path)
122 /* Get the SL Engine Interface which is implicit */
123 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
267 SLObjectItf sl; member in class:MimeUri
275 res = slCreateEngine(&sl, 1, EngineOption, 0, NULL, NULL);
278 /* Realizing the SL Engine in synchronous mode. */
279 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rdma/
ib_user_mad.h 63 * @sl - Service level received with/to be sent with
81 __u8 sl; member in struct:ib_user_mad_hdr_old
106 * @sl - Service level received with/to be sent with
125 __u8 sl; member in struct:ib_user_mad_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rdma/
ib_user_mad.h 63 * @sl - Service level received with/to be sent with
81 __u8 sl; member in struct:ib_user_mad_hdr_old
106 * @sl - Service level received with/to be sent with
125 __u8 sl; member in struct:ib_user_mad_hdr
ib_user_sa.h 67 __u8 sl; member in struct:ib_user_path_rec
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 239 int sl = s.l; local
241 int maskLoBits = (sl!=0) ? ((s.flags & CLEAR_LO)?1:0) : 0;
242 int sbits = sh - sl;
277 sl = offset;
285 const uint32_t mask = ((1<<sbits)-1) << sl;
301 sl += 32-sh;
328 if (sl) {
329 MOV(AL, 0, ireg, reg_imm(s.reg, LSR, sl));
330 sh -= sl;
331 sl = 0
    [all...]

Completed in 853 milliseconds

12 3 4 5 6 7 8 91011