/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');
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
uspoof.h | 299 uspoof_close(USpoofChecker *sc); 324 * @param sc The source USpoofChecker 330 uspoof_clone(const USpoofChecker *sc, UErrorCode *status); 337 * @param sc The USpoofChecker 346 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status); 351 * @param sc The USpoofChecker 360 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status); 390 * @param sc The USpoofChecker 405 uspoof_setAllowedLocales(USpoofChecker *sc, const char *localesList, UErrorCode *status); 420 * @param sc The USpoofChecker [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
common.cc | 115 int sc = 1; // Next size class to assign local 137 if (sc > 1 && my_pages == class_to_pages_[sc-1]) { 141 const size_t prev_objects = (class_to_pages_[sc-1] << kPageShift) 142 / class_to_size_[sc-1]; 145 class_to_size_[sc-1] = size; 151 class_to_pages_[sc] = my_pages; 152 class_to_size_[sc] = size; 153 sc++; 155 if (sc != kNumClasses) 172 const int sc = SizeClass(size); local [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
common.cc | 111 int sc = 1; // Next size class to assign local 133 if (sc > 1 && my_pages == class_to_pages_[sc-1]) { 137 const size_t prev_objects = (class_to_pages_[sc-1] << kPageShift) 138 / class_to_size_[sc-1]; 141 class_to_size_[sc-1] = size; 147 class_to_pages_[sc] = my_pages; 148 class_to_size_[sc] = size; 149 sc++; 151 if (sc != kNumClasses) 168 const int sc = SizeClass(size); local [all...] |
/external/libffi/testsuite/libffi.call/ |
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));
|
/frameworks/native/services/surfaceflinger/tests/ |
Transaction_test.cpp | 32 static void fillSurfaceRGBA8(const sp<SurfaceControl>& sc, 35 sp<Surface> s = sc->getSurface(); 55 static void captureScreen(sp<ScreenCapture>* sc) { 65 *sc = new ScreenCapture(w, h, heap); 174 sp<ScreenCapture> sc; local 177 ScreenCapture::captureScreen(&sc); 178 sc->checkPixel( 0, 12, 63, 63, 195); 179 sc->checkPixel( 75, 75, 195, 63, 63); 180 sc->checkPixel(145, 145, 63, 63, 195); 189 ScreenCapture::captureScreen(&sc); 208 sp<ScreenCapture> sc; local [all...] |
/external/clang/test/CodeGen/ |
complex-convert.c | 11 void foo(signed char sc, unsigned char uc, signed long long sll, 117 csc1 = sc; 147 cuc1 = sc; 177 csll1 = sc; 207 cull1 = sc; 237 csc1 = sc + csc; 255 cuc1 = sc + cuc; 273 csll1 = sc + csll; 287 cull1 = sc + cull; [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
spooftest.c | 50 * "sc" is the ready-to-go SpoofChecker for use in the tests. 54 USpoofChecker *sc; \ 55 sc = uspoof_open(&status); \ 62 uspoof_close(sc); \ 82 const UChar scMixed[] = {(UChar)0x73, (UChar)0x0441, 0}; /* "sc", with Cyrillic 'c' */ 85 const UChar scLatin[] = {(UChar)0x73, (UChar)0x63, 0}; /* "sc", plain ascii. */ 112 USpoofChecker *sc; local 114 sc = uspoof_open(&status); 121 uspoof_close(sc); 184 serializedSize = uspoof_serialize(sc, NULL, 0, &status) [all...] |
/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();
|
SelectorTest.java | 43 SocketChannel sc = SocketChannel.open(); local 44 sc.configureBlocking(false); 45 sc.connect(ssc.socket().getLocalSocketAddress()); 46 SelectionKey key = sc.register(selector, SelectionKey.OP_CONNECT); 49 sc.finishConnect(); 61 SocketChannel sc = SocketChannel.open(); local 62 sc.configureBlocking(false); 63 sc.connect(ss.getLocalSocketAddress()); 64 SelectionKey key = sc.register(selector, SelectionKey.OP_CONNECT); 67 sc.finishConnect() 152 SocketChannel sc = SocketChannel.open(); local [all...] |
/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);
|
/external/libffi/testsuite/libffi.special/ |
unwindtest_ffi_call.cc | 25 signed char sc; local 32 values[2] = ≻ 40 sc = -1;
|
/frameworks/rs/tests/cppbasic/ |
compute.cpp | 35 ScriptC_mono* sc = new ScriptC_mono(rs); local 46 sc->bind_failed(failed_alloc); 55 sc->forEach_root(ain, aout); 57 sc->invoke_foo(99, 3.1f); 58 sc->set_g_f(39.9f); 59 sc->set_g_i(-14); 60 sc->invoke_foo(99, 3.1f); 63 sc->invoke_bar(47, -3, 'c', -7, 14, -8); 84 sc->forEach_kern1(kern1_in, kern1_out); 85 sc->forEach_verify_kern1(kern1_out) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/ |
AbstractSelectableChannelTest.java | 112 SocketChannel sc = SocketChannel.open(); local 113 sc.configureBlocking(false); 114 SelectionKey acceptKey = sc.register(acceptSelector1, 118 assertSame(sc, acceptKey.channel()); 120 //test that sc.register invokes Selector.register() 121 acceptKey = sc.register(acceptSelector2, SelectionKey.OP_READ, null); 211 SocketChannel sc = SocketChannel.open(); local 212 sc.configureBlocking(false); 214 sc.register(null, SelectionKey.OP_READ, argObj); 235 SocketChannel sc = SocketChannel.open() local 257 SocketChannel sc = SocketChannel.open(); local [all...] |
/external/icu4c/i18n/unicode/ |
uspoof.h | 389 uspoof_close(USpoofChecker *sc); 414 * @param sc The source USpoofChecker 420 uspoof_clone(const USpoofChecker *sc, UErrorCode *status); 427 * @param sc The USpoofChecker 436 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status); 441 * @param sc The USpoofChecker 450 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status); 462 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel); 473 uspoof_getRestrictionLevel(const USpoofChecker *sc); 504 * @param sc The USpoofChecker [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
RenderScriptGL.java | 81 public SurfaceConfig(SurfaceConfig sc) { 82 mDepthMin = sc.mDepthMin; 83 mDepthPref = sc.mDepthPref; 84 mStencilMin = sc.mStencilMin; 85 mStencilPref = sc.mStencilPref; 86 mColorMin = sc.mColorMin; 87 mColorPref = sc.mColorPref; 88 mAlphaMin = sc.mAlphaMin; 89 mAlphaPref = sc.mAlphaPref; 90 mSamplesMin = sc.mSamplesMin [all...] |
/external/icu4c/i18n/ |
uspoof.cpp | 137 uspoof_clone(const USpoofChecker *sc, UErrorCode *status) { 138 const SpoofImpl *src = SpoofImpl::validateThis(sc, *status); 152 uspoof_close(USpoofChecker *sc) { 154 SpoofImpl *This = SpoofImpl::validateThis(sc, status); 160 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) { 161 SpoofImpl *This = SpoofImpl::validateThis(sc, *status); 178 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status) { 179 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status); 187 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel) { 189 SpoofImpl *This = SpoofImpl::validateThis(sc, status) [all...] |
/external/icu4c/test/cintltst/ |
spooftest.c | 50 * "sc" is the ready-to-go SpoofChecker for use in the tests. 54 USpoofChecker *sc; \ 55 sc = uspoof_open(&status); \ 62 uspoof_close(sc); \ 82 const UChar scMixed[] = {(UChar)0x73, (UChar)0x0441, 0}; /* "sc", with Cyrillic 'c' */ 85 const UChar scLatin[] = {(UChar)0x73, (UChar)0x63, 0}; /* "sc", plain ascii. */ 114 USpoofChecker *sc; local 116 sc = uspoof_open(&status); 123 uspoof_close(sc); 189 serializedSize = uspoof_serialize(sc, NULL, 0, &status) [all...] |
/frameworks/base/core/java/android/view/ |
VolumePanel.java | 413 StreamControl sc = new StreamControl(); local 414 sc.streamType = streamType; 415 sc.group = (ViewGroup) inflater.inflate(R.layout.volume_adjust_item, null); 416 sc.group.setTag(sc); 417 sc.icon = (ImageView) sc.group.findViewById(R.id.stream_icon); 418 sc.icon.setTag(sc); 419 sc.icon.setContentDescription(res.getString(streamRes.descRes)) 459 StreamControl sc = mStreamControls.get(streamType); local 514 StreamControl sc = (StreamControl) mSliderGroup.getChildAt(i).getTag(); local 626 StreamControl sc = mStreamControls.get(streamType); local 714 StreamControl sc = mStreamControls.get(streamType); local 923 StreamControl sc = mStreamControls.get(AudioManager.STREAM_MUSIC); local 1028 StreamControl sc = (StreamControl) tag; local 1042 StreamControl sc = (StreamControl) tag; local [all...] |
/external/chromium_org/content/public/browser/ |
media_device_id.cc | 13 std::string GetHMACForMediaDeviceID(const ResourceContext::SaltCallback& sc, 21 std::string salt = sc.Run(); 28 bool DoesMediaDeviceIDMatchHMAC(const ResourceContext::SaltCallback& sc, 35 GetHMACForMediaDeviceID(sc, security_origin, raw_unique_id);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
itspoof.h | 38 void checkSkeleton(const USpoofChecker *sc, uint32_t flags,
|
/external/valgrind/main/none/tests/x86-linux/ |
sigcontext.c | 27 static void handler2(int sig, struct sigcontext sc) 31 if (sc.eax != 0) 32 printf("FAILED: handler2 expected eax == 0, not %p\n", (void*)sc.eax); 34 sc.eax = VAL2;
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/ |
SimpleAppView.java | 42 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); local 43 sc.setDepth(16, 24); 44 sc.setSamples(1, 2, 1); 45 mRS = createRenderScriptGL(sc);
|
/frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-common/SRC/ |
DriverView.java.template | 40 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); 41 mRS = createRenderScriptGL(sc);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh44.cpp | 32 cc sc(ca(1), ca(1));
|