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

1 2 3 4 5 6 7 8 91011>>

  /device/google/cuttlefish_common/guest/hals/sensors/
sensors.cpp 82 namespace sc = sensors_constants;
85 uint32_t flags = sc::kAccelerometerReportingMode |
86 (sc::kAccelerometerIsWakeup ? SENSOR_FLAG_WAKE_UP : 0);
88 return SensorInfo(sc::kAccelerometerName, sc::kVendor, sc::kVersion,
89 sc::kAccelerometerHandle, SENSOR_TYPE_ACCELEROMETER,
90 sc::kAccelerometerMaxRange, sc::kAccelerometerResolution,
91 sc::kAccelerometerPower, sc::kAccelerometerMinDelay
    [all...]
  /external/syslinux/gpxe/src/drivers/net/ath5k/
ath5k_rfkill.c 42 static inline void ath5k_rfkill_disable(struct ath5k_softc *sc)
45 sc->rf_kill.gpio, sc->rf_kill.polarity);
46 ath5k_hw_set_gpio_output(sc->ah, sc->rf_kill.gpio);
47 ath5k_hw_set_gpio(sc->ah, sc->rf_kill.gpio, !sc->rf_kill.polarity);
51 static inline void ath5k_rfkill_enable(struct ath5k_softc *sc)
54 sc->rf_kill.gpio, sc->rf_kill.polarity)
82 struct ath5k_softc *sc = ah->ah_sc; local
99 struct ath5k_softc *sc = ah->ah_sc; local
    [all...]
