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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
SurfaceConfigTest.java 26 SurfaceConfig sc = new SurfaceConfig(); local
30 SurfaceConfig sc = new SurfaceConfig(); local
32 sc.setColor(-1, 8);
36 sc = new SurfaceConfig();
38 sc.setColor(9, 8);
42 sc = new SurfaceConfig();
44 sc.setColor(5, -1);
48 sc = new SurfaceConfig();
49 sc.setColor(5, 8);
50 sc = new SurfaceConfig()
55 SurfaceConfig sc = new SurfaceConfig(); local
80 SurfaceConfig sc = new SurfaceConfig(); local
107 SurfaceConfig sc = new SurfaceConfig(); local
146 SurfaceConfig sc = new SurfaceConfig(); local
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-friend.cpp 10 SomeClass sc; variable
  /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(rint == (ffi_arg) 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 +
  /bionic/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);
strtok.c 44 int c, sc; local
56 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != 0);
strsep.c 51 int c, sc; local
60 if ((sc = *spanp++) == c) {
68 } while (sc != 0);
  /libcore/luni/src/test/java/tests/api/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...]
  /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_and (&sc, 1); // CHECK: atomicrmw and i8
65 sc = __sync_fetch_and_add (&sc, 11); // CHECK: atomicrmw add
74 sc = __sync_fetch_and_sub (&sc, 11); // CHECK: atomicrmw su
    [all...]
  /external/chromium_org/third_party/mesa/src/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...]
cso_cache.h 149 void cso_cache_delete(struct cso_cache *sc);
151 void cso_cache_set_sanitize_callback(struct cso_cache *sc,
155 struct cso_hash_iter cso_insert_state(struct cso_cache *sc,
158 struct cso_hash_iter cso_find_state(struct cso_cache *sc,
160 struct cso_hash_iter cso_find_state_template(struct cso_cache *sc,
163 void cso_for_each_state(struct cso_cache *sc, enum cso_cache_type type,
165 void * cso_take_state(struct cso_cache *sc, unsigned hash_key,
168 void cso_set_maximum_cache_size(struct cso_cache *sc, int number);
169 int cso_maximum_cache_size(const struct cso_cache *sc);
  /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...]
cso_cache.h 149 void cso_cache_delete(struct cso_cache *sc);
151 void cso_cache_set_sanitize_callback(struct cso_cache *sc,
155 struct cso_hash_iter cso_insert_state(struct cso_cache *sc,
158 struct cso_hash_iter cso_find_state(struct cso_cache *sc,
160 struct cso_hash_iter cso_find_state_template(struct cso_cache *sc,
163 void cso_for_each_state(struct cso_cache *sc, enum cso_cache_type type,
165 void * cso_take_state(struct cso_cache *sc, unsigned hash_key,
168 void cso_set_maximum_cache_size(struct cso_cache *sc, int number);
169 int cso_maximum_cache_size(const struct cso_cache *sc);
  /external/chromium_org/third_party/mesa/src/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/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;
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsstr.c 49 wchar_t c, sc; local
56 if ((sc = *s++) == L'\0')
58 } while (sc != c);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
strsep.c 63 register int c, sc;
72 if ((sc = *spanp++) == c) {
80 } while (sc != 0);
  /external/openssh/openbsd-compat/
strsep.c 57 int c, sc; local
66 if ((sc = *spanp++) == c) {
74 } while (sc != 0);
  /external/tcpdump/missing/
strsep.c 63 register int c, sc; local
72 if ((sc = *spanp++) == c) {
80 } while (sc != 0);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-eval.h 15 yasm_expr *nasm_evaluate (scanner sc, void *scprivate, struct tokenval *tv,
  /ndk/sources/host-tools/sed-4.2.1/lib/
se-context.in.h 13 static inline int context_user_set (context_t sc _UNUSED_PARAMETER_,
16 static inline int context_role_set (context_t sc _UNUSED_PARAMETER_,
19 static inline int context_range_set (context_t sc _UNUSED_PARAMETER_,
22 static inline int context_type_set (context_t sc _UNUSED_PARAMETER_,
  /external/chromium_org/content/public/browser/
media_device_id.h 24 const ResourceContext::SaltCallback& sc,
31 const ResourceContext::SaltCallback& sc,

Completed in 577 milliseconds

1 2 3 4 5 6 7 8 91011>>