HomeSort by relevance Sort by last modified time
    Searched defs:sl (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/e2fsprogs/intl/
os2compat.c 59 size_t sl = strlen (root); local
60 _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1);
61 memcpy (_nlos2_libdir, root, sl);
62 memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1);
73 size_t sl = strlen (root); local
74 _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1);
75 memcpy (_nlos2_localealiaspath, root, sl);
76 memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1);
87 size_t sl = strlen (root); local
88 _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1)
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-invalid.cpp 8 template<class Scanline> bool sweep_scanline(Scanline& sl)
18 void render_scanlines_aa_solid(Rasterizer& ras, Scanline& sl, BaseRenderer& ren, const ColorT& color)
20 while(ras.sweep_scanline(sl))
30 void render_ctrl(Rasterizer& ras, Scanline& sl, Renderer& r, Ctrl& c)
33 render_scanlines_aa_solid(ras, sl, r, c.color(i));
46 agg::scanline_u8 sl; local
48 agg::render_ctrl(ras, sl, ren_base, m_polygons);
  /external/stlport/test/unit/
slist_test.cpp 127 slist<int> sl(array, array + 5);
130 slit = sl.erase(sl.begin());
134 slit = sl.erase(sl.begin(), slit);
137 sl.assign(array, array + 5);
139 slit = sl.erase_after(sl.begin());
142 slit = sl.begin(); ++slit; ++slit;
143 slit = sl.erase_after(sl.begin(), slit)
158 slist<int> sl; local
178 slist<int> sl; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
slist_test.cpp 127 slist<int> sl(array, array + 5);
130 slit = sl.erase(sl.begin());
134 slit = sl.erase(sl.begin(), slit);
137 sl.assign(array, array + 5);
139 slit = sl.erase_after(sl.begin());
142 slit = sl.begin(); ++slit; ++slit;
143 slit = sl.erase_after(sl.begin(), slit)
158 slist<int> sl; local
178 slist<int> sl; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
slist_test.cpp 127 slist<int> sl(array, array + 5);
130 slit = sl.erase(sl.begin());
134 slit = sl.erase(sl.begin(), slit);
137 sl.assign(array, array + 5);
139 slit = sl.erase_after(sl.begin());
142 slit = sl.begin(); ++slit; ++slit;
143 slit = sl.erase_after(sl.begin(), slit)
158 slist<int> sl; local
178 slist<int> sl; local
    [all...]
  /system/media/wilhelm/tests/examples/
xaVideoDecoderCapabilities.cpp 134 XAObjectItf sl; local
slesTestEffectCapabilities.cpp 71 SLObjectItf sl; local
93 result = slCreateEngine( &sl, 1, EngineOption, 1, iidArray, required);
96 /* Realizing the SL Engine in synchronous mode. */
97 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
104 /* Get the SL Engine interface which is implicit */
105 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
109 result = (*sl)->GetInterface(sl, SL_IID_ANDROIDEFFECTCAPABILITIES, (void*)&EffectLibItf)
157 SLObjectItf sl; local
    [all...]
slesTestPlayFdPath.cpp 50 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size)
74 /* Get the SL Engine Interface which is implicit */
75 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
194 SLObjectItf sl; local
212 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
215 /* Realizing the SL Engine in synchronous mode. */
216 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
221 TestPlayPathFromFD(sl, argv[1], (SLAint64)atoi(argv[2])
    [all...]
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
314 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
317 /* Realizing the SL Engine in synchronous mode. */
318 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
324 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...]
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 )
137 /* Get the SL Engine Interface which is implicit */
138 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
278 SLObjectItf sl; local
284 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
286 /* Realizing the SL Engine in synchronous mode. */
287 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...]
  /system/core/libpixelflinger/codeflinger/
load_store.cpp 250 int sl = s.l; local
252 int maskLoBits = (sl!=0) ? ((s.flags & CLEAR_LO)?1:0) : 0;
253 int sbits = sh - sl;
288 sl = offset;
296 const uint32_t mask = ((1<<sbits)-1) << sl;
312 sl += 32-sh;
339 if (sl) {
340 MOV(AL, 0, ireg, reg_imm(s.reg, LSR, sl));
341 sh -= sl;
342 sl = 0
    [all...]
  /system/media/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 48 void TestPlayUri( SLObjectItf sl, const char* path)
73 /* Get the SL Engine Interface which is implicit */
74 result = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
207 SLObjectItf sl; local
226 result = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
229 /* Realizing the SL Engine in synchronous mode. */
230 result = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
234 TestPlayUri(sl, argv[1])
    [all...]
slesTestGetPositionUri.cpp 127 void TestGetPositionUri( SLObjectItf sl, const char* path)
158 /* Get the SL Engine Interface which is implicit */
159 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
317 SLObjectItf sl; local
334 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
336 /* Realizing the SL Engine in synchronous mode. */
337 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
340 TestGetPositionUri(sl, argv[1])
    [all...]
slesTestLoopUri.cpp 122 void TestLoopUri( SLObjectItf sl, const char* path)
148 /* Get the SL Engine Interface which is implicit */
149 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
292 SLObjectItf sl; local
309 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
311 /* Realizing the SL Engine in synchronous mode. */
312 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
315 TestLoopUri(sl, argv[1])
    [all...]
slesTestPlayUri.cpp 125 void TestPlayUri( SLObjectItf sl, const char* path)
151 /* Get the SL Engine Interface which is implicit */
152 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
326 SLObjectItf sl; local
343 res = slCreateEngine( &sl, 1, EngineOption, 0, NULL, NULL);
345 /* Realizing the SL Engine in synchronous mode. */
346 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE);
349 TestPlayUri(sl, argv[1])
    [all...]
  /external/hyphenation/
csutil.c 43 int sl = strlen(s); local
44 d = (char *) malloc(((sl+1) * sizeof(char)));
45 if (d) memcpy(d,s,((sl+1)*sizeof(char)));
    [all...]
  /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
  /system/media/wilhelm/tests/
mimeUri_test.cpp 66 fprintf(stderr, "%u SL failure, exiting\n", res);
99 void TestPlayUri( SLObjectItf sl, const char* path)
125 /* Get the SL Engine Interface which is implicit */
126 res = (*sl)->GetInterface(sl, SL_IID_ENGINE, (void*)&EngineItf);
270 SLObjectItf sl; member in class:MimeUri
278 res = slCreateEngine(&sl, 1, EngineOption, 0, NULL, NULL);
281 /* Realizing the SL Engine in synchronous mode. */
282 res = (*sl)->Realize(sl, SL_BOOLEAN_FALSE)
    [all...]
  /external/clang/test/Sema/
compare.c 324 long sl; local
327 b = (si == (ui = sl)); // expected-warning {{comparison of integers of different signs: 'int' and 'unsigned int'}}
328 b = (si == (ui = sl&15));
  /external/kernel-headers/original/asm-arm/
thread_info.h 40 __u32 sl; member in struct:cpu_context_save

Completed in 1688 milliseconds

1 2 3