ath5k.c 177 static int ath5k_reset(struct ath5k_softc *sc, struct net80211_channel *chan);
178 static int ath5k_reset_wake(struct ath5k_softc *sc);
206 static int ath5k_chan_set(struct ath5k_softc *sc,
208 static void ath5k_setcurmode(struct ath5k_softc *sc,
210 static void ath5k_mode_setup(struct ath5k_softc *sc);
213 static int ath5k_desc_alloc(struct ath5k_softc *sc);
214 static void ath5k_desc_free(struct ath5k_softc *sc);
216 static int ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf);
217 static int ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf);
219 static inline void ath5k_txbuf_free(struct ath5k_softc *sc,
291 struct ath5k_softc *sc; local
448 struct ath5k_softc *sc = dev->priv; local
465 struct ath5k_softc *sc = dev->priv; local
536 struct ath5k_softc *sc = dev->priv; local
629 struct ath5k_softc *sc = dev->priv; local
1325 struct ath5k_softc *sc = dev->priv; local
1420 struct ath5k_softc *sc = dev->priv; local
1505 struct ath5k_softc *sc = dev->priv; local
1589 struct ath5k_softc *sc = dev->priv; local
1604 struct ath5k_softc *sc = dev->priv; local
1615 struct ath5k_softc *sc = dev->priv; local
    [all...]
  /external/clang/test/CodeGenCXX/
windows-on-arm-stack-probe-size.cpp 9 static C sc; variable
10 void f(const C &ci) { sc = ci; }
  /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((signed char)rint == sc);
promotion.c 9 static int promotion(signed char sc, signed short ss,
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
23 signed char sc; local
33 values[0] = &sc;
45 for (sc = (signed char) -127;
46 sc <= (signed char) 120; sc += 1)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
  /external/python/cpython2/Modules/_ctypes/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] = &sc;
29 for (sc = (signed char) -127;
30 sc < (signed char) 127; sc++)
33 CHECK((signed char)rint == sc);
promotion.c 9 static int promotion(signed char sc, signed short ss,
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
23 signed char sc; local
33 values[0] = &sc;
45 for (sc = (signed char) -127;
46 sc <= (signed char) 120; sc += 1)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
  /external/python/cpython3/Modules/_ctypes/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] = &sc;
29 for (sc = (signed char) -127;
30 sc < (signed char) 127; sc++)
33 CHECK((signed char)rint == sc);
promotion.c 9 static int promotion(signed char sc, signed short ss,
12 int r = (int) sc + (int) ss + (int) uc + (int) us;
23 signed char sc; local
33 values[0] = &sc;
45 for (sc = (signed char) -127;
46 sc <= (signed char) 120; sc += 1)
54 CHECK((int)rint == (signed char) sc + (signed short) ss +
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
24k-triple-stores-2-llsc.s 1 # Check for range (sc)
4 sc $2,32($sp)
5 sc $3,8($sp)
6 sc $4,-8($sp)
7 sc $5,0($sp)
8 sc $6,32($sp)
  /external/syslinux/core/lwip/src/netif/ppp/
ppp_oe.c 146 struct pppoe_softc *sc; local
148 sc = (struct pppoe_softc *)memp_malloc(MEMP_PPPOE_IF);
149 if (sc == NULL) {
153 memset(sc, 0, sizeof(struct pppoe_softc));
156 MEMCPY(&sc->sc_dest, ethbroadcast.addr, sizeof(sc->sc_dest));
158 sc->sc_pd = pd;
159 sc->sc_linkStatusCB = linkStatusCB;
160 sc->sc_ethif = ethif;
163 sc->next = pppoe_softc_list
174 struct pppoe_softc *sc, *prev = NULL; local
217 struct pppoe_softc *sc; local
241 struct pppoe_softc *sc, *t; local
289 struct pppoe_softc *sc; local
564 struct pppoe_softc *sc; local
737 struct pppoe_softc *sc = (struct pppoe_softc*)arg; local
    [all...]
  /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)
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)
strstr.c 42 char c, sc; local
49 if ((sc = *s++) == 0)
51 } while (sc != c);
  /art/benchmark/scoped-primitive-array/
scoped_primitive_array.cc 24 ScopedByteArrayRO sc(env, arr);
25 ret += sc[0] + sc[sc.size() - 1];
34 ScopedShortArrayRO sc(env, arr);
35 ret += sc[0] + sc[sc.size() - 1];
44 ScopedIntArrayRO sc(env, arr);
45 ret += sc[0] + sc[sc.size() - 1]
    [all...]
  /external/fio/oslib/
strsep.c 7 int c, sc; local
18 sc = *spanp++;
19 if (sc == c) {
27 } while (sc != 0);
  /external/strace/linux/powerpc/
arch_sigreturn.c 20 sigreturn_context sc; local
22 if (umove(tcp, addr, &sc) < 0) {
26 sc.oldmask,
27 sc._unused[3]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
stress.c 184 for (sc = 0; sc < NSCENAR; sc++)
185 ids[sc] = sc;
212 for (sc = 0; sc < NSCENAR; sc++) {
214 status[sc] =
215 pthread_create(&creation[sc], &scenarii[sc].ta
    [all...]
  /external/clang/test/Sema/
zvector.c 5 vector signed char sc, sc2; variable
46 sc = sc2;
63 sc = uc2; // expected-error {{incompatible type}}
64 sc = bc2; // expected-error {{incompatible type}}
70 sc = sc_scalar; // expected-error {{incompatible type}}
71 sc = uc_scalar; // expected-error {{incompatible type}}
77 sc = ss2; // expected-error {{incompatible type}}
78 sc = si2; // expected-error {{incompatible type}}
79 sc = sl2; // expected-error {{incompatible type}}
80 sc = fd2; // expected-error {{incompatible type}
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionContextTest.java 25 SSLSessionContext sc = context local
27 sc.setSessionCacheSize(10);
28 assertEquals("10 wasn't returned", 10, sc.getSessionCacheSize());
29 sc.setSessionCacheSize(5);
30 assertEquals("5 wasn't returned", 5, sc.getSessionCacheSize());
33 sc.setSessionCacheSize(-1);
49 SSLSessionContext sc = context local
51 sc.setSessionTimeout(100);
52 assertEquals("100 wasn't returned", 100, sc.getSessionTimeout());
53 sc.setSessionTimeout(5000)
72 SSLSessionContext sc = context local
90 SSLSessionContext sc = context local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SocketChannelTest.java 52 SocketChannel sc = SocketChannel.open(ss.getLocalSocketAddress())) {
56 sc.read(readOnly);
61 sc.read(new ByteBuffer[] { readOnly });
66 sc.read(new ByteBuffer[] { readOnly }, 0, 1);
75 SocketChannel sc = SocketChannel.open(); local
76 sc.configureBlocking(false);
79 SelectionKey selectionKey = sc.register(selector, SelectionKey.OP_CONNECT);
87 sc.connect(new InetSocketAddress(InetAddress.getByAddress(new byte[] {
94 sc.finishConnect();
104 SocketChannel sc = SocketChannel.open(ss.getLocalSocketAddress()) local
125 SocketChannel sc = SocketChannel.open(ss.getLocalSocketAddress()); local
144 SocketChannel sc = SocketChannel.open(); local
167 SocketChannel sc = SocketChannel.open(); local
183 SocketChannel sc = SocketChannel.open(); local
211 SocketChannel sc = SocketChannel.open(); local
238 SocketChannel sc = SocketChannel.open(); local
257 SocketChannel sc = SocketChannel.open(); local
292 SocketChannel sc = SocketChannel.open(); local
310 SocketChannel sc = SocketChannel.open(); local
    [all...]
  /external/strace/linux/ia64/
rt_sigframe.h 39 struct sigcontext sc; member in struct:__anon35294
43 offsetof(struct_rt_sigframe, sc.sc_mask)
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
ChannelIO.java 58 protected SocketChannel sc; field in class:ChannelIO
68 protected ChannelIO(SocketChannel sc, boolean blocking)
70 this.sc = sc;
71 sc.configureBlocking(blocking);
74 static ChannelIO getInstance(SocketChannel sc, boolean blocking)
76 ChannelIO cio = new ChannelIO(sc, blocking);
83 return sc;
134 return sc.read(requestBB);
148 return sc.write(src)
    [all...]

Completed in 872 milliseconds

1 2 3 4 5 6 7 8 91011>>