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

1 2 3 4 5 6 7 891011>>

  /frameworks/rs/tests/cpp_api/latency/
latency.cpp 73 sp<ScriptC_latency> sc = new ScriptC_latency(rs); local
80 sc->forEach_root(ain, aout);
95 sc->forEach_root(ain, aout);
106 sc.clear();
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
datalogger_outputs.c 32 struct inv_sensor_cal_t sc; member in struct:datalogger_output_s
51 struct inv_single_sensor_t *pg = &dl_out.sc.gyro;
67 struct inv_single_sensor_t *pg = &dl_out.sc.gyro;
109 struct inv_single_sensor_t *pa = &dl_out.sc.accel;
143 struct inv_single_sensor_t *pc = &dl_out.sc.compass;
209 struct inv_single_sensor_t *pt = &dl_out.sc.temp;
228 struct inv_single_sensor_t *pt = &dl_out.sc.temp;
272 struct inv_single_sensor_t *pa = &dl_out.sc.accel;
333 memcpy(&dl_out.sc, sensor_cal, sizeof(struct inv_sensor_cal_t));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SelectionKeyTest.java 36 SocketChannel sc; field in class:SelectionKeyTest
45 sc = SocketChannel.open();
46 sc.configureBlocking(false);
47 selectionKey = sc.register(selector, SelectionKey.OP_CONNECT);
127 assertSame(sc, selectionKey.channel());
130 assertSame(sc, selectionKey.channel());
155 selectionKey.interestOps(~sc.validOps());
188 sc.close();
298 sc.connect(new InetSocketAddress(LOCAL_ADDR, ss.getLocalPort()));
  /libcore/luni/src/test/java/libcore/java/nio/channels/
ServerSocketChannelTest.java 172 ServerSocketChannel sc = ServerSocketChannel.open(); local
173 sc.setOption(StandardSocketOptions.SO_REUSEADDR, true);
176 assertTrue(sc.getOption(StandardSocketOptions.SO_REUSEADDR));
178 sc.setOption(StandardSocketOptions.SO_REUSEADDR, false);
181 assertEquals(false, (boolean)sc.getOption(StandardSocketOptions.SO_REUSEADDR));
183 sc.setOption(StandardSocketOptions.SO_RCVBUF, 1100);
184 assertTrue(1100 <= sc.getOption(StandardSocketOptions.SO_RCVBUF));
186 sc.close();
188 sc.setOption(StandardSocketOptions.SO_RCVBUF, 2000);
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileDispatcher.java 59 abstract boolean canTransferToDirectly(SelectableChannel sc);
PollArrayWrapper.java 74 void addEntry(SelChImpl sc) {
75 putDescriptor(totalChannels, IOUtil.fdVal(sc.getFD()));
  /packages/apps/Launcher3/src/com/android/launcher3/provider/
LauncherDbUtils.java 104 public static ArrayList<Long> getScreenIdsFromCursor(Cursor sc) {
106 return iterateCursor(sc,
107 sc.getColumnIndexOrThrow(WorkspaceScreens._ID),
110 sc.close();
  /toolchain/binutils/binutils-2.27/include/gdb/
callback.h 272 int (*read_mem) (host_callback * /*cb*/, struct cb_syscall * /*sc*/,
275 int (*write_mem) (host_callback * /*cb*/, struct cb_syscall * /*sc*/,
288 #define CB_SYSCALL_INIT(sc) \
290 memset ((sc), 0, sizeof (*(sc))); \
291 (sc)->magic = CB_SYSCALL_MAGIC; \
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AnimateDrawable.java 59 int sc = canvas.save(); local
68 canvas.restoreToCount(sc);
  /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/clang/test/Sema/
overloadable-complex.c 48 void test_promote_or_convert3(short _Complex sc) {
49 char *cp = promote_or_convert3(sc);
  /external/clang/test/SemaCXX/
complex-overload.cpp 48 void test_promote_or_convert3(short _Complex sc) {
49 char *cp1 = promote_or_convert3(sc);
  /external/f2fs-tools/tools/sg_write_buffer/include/
freebsd_nvme_ioctl.h 72 uint16_t sc : 8; /* status code */ member in struct:nvme_status
153 ((cpl)->status.sc != 0 || (cpl)->status.sct != 0)
  /external/libcxx/test/std/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));
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
search_n.pass.cpp 72 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
73 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic));
74 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic));
75 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic));
76 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0) == Iter(ic));
77 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0) == Iter(ic+sc));
80 (void)std::search_n(Iter(ic), Iter(ic+sc), UserDefinedIntegral<unsigned>(0), 0);
  /frameworks/base/rs/java/android/renderscript/
