HomeSort by relevance Sort by last modified time
    Searched refs:sc (Results 176 - 200 of 996) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
search_n_pred.pass.cpp 140 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
141 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0, count_equal()) == Iter(ic));
142 assert(count_equal::count <= sc);
144 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0, count_equal()) == Iter(ic));
145 assert(count_equal::count <= sc);
147 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0, count_equal()) == Iter(ic));
148 assert(count_equal::count <= sc);
150 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0, count_equal()) == Iter(ic));
151 assert(count_equal::count <= sc);
153 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0, count_equal()) == Iter(ic+sc))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.nonmodifying/alg.search/
search_n_pred.pass.cpp 127 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
128 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0, count_equal()) == Iter(ic));
129 assert(count_equal::count <= sc);
131 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0, count_equal()) == Iter(ic));
132 assert(count_equal::count <= sc);
134 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0, count_equal()) == Iter(ic));
135 assert(count_equal::count <= sc);
137 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0, count_equal()) == Iter(ic));
138 assert(count_equal::count <= sc);
140 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0, count_equal()) == Iter(ic+sc))
    [all...]
  /external/libffi/testsuite/libffi.call/
va_1.c 36 signed char sc; local
52 sc = va_arg (ap, signed);
67 printf ("%u %u %u %u %u %u %u %u %u uc=%u sc=%d %u %d %u %d %lu %ld %f %f\n",
70 uc, sc,
100 signed char sc; local
164 sc = 10;
179 args[5] = &sc;
191 /* { dg-output "5 6 10 11 12 13 14 7 8 uc=9 sc=10 11 12 13 14 15 16 2.120000 3.130000" } */
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_dynamic.c 253 set_dynamic(i915, I915_DYNAMIC_SC_ENA_0, i915->rasterizer->sc[0]);
273 unsigned sc[3]; local
275 sc[0] = _3DSTATE_SCISSOR_RECT_0_CMD;
276 sc[1] = (y1 << 16) | (x1 & 0xffff);
277 sc[2] = (y2 << 16) | (x2 & 0xffff);
279 set_dynamic_array(i915, I915_DYNAMIC_SC_RECT_0, sc, 3);
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
va_1.c 36 signed char sc; local
52 sc = va_arg (ap, signed);
67 printf ("%u %u %u %u %u %u %u %u %u uc=%u sc=%d %u %d %u %d %lu %ld %f %f\n",
70 uc, sc,
100 signed char sc; local
164 sc = 10;
179 args[5] = &sc;
191 /* { dg-output "5 6 10 11 12 13 14 7 8 uc=9 sc=10 11 12 13 14 15 16 2.120000 3.130000" } */
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
va_1.c 36 signed char sc; local
52 sc = va_arg (ap, signed);
67 printf ("%u %u %u %u %u %u %u %u %u uc=%u sc=%d %u %d %u %d %lu %ld %f %f\n",
70 uc, sc,
100 signed char sc; local
164 sc = 10;
179 args[5] = &sc;
191 /* { dg-output "5 6 10 11 12 13 14 7 8 uc=9 sc=10 11 12 13 14 15 16 2.120000 3.130000" } */
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorStylesheetElement.java 87 StylesheetComposed sc = new StylesheetComposed(parent); local
89 parent.setImport(sc);
91 stylesheet = sc;
  /external/syslinux/core/lwip/src/include/netif/
ppp_oe.h 177 int pppoe_connect(struct pppoe_softc *sc);
178 void pppoe_disconnect(struct pppoe_softc *sc);
183 err_t pppoe_xmit(struct pppoe_softc *sc, struct pbuf *pb);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalReceiver.java 48 ServiceConnection sc = new ServiceConnection() { local
55 context.bindService(new Intent(context, LocalService.class), sc, 0);
56 context.unbindService(sc);
  /frameworks/rs/
rsScriptIntrinsic.cpp 65 const RsScriptCall* sc) {
68 aout, usr, usrBytes, sc);
73 Allocation *aout, const RsScriptCall *sc) {
  /frameworks/rs/tests/cpp_api/cppstrided/
compute.cpp 38 sp<ScriptC_multiply> sc = new ScriptC_multiply(rs); local
54 sc->forEach_multiply(ain, aout);
69 sc.clear();
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_foreach_bounds.java 55 Script.LaunchOptions sc = new Script.LaunchOptions(); local
56 sc.setX(xStart, xEnd).setY(yStart, yEnd);
57 s.forEach_root(A, sc);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_foreach_bounds.java 57 Script.LaunchOptions sc = new Script.LaunchOptions(); local
58 sc.setX(xStart, xEnd).setY(yStart, yEnd);
59 s.forEach_root(A, sc);
  /libcore/ojluni/src/main/java/sun/nio/ch/
ChannelInputStream.java 57 SelectableChannel sc = (SelectableChannel)ch; local
58 synchronized (sc.blockingLock()) {
59 boolean bm = sc.isBlocking();
64 // sc.configureBlocking(block);
68 // sc.configureBlocking(bm);
  /libcore/ojluni/src/test/java/net/Socket/
ShutdownInput.java 58 try (ServerSocketChannel sc = ServerSocketChannel.open().bind(null);
60 new InetSocketAddress(iaddr, sc.socket().getLocalPort()));
61 SocketChannel s2 = sc.accept() ) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
TestUScript.java 213 UnicodeSet rtl = new UnicodeSet("[[:bc=R:][:bc=AL:]-[:Cn:]-[:sc=Common:]]");
216 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]");
217 for(int sc = 0; sc < UScript.CODE_LIMIT; ++sc) {
218 String sn = UScript.getShortName(sc);
219 ScriptUsage usage = UScript.getUsage(sc);
220 String sample = UScript.getSampleString(sc);
222 scriptSet.applyIntPropertyValue(UProperty.SCRIPT, sc);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
TestUScript.java 210 UnicodeSet rtl = new UnicodeSet("[[:bc=R:][:bc=AL:]-[:Cn:]-[:sc=Common:]]");
213 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]");
214 for(int sc = 0; sc < UScript.CODE_LIMIT; ++sc) {
215 String sn = UScript.getShortName(sc);
216 ScriptUsage usage = UScript.getUsage(sc);
217 String sample = UScript.getSampleString(sc);
219 scriptSet.applyIntPropertyValue(UProperty.SCRIPT, sc);
    [all...]
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
reverse_copy.pass.cpp 57 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
58 int jc[sc] = {-1};
59 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
60 assert(base(r) == jc+sc);
  /external/libunwind/src/hppa/
Gresume.c 68 struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr; local
70 Debug (8, "resuming at ip=%x via sigreturn(%p)\n", c->dwarf.ip, sc);
71 my_rt_sigreturn (sc, (sc->sc_flags & PARISC_SC_FLAG_IN_SYSCALL) != 0);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/
6-2.c 107 ret = sem_post(&scenarii[sc].sem);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_trylock/
4-2.c 158 int sc; local
267 for (sc = 0; sc < NSCENAR; sc++) {
270 scenarii[sc].descr);
281 ret = pthread_mutexattr_settype(&ma, scenarii[sc].m_type);
286 output("[parent] Mutex type : %i\n", scenarii[sc].m_type);
291 if ((pshared > 0) && (scenarii[sc].m_pshared != 0)) {
310 if ((pshared > 0) && (scenarii[sc].fork != 0)) {
  /external/pdfium/third_party/lcms/src/
cmsps2.c 587 cmsPsSamplerCargo* sc = (cmsPsSamplerCargo*) Cargo; local
591 if (sc -> FixWhite) {
602 if (!_cmsEndPointsBySpace(sc ->ColorSpace, &White, &Black, &nOutputs))
616 if (In[0] != sc ->FirstComponent) {
618 if (sc ->FirstComponent != -1) {
620 _cmsIOPrintf(sc ->m, sc ->PostMin);
621 sc ->SecondComponent = -1;
622 _cmsIOPrintf(sc ->m, sc ->PostMaj)
672 cmsPsSamplerCargo sc; local
    [all...]
  /external/valgrind/exp-bbv/tests/ppc32-linux/
million.S 21 sc # and exit
  /frameworks/rs/driver/
rsdBcc.cpp 75 const RsScriptCall *sc) {
79 sc);
84 sc);
96 const RsScriptCall *sc) {
99 cs->invokeForEach(slot, ains, inLen, aout, usr, usrLen, sc);
130 const RsScriptCall *sc) {
132 cs->invokeReduce(slot, ains, inLen, aout, sc);
174 const android::renderscript::Script *sc,
176 RsdCpuReference::CpuScript *cs = (RsdCpuReference::CpuScript *)sc->mHal.drv;

Completed in 764 milliseconds

1 2 3 4 5 6 78 91011>>