/ndk/tests/device/test-stlport_static-exception/jni/ |
eh44.cpp | 32 cc sc(ca(1), ca(1));
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsic.cpp | 78 uint32_t usrLen, const RsScriptCall *sc) { 83 uint32_t usrLen, const RsScriptCall *sc) { 91 const RsScriptCall *sc) { 94 preLaunch(slot, ain, aout, usr, usrLen, sc); 96 forEachMtlsSetup(ain, aout, usr, usrLen, sc, &mtls); 104 mCtx->launchThreads(ain, aout, sc, &mtls); 107 postLaunch(slot, ain, aout, usr, usrLen, sc);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
SelectorTest.java | 116 SocketChannel sc = SocketChannel.open(); local 117 sc.configureBlocking(false); 118 SelectionKey key3 = sc.register(selector, SelectionKey.OP_READ); 151 SocketChannel sc = SocketChannel.open(); local 155 sc.connect(localAddress); 188 sc.close(); 346 SocketChannel sc = SocketChannel.open(); 347 sc.configureBlocking(false); 348 SelectionKey key2 = sc.register(selector, SelectionKey.OP_READ); 403 SocketChannel sc = SocketChannel.open() [all...] |
/external/iproute2/tc/ |
q_hfsc.c | 44 "Usage: ... hfsc [ [ rt SC ] [ ls SC ] | [ sc SC ] ] [ ul SC ]\n" 46 "SC := [ [ m1 BPS ] d SEC ] m2 BPS\n" 54 "SC := [ [ umax BYTE ] dmax SEC ] rate BPS\n" 61 " - at least one of 'rt', 'ls' or 'sc' must be specified\n" 62 " - 'ul' can only be specified with 'ls' or 'sc'\n" 173 } else if (matches(*argv, "sc") == 0) [all...] |
/sdk/eclipse/scripts/ |
build_server.sh | 121 for sc in */*/*/build_ide*.sh; do 122 if [[ -x $sc ]]; then 123 echo "RUNNING $sc from $PWD" 124 $sc "$DEST_DIR" "$QUALIFIER" "${preview}${BUILD_NUMBER:-$QUALIFIER}" 126 echo "WARNING: skipping non-exec $sc script"
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
bit_cnt.c | 48 Word16 bc11,sc; local 56 sc=0; 91 sc = sc + (t0>0) + (t1>0) + (t2>0) + (t3>0); 96 bitCount[3]=extract_h(bc3_4) + sc; 97 bitCount[4]=extract_l(bc3_4) + sc; 100 bitCount[7]=extract_h(bc7_8) + sc; 101 bitCount[8]=extract_l(bc7_8) + sc; 102 bitCount[9]=extract_h(bc9_10) + sc; 103 bitCount[10]=extract_l(bc9_10) + sc; 124 Word16 bc11,sc; local 199 Word16 bc11,sc; local 255 Word16 bc11,sc; local 304 Word16 bc11,sc; local 350 Word16 bc11,sc; local 391 Word16 bc11,ec,sc; local [all...] |
/external/valgrind/main/coregrind/m_sigframe/ |
sigframe-amd64-linux.c | 332 struct vki_sigcontext *sc = &uc->uc_mcontext; local 340 sc->fpstate = fpstate; 344 # define SC2(reg,REG) sc->reg = tst->arch.vex.guest_##REG 363 sc->eflags = LibVEX_GuestAMD64_get_rflags(&tst->arch.vex); 367 sc->trapno = trapno; 368 sc->err = err; 371 sc->cr2 = (UWord)si->_sifields._sigfault._addr; 567 struct vki_sigcontext *sc, 570 tst->arch.vex.guest_RAX = sc->rax; 571 tst->arch.vex.guest_RCX = sc->rcx [all...] |
sigframe-mips32-linux.c | 122 struct vki_sigcontext *sc = *sc1; local 125 (Addr)sc, sizeof(unsigned long long)*34 ); 126 sc->sc_regs[1] = tst->arch.vex.guest_r1; 127 sc->sc_regs[2] = tst->arch.vex.guest_r2; 128 sc->sc_regs[3] = tst->arch.vex.guest_r3; 129 sc->sc_regs[4] = tst->arch.vex.guest_r4; 130 sc->sc_regs[5] = tst->arch.vex.guest_r5; 131 sc->sc_regs[6] = tst->arch.vex.guest_r6; 132 sc->sc_regs[7] = tst->arch.vex.guest_r7; 133 sc->sc_regs[8] = tst->arch.vex.guest_r8 [all...] |
sigframe-x86-linux.c | 356 struct vki_sigcontext *sc = &uc->uc_mcontext; local 364 sc->fpstate = fpstate; 368 # define SC2(reg,REG) sc->reg = tst->arch.vex.guest_##REG 385 sc->eflags = LibVEX_GuestX86_get_eflags(&tst->arch.vex); 388 sc->trapno = trapno; 389 sc->err = err; 392 sc->cr2 = (UInt)si->_sifields._sigfault._addr; 651 struct vki_sigcontext *sc, 654 tst->arch.vex.guest_EAX = sc->eax; 655 tst->arch.vex.guest_ECX = sc->ecx [all...] |
/packages/apps/Dialer/src/com/android/dialer/ |
SpecialCharSequenceMgr.java | 192 SimContactQueryCookie sc = new SimContactQueryCookie(index - 1, handler, local 196 sc.contactNum = index - 1; 197 sc.setTextField(textField); 200 sc.progressDialog = new ProgressDialog(context); 201 sc.progressDialog.setTitle(R.string.simContacts_title); 202 sc.progressDialog.setMessage(context.getText(R.string.simContacts_emptyLoading)); 203 sc.progressDialog.setIndeterminate(true); 204 sc.progressDialog.setCancelable(true); 205 sc.progressDialog.setOnCancelListener(sc); 395 SimContactQueryCookie sc = (SimContactQueryCookie) cookie; local [all...] |
/external/clang/test/SemaCXX/ |
compare.cpp | 285 void test6(signed char sc) { 286 (void)(sc < 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}} 287 (void)(sc > 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}} 288 (void)(sc <= 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}} 289 (void)(sc >= 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}} 290 (void)(sc == 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}} 291 (void)(sc != 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}} 293 (void)(200 < sc); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}} 294 (void)(200 > sc); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}} 295 (void)(200 <= sc); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always (…) [all...] |
/external/ipsec-tools/src/racoon/ |
schedule.c | 158 sched_add(sc) 159 struct sched *sc; 164 if (sc->xtime < p->xtime) { 165 TAILQ_INSERT_BEFORE(p, sc, chain); 170 TAILQ_INSERT_TAIL(&sctree, sc, chain); 198 sched_kill(sc) 199 struct sched *sc; 201 sc->dead = 1; 211 struct sched *sc; local 213 TAILQ_FOREACH(sc, &sctree, chain) [all...] |
/external/aac/libAACenc/src/ |
bit_cnt.cpp | 115 INT bc1_2,bc3_4,bc5_6,bc7_8,bc9_10,bc11,sc; local 123 sc=0; 157 sc+=(t0>0)+(t1>0)+(t2>0)+(t3>0); 162 bitCount[3]=HI_LTAB(bc3_4)+sc; 163 bitCount[4]=LO_LTAB(bc3_4)+sc; 166 bitCount[7]=HI_LTAB(bc7_8)+sc; 167 bitCount[8]=LO_LTAB(bc7_8)+sc; 168 bitCount[9]=HI_LTAB(bc9_10)+sc; 169 bitCount[10]=LO_LTAB(bc9_10)+sc; 170 bitCount[11]=bc11+sc; 191 INT bc3_4,bc5_6,bc7_8,bc9_10,bc11,sc; local 262 INT bc5_6,bc7_8,bc9_10,bc11,sc; local 317 INT bc7_8,bc9_10,bc11,sc; local 367 INT bc9_10,bc11,sc; local 414 INT bc11,sc; local 455 INT bc11,ec,sc; local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
uspoof.cpp | 75 uspoof_clone(const USpoofChecker *sc, UErrorCode *status) { 76 const SpoofImpl *src = SpoofImpl::validateThis(sc, *status); 90 uspoof_close(USpoofChecker *sc) { 92 SpoofImpl *This = SpoofImpl::validateThis(sc, status); 98 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) { 99 SpoofImpl *This = SpoofImpl::validateThis(sc, *status); 116 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status) { 117 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status); 125 uspoof_setAllowedLocales(USpoofChecker *sc, const char *localesList, UErrorCode *status) { 126 SpoofImpl *This = SpoofImpl::validateThis(sc, *status) [all...] |
/frameworks/base/tests/RenderScriptTests/HelloWorld/src/com/example/android/rs/helloworld/ |
HelloWorldView.java | 40 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); local 41 mRS = createRenderScriptGL(sc);
|
/packages/wallpapers/Basic/src/com/android/wallpaper/fall/ |
FallView.java | 39 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); local 40 RenderScriptGL RS = createRenderScriptGL(sc);
|
/packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/ |
GalaxyView.java | 36 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); local 37 RenderScriptGL RS = createRenderScriptGL(sc);
|
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/ |
GrassView.java | 36 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); local 37 RenderScriptGL RS = createRenderScriptGL(sc);
|
/packages/wallpapers/NoiseField/src/com/android/noisefield/ |
NoiseFieldView.java | 23 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); local 24 mRS = createRenderScriptGL(sc);
|
/packages/wallpapers/PhaseBeam/src/com/android/phasebeam/ |
PhaseBeamView.java | 23 RenderScriptGL.SurfaceConfig sc = new RenderScriptGL.SurfaceConfig(); local 24 mRS = createRenderScriptGL(sc);
|
/external/icu4c/test/intltest/ |
itspoof.h | 48 void checkSkeleton(const USpoofChecker *sc, uint32_t flags,
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
GSMTestHandler.java | 40 private SimulatedCommands sc; field in class:GSMTestHandler 54 sc = new SimulatedCommands(); 55 mGSMPhone = new GSMPhone(mContext, sc, new TestPhoneNotifier(), true); 88 return sc;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/ |
reverse_copy.pass.cpp | 43 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local 44 int jc[sc] = {-1}; 45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc)); 46 assert(base(r) == jc+sc);
|
/cts/hostsidetests/monkey/src/com/android/cts/monkey/ |
SeedTest.java | 52 private String getNextLine(Scanner sc) { 53 while (sc.hasNextLine()) { 54 String line = sc.nextLine().trim();
|
/external/valgrind/main/coregrind/m_syswrap/ |
syscall-ppc32-linux.S | 96 sc /* set the mask */ 107 2: sc /* do the syscall */ 110 3: stw 3,OFFSET_ppc32_GPR3(30) /* gst->GPR3 = sc result */ 123 sc /* set the mask */
|