RSSurfaceView.java 136 public RenderScriptGL createRenderScriptGL(RenderScriptGL.SurfaceConfig sc) {
137 RenderScriptGL rs = new RenderScriptGL(this.getContext(), sc);
  /frameworks/compile/slang/tests/P_reduce_general_duplicate_array/
ScriptC_reduce_general_duplicate_array.java.expect 105 public resultArray4_int reduce_sumDec(Allocation ain1, Script.LaunchOptions sc) {
112 reduce(mExportReduceIdx_sumDec, new Allocation[]{ain1}, aout, sc);
138 public resultArray4_int reduce_sumInc(Allocation ain1, Script.LaunchOptions sc) {
145 reduce(mExportReduceIdx_sumInc, new Allocation[]{ain1}, aout, sc);
  /frameworks/compile/slang/tests/P_reduce_general_examples/
ScriptC_reduce_general_examples.java.expect 226 public result_int reduce_addint(Allocation ain1, Script.LaunchOptions sc) {
233 reduce(mExportReduceIdx_addint, new Allocation[]{ain1}, aout, sc);
259 public result_int reduce_mpyint(Allocation ain1, Script.LaunchOptions sc) {
266 reduce(mExportReduceIdx_mpyint, new Allocation[]{ain1}, aout, sc);
306 public result_float reduce_dp(Allocation ain1, Allocation ain2, Script.LaunchOptions sc) {
330 reduce(mExportReduceIdx_dp, new Allocation[]{ain1, ain2}, aout, sc);
356 public result_int2 reduce_findMinAndMax(Allocation ain1, Script.LaunchOptions sc) {
363 reduce(mExportReduceIdx_findMinAndMax, new Allocation[]{ain1}, aout, sc);
389 public result_int reduce_fz(Allocation ain1, Script.LaunchOptions sc) {
396 reduce(mExportReduceIdx_fz, new Allocation[]{ain1}, aout, sc);
    [all...]
  /frameworks/compile/slang/tests/P_reduce_general_examples_backward/
ScriptC_reduce_general_examples_backward.java.expect 226 public result_int reduce_addint(Allocation ain1, Script.LaunchOptions sc) {
233 reduce(mExportReduceIdx_addint, new Allocation[]{ain1}, aout, sc);
259 public result_int reduce_mpyint(Allocation ain1, Script.LaunchOptions sc) {
266 reduce(mExportReduceIdx_mpyint, new Allocation[]{ain1}, aout, sc);
306 public result_float reduce_dp(Allocation ain1, Allocation ain2, Script.LaunchOptions sc) {
330 reduce(mExportReduceIdx_dp, new Allocation[]{ain1, ain2}, aout, sc);
356 public result_int2 reduce_findMinAndMax(Allocation ain1, Script.LaunchOptions sc) {
363 reduce(mExportReduceIdx_findMinAndMax, new Allocation[]{ain1}, aout, sc);
389 public result_int reduce_fz(Allocation ain1, Script.LaunchOptions sc) {
396 reduce(mExportReduceIdx_fz, new Allocation[]{ain1}, aout, sc);
    [all...]
  /frameworks/compile/slang/tests/P_reduce_general_examples_halter/
ScriptC_reduce_general_examples_halter.java.expect 143 public result_int reduce_fz(Allocation ain1, Script.LaunchOptions sc) {
150 reduce(mExportReduceIdx_fz, new Allocation[]{ain1}, aout, sc);
176 public result_int2 reduce_fz2(Allocation ain1, Script.LaunchOptions sc) {
183 reduce(mExportReduceIdx_fz2, new Allocation[]{ain1}, aout, sc);
  /frameworks/rs/
rsApiContext.cpp 56 uint32_t sdkVersion, RsSurfaceConfig sc,
60 Context *rsc = Context::createContext(dev, &sc);
rsScriptC.h 48 const RsScriptCall *sc = nullptr) override;
52 Allocation *aout, const RsScriptCall *sc) override;
rsScriptIntrinsic.h 50 const RsScriptCall* sc = nullptr) override;
54 Allocation *aout, const RsScriptCall *sc) override;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SecureCacheResponseTest.java 35 SecureCacheResponse sc = new MockCacheResponse(); local
37 assertNull(sc.getCipherSuite());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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));

Completed in 821 milliseconds

1 2 3 4 5 6 7 891011>>