/external/clang/test/CodeGenCXX/ |
debug-info-friend.cpp | 10 SomeClass sc; variable
|
/bionic/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 | 51 int c, sc; local 60 if ((sc = *spanp++) == c) { 68 } 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/ |
wcsstr.c | 49 wchar_t c, sc; local 56 if ((sc = *s++) == L'\0') 58 } while (sc != c);
|
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');
|
/bionic/libc/upstream-netbsd/libc/string/ |
strcasestr.c | 51 char c, sc; local 62 if ((sc = *s++) == 0) 64 } while ((char)tolower((unsigned char)sc) != c);
|
/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/libffi/testsuite/libffi.call/ |
return_sc.c | 10 static signed char return_sc(signed char sc) 12 return sc; 20 signed char sc; local 23 values[0] = ≻ 29 for (sc = (signed char) -127; 30 sc < (signed char) 127; sc++) 33 CHECK(rint == (ffi_arg) sc);
|
negint.c | 27 signed char sc; local 34 values[2] = ≻ 42 sc = -1; 44 checking (si, ss, sc); 48 printf ("%d vs %d\n", (int)rint, checking (si, ss, sc));
|
/external/openssh/openbsd-compat/ |
strsep.c | 57 int c, sc; local 66 if ((sc = *spanp++) == c) { 74 } while (sc != 0);
|
/external/tcpdump/missing/ |
strsep.c | 63 register int c, sc; local 72 if ((sc = *spanp++) == c) { 80 } while (sc != 0);
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
SocketChannelTest.java | 46 SocketChannel sc = SocketChannel.open(ss.getLocalSocketAddress()); local 48 sc.read(readOnly); 53 sc.read(new ByteBuffer[] { readOnly }); 58 sc.read(new ByteBuffer[] { readOnly }, 0, 1); 67 SocketChannel sc = SocketChannel.open(); local 68 sc.configureBlocking(false); 71 SelectionKey selectionKey = sc.register(selector, SelectionKey.OP_CONNECT); 74 sc.connect(new InetSocketAddress(InetAddress.getByAddress(new byte[] { 0, 0, 0, 0 }), 0)); 80 sc.finishConnect();
|
/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/libffi/testsuite/libffi.special/ |
unwindtest_ffi_call.cc | 25 signed char sc; local 32 values[2] = ≻ 40 sc = -1;
|
/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;
|
/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));
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
SecureCacheResponseTest.java | 35 SecureCacheResponse sc = new MockCacheResponse(); local 37 assertNull(sc.getCipherSuite());
|