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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/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)
24k-triple-stores-2-llsc.d 3 #name: 24K: Triple Store (Range Check, sc)
9 0: e3a20020 sc v0,32\(sp\)
10 4: e3a30008 sc v1,8\(sp\)
11 8: e3a4fff8 sc a0,-8\(sp\)
13 10: e3a50000 sc a1,0\(sp\)
14 14: e3a60020 sc a2,32\(sp\)
micromips@24k-triple-stores-2-llsc.d 3 #name: 24K: Triple Store (Range Check, sc)
11 *[0-9a-f]+: 605d b020 sc v0,32\(sp\)
12 *[0-9a-f]+: 607d b008 sc v1,8\(sp\)
13 *[0-9a-f]+: 609d bff8 sc a0,-8\(sp\)
14 *[0-9a-f]+: 60bd b000 sc a1,0\(sp\)
15 *[0-9a-f]+: 60dd b020 sc a2,32\(sp\)
mipsr6@24k-triple-stores-2-llsc.d 4 #name: 24K: Triple Store (Range Check, sc)
10 0: 7fa21026 sc v0,32\(sp\)
11 4: 7fa30426 sc v1,8\(sp\)
13 c: 7fa4fc26 sc a0,-8\(sp\)
14 10: 7fa50026 sc a1,0\(sp\)
16 18: 7fa61026 sc a2,32\(sp\)
  /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);
strsep.c 50 int c, sc; local
59 if ((sc = *spanp++) == c) {
67 } 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);
  /external/strace/linux/powerpc/
