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

1 2 3 4 5 6 7 8 91011>>

  /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/elfutils/0.153/src/
debugpred.h 41 const unsigned long int *sl = &__start_predict_line; local
46 printf ("%s:%lu: wrong=%lu, correct=%lu%s\n", *sf, *sl, s[0], s[1],
48 ++sl;
  /external/pdfium/core/src/fxge/agg/agg23/
agg_render_scanlines.h 22 void render_scanlines(Rasterizer& ras, Scanline& sl, Renderer& ren, bool no_smooth)
25 sl.reset(ras.min_x(), ras.max_x());
27 while(ras.sweep_scanline(sl, no_smooth)) {
28 ren.render(sl);
35 Scanline& sl,
46 render_scanlines(ras, sl, r);
agg_renderer_scanline.h 42 template<class Scanline> void render(const Scanline& sl)
44 int y = sl.y();
50 unsigned num_spans = sl.num_spans();
51 typename Scanline::const_iterator span = sl.begin();
  /system/vold/
NetlinkManager.h 40 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
  /external/valgrind/main/drd/tests/
boost_thread.cpp 18 boost::mutex::scoped_lock sl(s_m);
20 s_cva.wait(sl);
26 boost::mutex::scoped_lock sl(s_m);
28 s_cva.wait(sl);
30 sl.unlock();
  /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/nist-sip/java/gov/nist/javax/sip/header/
StatusLine.java 71 StatusLine sl = (StatusLine) matchObj;
73 if (sl.matchExpression != null)
74 return sl.matchExpression.match(this.encode());
76 if (sl.sipVersion != null && !sl.sipVersion.equals(sipVersion))
78 if (sl.statusCode != 0) {
80 int hiscode = sl.statusCode;
81 String codeString = Integer.toString(sl.statusCode);
86 if (statusCode != sl.statusCode)
90 if (sl.reasonPhrase == null || reasonPhrase == sl.reasonPhrase
    [all...]
  /frameworks/wilhelm/tests/examples/
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...]
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...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
ScalingList.java 60 ScalingList sl = new ScalingList(); local
61 sl.scalingList = new int[sizeOfScalingList];
68 sl.useDefaultScalingMatrixFlag = (j == 0 && nextScale == 0);
70 sl.scalingList[j] = nextScale == 0 ? lastScale : nextScale;
71 lastScale = sl.scalingList[j];
73 return sl;
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.cpp 56 const ScriptList *sl = (const ScriptList *)p->usr; local
60 for(size_t ct=0; ct < sl->count; ct++) {
62 func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct];
63 mp->usr = sl->usrPtrs[ct];
73 if (sl->ins[ct]) {
74 mp->ptrIn = (const uint8_t *)sl->ins[ct]->mHal.drvState.lod[0].mallocPtr;
75 istep = sl->ins[ct]->mHal.state.elementSizeBytes;
77 if (sl->inExts[ct]) {
78 mp->in = mp->ptrIn + sl->ins[ct]->mHal.drvState.lod[0].stride * p->y;
80 if (sl->ins[ct]->mHal.drvState.lod[0].dimY > p->lid)
206 ScriptList sl; local
    [all...]
  /system/netd/server/
NetlinkManager.h 45 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
  /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...]
  /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);
  /ndk/tests/build/ssax-instructions/jni/
test.S 26 ldrd sl, [r0], r3
32 sadd16 r3, r6, sl
33 ssub16 lr, r6, sl
37 sasx sl, r1, lr
50 strd sl, [r2], r3
  /frameworks/wilhelm/tests/mimeUri/
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...]
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...]
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...]
  /frameworks/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...]

Completed in 490 milliseconds

1 2 3 4 5 6 7 8 91011>>