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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-netbsd/lib/libc/string/
strcasestr.c 51 char c, sc; local
62 if ((sc = *s++) == 0)
64 } while ((char)tolower((unsigned char)sc) != c);
  /bionic/libc/upstream-openbsd/lib/libc/string/
strpbrk.c 40 int c, sc; local
43 for (scanp = s2; (sc = *scanp++) != 0;)
44 if (sc == c)
strstr.c 42 char c, sc; local
49 if ((sc = *s++) == 0)
51 } while (sc != c);
strcspn.c 43 char c, sc; local
53 if ((sc = *spanp++) == c)
55 } while (sc != 0);
strspn.c 40 char c, sc; local
47 for (spanp = s2; (sc = *spanp++) != 0;)
48 if (sc == c)
strsep.c 50 int c, sc; local
59 if ((sc = *spanp++) == c) {
67 } while (sc != 0);
strtok.c 44 int c, sc; local
56 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != 0);
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcstok.c 46 wchar_t c, sc; local
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != L'\0');
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptCThunker.java 121 android.support.v8.renderscript.Script.LaunchOptions sc) {
124 if (sc != null) {
126 if (sc.getXEnd() > 0) lo.setX(sc.getXStart(), sc.getXEnd());
127 if (sc.getYEnd() > 0) lo.setY(sc.getYStart(), sc.getYEnd());
128 if (sc.getZEnd() > 0) lo.setZ(sc.getZStart(), sc.getZEnd())
    [all...]
  /external/fio/lib/
strsep.c 7 int c, sc; local
18 sc = *spanp++;
19 if (sc == c) {
27 } while (sc != 0);
  /external/tcpdump/missing/
strsep.c 63 register int c, sc; local
72 if ((sc = *spanp++) == c) {
80 } while (sc != 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
57 const float sc = (2 * in_st[0] - 1) * scale; local
64 rz = -sc;
69 rz = sc;
72 rx = sc;
77 rx = sc;
82 rx = sc;
87 rx = -sc;
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
reverse.pass.cpp 40 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
41 std::reverse(Iter(ic), Iter(ic+sc));
  /external/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search_n.pass.cpp 60 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
61 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic));
62 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic));
63 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic));
64 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0) == Iter(ic));
65 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0) == Iter(ic+sc));
  /external/libcxx/test/algorithms/alg.sorting/alg.set.operations/includes/
includes.pass.cpp 32 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
includes_comp.pass.cpp 33 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
  /external/libunwind/src/x86_64/
Gos-linux.c 142 struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr; local
145 (unsigned long long) c->dwarf.ip, sc);
149 :: "r"(sc), "i"(SYS_rt_sigreturn)
  /external/lldb/source/Target/
StackID.cpp 30 SymbolContext sc; local
32 m_symbol_scope->CalculateSymbolContext (&sc);
33 if (sc.block)
34 s->Printf(" (Block {0x%8.8" PRIx64 "})", sc.block->GetID());
35 else if (sc.symbol)
36 s->Printf(" (Symbol{0x%8.8x})", sc.symbol->GetID());
  /external/mesa3d/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
57 const float sc = (2 * in_st[0] - 1) * scale; local
64 rz = -sc;
69 rz = sc;
72 rx = sc;
77 rx = sc;
82 rx = sc;
87 rx = -sc;
  /frameworks/native/opengl/tests/lib/
WindowSurface.cpp 57 sp<SurfaceControl> sc = surfaceComposerClient->createSurface( local
60 if (sc == NULL || !sc->isValid()) {
66 err = sc->setLayer(0x7FFFFFFF); // always on top
72 err = sc->show();
79 mSurfaceControl = sc;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
reverse.pass.cpp 40 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
41 std::reverse(Iter(ic), Iter(ic+sc));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search_n.pass.cpp 60 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
61 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic));
62 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic));
63 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic));
64 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0) == Iter(ic));
65 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0) == Iter(ic+sc));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/includes/
includes.pass.cpp 32 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
includes_comp.pass.cpp 33 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
OutputController.java 28 ServoController sc = new ServoController(mHostActivity, servoIndex); local
29 sc.attachToView((ViewGroup) findViewById(viewId));

Completed in 904 milliseconds

1 2 3 4 5 6 7 8 91011>>