arch_sigreturn.c 5 struct sigcontext sc; local
15 if (umove(tcp, esp, &sc) < 0) {
20 mask[0] = sc.oldmask | (sc._unused[3] << 32);
22 mask[0] = sc.oldmask;
23 mask[1] = sc._unused[3];
  /frameworks/native/services/surfaceflinger/tests/
Transaction_test.cpp 37 static void fillSurfaceRGBA8(const sp<SurfaceControl>& sc,
40 sp<Surface> s = sc->getSurface();
60 static void captureScreen(sp<ScreenCapture>* sc) {
73 *sc = new ScreenCapture(cpuConsumer);
187 sp<ScreenCapture> sc; local
190 ScreenCapture::captureScreen(&sc);
191 sc->checkPixel( 0, 12, 63, 63, 195);
192 sc->checkPixel( 75, 75, 195, 63, 63);
193 sc->checkPixel(145, 145, 63, 63, 195);
202 ScreenCapture::captureScreen(&sc);
221 sp<ScreenCapture> sc; local
260 sp<ScreenCapture> sc; local
286 sp<ScreenCapture> sc; local
311 sp<ScreenCapture> sc; local
334 sp<ScreenCapture> sc; local
369 sp<ScreenCapture> sc; local
392 sp<ScreenCapture> sc; local
416 sp<ScreenCapture> sc; local
440 sp<ScreenCapture> sc; local
465 sp<ScreenCapture> sc; local
    [all...]
  /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/lib/
strsep.c 7 int c, sc; local
18 sc = *spanp++;
19 if (sc == c) {
27 } while (sc != 0);
  /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 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);
66 SocketChannel sc = SocketChannel.open(); local
67 sc.configureBlocking(false);
70 SelectionKey selectionKey = sc.register(selector, SelectionKey.OP_CONNECT);
78 sc.connect(new InetSocketAddress(InetAddress.getByAddress(new byte[] {
85 sc.finishConnect();
95 SocketChannel sc = SocketChannel.open(ss.getLocalSocketAddress()) local
116 SocketChannel sc = SocketChannel.open(ss.getLocalSocketAddress()); local
135 SocketChannel sc = SocketChannel.open(); local
158 SocketChannel sc = SocketChannel.open(); local
174 SocketChannel sc = SocketChannel.open(); local
202 SocketChannel sc = SocketChannel.open(); local
229 SocketChannel sc = SocketChannel.open(); local
248 SocketChannel sc = SocketChannel.open(); local
272 SocketChannel sc = SocketChannel.open(); local
282 SocketChannel sc = SocketChannel.open(); local
300 SocketChannel sc = SocketChannel.open(); local
329 SocketChannel sc = SocketChannel.open(); local
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketAdaptor.java 58 private final SocketChannelImpl sc; field in class:SocketAdaptor
63 private SocketAdaptor(SocketChannelImpl sc) throws SocketException {
64 super(new FileDescriptorHolderSocketImpl(sc.getFD()));
65 this.sc = sc;
68 public static Socket create(SocketChannelImpl sc) {
70 return new SocketAdaptor(sc);
77 return sc;
92 synchronized (sc.blockingLock()) {
93 if (!sc.isBlocking()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.c 83 static INLINE struct cso_hash *_cso_hash_for_type(struct cso_cache *sc, enum cso_cache_type type)
86 hash = sc->hashes[type];
155 static INLINE void sanitize_hash(struct cso_cache *sc,
160 if (sc->sanitize_cb)
161 sc->sanitize_cb(hash, type, max_size, sc->sanitize_data);
186 cso_insert_state(struct cso_cache *sc,
190 struct cso_hash *hash = _cso_hash_for_type(sc, type);
191 sanitize_hash(sc, hash, type, sc->max_size)
248 struct cso_cache *sc = MALLOC_STRUCT(cso_cache); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
57 const float sc = (2 * in_st[0] - 1) * scale; local
64 rz = -sc;
69 rz = sc;
72 rx = sc;
77 rx = sc;
82 rx = sc;
87 rx = -sc;
  /external/clang/test/CodeGen/
Atomics.c 5 signed char sc; variable
16 (void) __sync_fetch_and_add (&sc, 1); // CHECK: atomicrmw add i8
25 (void) __sync_fetch_and_sub (&sc, 1); // CHECK: atomicrmw sub i8
34 (void) __sync_fetch_and_or (&sc, 1); // CHECK: atomicrmw or i8
43 (void) __sync_fetch_and_xor (&sc, 1); // CHECK: atomicrmw xor i8
52 (void) __sync_fetch_and_nand (&sc, 1); // CHECK: atomicrmw nand i8
61 (void) __sync_fetch_and_and (&sc, 1); // CHECK: atomicrmw and i8
74 sc = __sync_fetch_and_add (&sc, 11); // CHECK: atomicrmw add
83 sc = __sync_fetch_and_sub (&sc, 11); // CHECK: atomicrmw su
    [all...]
  /external/libunwind/src/arm/
Gresume.c 75 struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr; local
76 sc->arm_r0 = uc->regs[0];
77 sc->arm_r1 = uc->regs[1];
78 sc->arm_r2 = uc->regs[2];
79 sc->arm_r3 = uc->regs[3];
80 sc->arm_r4 = uc->regs[4];
81 sc->arm_r5 = uc->regs[5];
82 sc->arm_r6 = uc->regs[6];
83 sc->arm_r7 = uc->regs[7];
84 sc->arm_r8 = uc->regs[8]
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
LaunchClip.java 97 private void verifyCell(int x, int y, int z, int[] a, Script.LaunchOptions sc) {
102 if (x >= sc.getXStart() && x < sc.getXEnd()) {
110 if (y >= sc.getYStart() && y < sc.getYEnd()) {
118 if (z >= sc.getZStart() && z < sc.getZEnd()) {
138 void verifyRange(Script.LaunchOptions sc, int[] a) {
145 verifyCell(x, y, z, a, sc);
179 Script.LaunchOptions sc = new Script.LaunchOptions() local
190 Script.LaunchOptions sc = new Script.LaunchOptions(); local
203 Script.LaunchOptions sc = new Script.LaunchOptions(); local
215 Script.LaunchOptions sc = new Script.LaunchOptions(); local
228 Script.LaunchOptions sc = new Script.LaunchOptions(); local
242 Script.LaunchOptions sc = new Script.LaunchOptions(); local
255 Script.LaunchOptions sc = new Script.LaunchOptions(); local
270 Script.LaunchOptions sc = new Script.LaunchOptions(); local
285 Script.LaunchOptions sc = new Script.LaunchOptions(); local
    [all...]
  /art/runtime/arch/mips/
fault_handler_mips.cc 46 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
47 *out_sp = static_cast<uintptr_t>(sc->sc_regs[29]); // SP register
59 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[4]); // A0 register
69 << static_cast<void*>(reinterpret_cast<uint8_t*>(sc->sc_pc));
71 *out_return_pc = sc->sc_pc + 4;
81 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
83 sc->sc_regs[31] = sc->sc_pc + 4; // RA needs to point to gc map location
84 sc->sc_pc = reinterpret_cast<uintptr_t>(art_quick_throw_null_pointer_exception);
85 sc->sc_regs[25] = sc->sc_pc; // make sure T9 points to the functio
110 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
112 VLOG(signals) << "sigcontext: " << std::hex << sc; local
    [all...]
  /art/runtime/arch/mips64/
fault_handler_mips64.cc 46 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
47 *out_sp = static_cast<uintptr_t>(sc->sc_regs[29]); // SP register
59 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[4]); // A0 register
69 << static_cast<void*>(reinterpret_cast<uint8_t*>(sc->sc_pc));
71 *out_return_pc = sc->sc_pc + 4;
81 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
83 sc->sc_regs[31] = sc->sc_pc + 4; // RA needs to point to gc map location
84 sc->sc_pc = reinterpret_cast<uintptr_t>(art_quick_throw_null_pointer_exception);
85 sc->sc_regs[25] = sc->sc_pc; // make sure T9 points to the functio
110 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
112 VLOG(signals) << "sigcontext: " << std::hex << sc; local
    [all...]
  /art/runtime/arch/arm64/
fault_handler_arm64.cc 47 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
51 sc->regs[0] = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
52 sc->regs[1] = 1;
53 sc->pc = reinterpret_cast<uintptr_t>(longjmp);
60 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
61 *out_sp = static_cast<uintptr_t>(sc->sp);
69 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(sc->fault_address);
73 *out_method = reinterpret_cast<ArtMethod*>(sc->regs[0]);
82 << static_cast<void*>(reinterpret_cast<uint8_t*>(sc->pc));
84 *out_return_pc = sc->pc + 4
94 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
119 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
165 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
167 VLOG(signals) << "sigcontext: " << std::hex << sc; local
    [all...]

Completed in 562 milliseconds

1 2 3 4 5 6 7 8 91011>>