Searched refs:sc (Results 1 - 25 of 338) sorted by relevance

1234567891011>>

/external/strace/linux/powerpc/
H A Darch_sigreturn.c2 struct sigcontext sc; variable in typeref:struct:sigcontext
12 if (umove(tcp, esp, &sc) < 0) {
17 mask[0] = sc.oldmask | (sc._unused[3] << 32);
19 mask[0] = sc.oldmask;
20 mask[1] = sc._unused[3];
/external/fio/lib/
H A Dstrsep.c7 int c, sc; local
18 sc = *spanp++;
19 if (sc == c) {
27 } while (sc != 0);
/external/mesa3d/src/gallium/auxiliary/cso_cache/
H A Dcso_cache.c83 static INLINE struct cso_hash *_cso_hash_for_type(struct cso_cache *sc, enum cso_cache_type type) argument
86 hash = sc->hashes[type];
155 static INLINE void sanitize_hash(struct cso_cache *sc, argument
160 if (sc->sanitize_cb)
161 sc->sanitize_cb(hash, type, max_size, sc->sanitize_data);
186 cso_insert_state(struct cso_cache *sc, argument
190 struct cso_hash *hash = _cso_hash_for_type(sc, type);
191 sanitize_hash(sc, hash, type, sc
197 cso_find_state(struct cso_cache *sc, unsigned hash_key, enum cso_cache_type type) argument
225 cso_find_state_template(struct cso_cache *sc, unsigned hash_key, enum cso_cache_type type, void *templ, unsigned size) argument
239 cso_take_state(struct cso_cache *sc, unsigned hash_key, enum cso_cache_type type) argument
248 struct cso_cache *sc = MALLOC_STRUCT(cso_cache); local
263 cso_for_each_state(struct cso_cache *sc, enum cso_cache_type type, cso_state_callback func, void *user_data) argument
279 cso_cache_delete(struct cso_cache *sc) argument
300 cso_set_maximum_cache_size(struct cso_cache *sc, int number) argument
310 cso_maximum_cache_size(const struct cso_cache *sc) argument
315 cso_cache_set_sanitize_callback(struct cso_cache *sc, cso_sanitize_callback cb, void *user_data) argument
[all...]
H A Dcso_cache.h149 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/util/
H A Du_texture.c52 /* 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/
H A DAtomics.c5 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
[all...]
H A Dcomplex-convert.c11 void foo(signed char sc, unsigned char uc, signed long long sll, argument
25 // Match the prototype to pick up the size of sc and sll.
122 csc1 = sc;
152 cuc1 = sc;
182 csll1 = sc;
212 cull1 = sc;
242 csc1 = sc + csc;
260 cuc1 = sc + cuc;
278 csll1 = sc + csll;
292 cull1 = sc
[all...]
/external/libunwind/src/arm/
H A DGresume.c75 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
[all...]
/external/openssh/openbsd-compat/
H A Dstrsep.c57 int c, sc; local
66 if ((sc = *spanp++) == c) {
74 } while (sc != 0);
/external/tcpdump/missing/
H A Dstrsep.c63 register int c, sc; local
72 if ((sc = *spanp++) == c) {
80 } while (sc != 0);
/external/libunwind/src/aarch64/
H A DGresume.c78 struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr; local
80 if (c->dwarf.eh_valid_mask & 0x1) sc->regs[0] = c->dwarf.eh_args[0];
81 if (c->dwarf.eh_valid_mask & 0x2) sc->regs[1] = c->dwarf.eh_args[1];
82 if (c->dwarf.eh_valid_mask & 0x4) sc->regs[2] = c->dwarf.eh_args[2];
83 if (c->dwarf.eh_valid_mask & 0x8) sc->regs[3] = c->dwarf.eh_args[3];
85 sc->regs[4] = uc->uc_mcontext.regs[4];
86 sc->regs[5] = uc->uc_mcontext.regs[5];
87 sc->regs[6] = uc->uc_mcontext.regs[6];
88 sc->regs[7] = uc->uc_mcontext.regs[7];
89 sc
[all...]
/external/libunwind/src/sh/
H A DGresume.c80 struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr; local
81 sc->sc_regs[0] = uc->uc_mcontext.gregs[0];
82 sc->sc_regs[1] = uc->uc_mcontext.gregs[1];
83 sc->sc_regs[2] = uc->uc_mcontext.gregs[2];
84 sc->sc_regs[3] = uc->uc_mcontext.gregs[3];
85 sc->sc_regs[4] = uc->uc_mcontext.gregs[4];
86 sc->sc_regs[5] = uc->uc_mcontext.gregs[5];
87 sc->sc_regs[6] = uc->uc_mcontext.gregs[6];
88 sc->sc_regs[7] = uc->uc_mcontext.gregs[7];
89 sc
[all...]
/external/lldb/source/Breakpoint/
H A DBreakpointResolverFileLine.cpp91 SymbolContext sc; local
102 sc_list.GetContextAtIndex (current_idx, sc);
105 match_file_spec = sc.line_entry.file;
110 matches = (sc.line_entry.file == match_file_spec);
114 tmp_sc_list.Append (sc);
119 if (sc.line_entry.line < closest_line_number)
120 closest_line_number = sc.line_entry.line;
131 if (tmp_sc_list.GetContextAtIndex(current_idx, sc))
133 if (sc.line_entry.line != closest_line_number)
147 if (tmp_sc_list.GetContextAtIndex(current_idx, sc))
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
H A DSpoofCheckerTest.java51 String scMixed = new String(scMixedChars); /* "sc", with Cyrillic 'c' */
54 String scLatin = "sc"; /* "sc", plain ascii. */
73 SpoofChecker sc = new SpoofChecker.Builder().build();
74 if (sc == null) {
170 SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.ALL_CHECKS).build();
172 t = sc.getChecks();
175 sc = new SpoofChecker.Builder().setChecks(0).build();
176 t = sc.getChecks();
181 sc
402 checkSkeleton(SpoofChecker sc, String testName) argument
460 checkSkeleton(SpoofChecker sc, int type, String input, String expected, String testName) argument
[all...]
/external/lldb/source/API/
H A DSBSymbolContextList.cpp55 SymbolContext sc; local
56 if (m_opaque_ap->GetContextAtIndex (idx, sc))
58 sb_sc.SetSymbolContext(&sc);
72 SBSymbolContextList::Append(SBSymbolContext &sc) argument
74 if (sc.IsValid() && m_opaque_ap.get())
75 m_opaque_ap->Append(*sc);
/external/lldb/source/Core/
H A DAddressResolverName.cpp98 SymbolContext sc; local
156 if (func_list.GetContextAtIndex(i, sc) == false)
159 if (sc.function == NULL)
169 if (sc.function->GetAddressRange().GetBaseAddress() == symbol_sc.symbol->GetAddress())
183 if (func_list.GetContextAtIndex(i, sc))
185 if (sc.function)
187 func_addr = sc.function->GetAddressRange().GetBaseAddress();
188 addr_t byte_size = sc.function->GetAddressRange().GetByteSize();
191 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize();
211 if (sym_list.GetContextAtIndex(i, sc))
[all...]
/external/valgrind/coregrind/m_sigframe/
H A Dsigframe-tilegx-linux.c75 struct vki_sigcontext *sc = *sc1; local
78 (Addr)sc, sizeof(unsigned long long)*34 );
79 sc->gregs[0] = tst->arch.vex.guest_r0;
80 sc->gregs[1] = tst->arch.vex.guest_r1;
81 sc->gregs[2] = tst->arch.vex.guest_r2;
82 sc->gregs[3] = tst->arch.vex.guest_r3;
83 sc->gregs[4] = tst->arch.vex.guest_r4;
84 sc->gregs[5] = tst->arch.vex.guest_r5;
85 sc->gregs[6] = tst->arch.vex.guest_r6;
86 sc
[all...]
H A Dsigframe-mips32-linux.c82 struct vki_sigcontext *sc = *sc1; local
85 (Addr)sc, sizeof(unsigned long long)*34 );
86 sc->sc_regs[1] = tst->arch.vex.guest_r1;
87 sc->sc_regs[2] = tst->arch.vex.guest_r2;
88 sc->sc_regs[3] = tst->arch.vex.guest_r3;
89 sc->sc_regs[4] = tst->arch.vex.guest_r4;
90 sc->sc_regs[5] = tst->arch.vex.guest_r5;
91 sc->sc_regs[6] = tst->arch.vex.guest_r6;
92 sc->sc_regs[7] = tst->arch.vex.guest_r7;
93 sc
[all...]
H A Dsigframe-mips64-linux.c77 struct vki_sigcontext *sc = *sc1; local
80 (Addr)sc, sizeof(unsigned long long)*34);
81 sc->sc_regs[1] = tst->arch.vex.guest_r1;
82 sc->sc_regs[2] = tst->arch.vex.guest_r2;
83 sc->sc_regs[3] = tst->arch.vex.guest_r3;
84 sc->sc_regs[4] = tst->arch.vex.guest_r4;
85 sc->sc_regs[5] = tst->arch.vex.guest_r5;
86 sc->sc_regs[6] = tst->arch.vex.guest_r6;
87 sc->sc_regs[7] = tst->arch.vex.guest_r7;
88 sc
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Duspoof.h403 uspoof_close(USpoofChecker *sc);
428 * @param sc The source USpoofChecker
434 uspoof_clone(const USpoofChecker *sc, UErrorCode *status);
441 * @param sc The USpoofChecker
450 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status);
455 * @param sc The USpoofChecker
464 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status);
475 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel);
486 uspoof_getRestrictionLevel(const USpoofChecker *sc);
516 * @param sc Th
[all...]
/external/selinux/sepolgen/tests/
H A Dtest_refpolicy.py34 sc = refpolicy.SecurityContext()
35 sc = refpolicy.SecurityContext("user_u:object_r:foo_t")
39 sc = refpolicy.SecurityContext()
40 sc.from_string(context)
41 self.assertEquals(sc.user, "user_u")
42 self.assertEquals(sc.role, "object_r")
43 self.assertEquals(sc.type, "foo_t")
44 self.assertEquals(sc.level, None)
46 self.assertEquals(str(sc), context + ":s0")
48 self.assertEquals(str(sc), contex
[all...]
/external/icu/icu4c/source/i18n/
H A Duspoof.cpp181 uspoof_clone(const USpoofChecker *sc, UErrorCode *status) { argument
182 const SpoofImpl *src = SpoofImpl::validateThis(sc, *status);
196 uspoof_close(USpoofChecker *sc) { argument
198 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
204 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) { argument
205 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
222 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status) { argument
223 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
231 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel) { argument
233 SpoofImpl *This = SpoofImpl::validateThis(sc, statu
240 uspoof_getRestrictionLevel(const USpoofChecker *sc) argument
250 uspoof_setAllowedLocales(USpoofChecker *sc, const char *localesList, UErrorCode *status) argument
259 uspoof_getAllowedLocales(USpoofChecker *sc, UErrorCode *status) argument
269 uspoof_getAllowedChars(const USpoofChecker *sc, UErrorCode *status) argument
275 uspoof_getAllowedUnicodeSet(const USpoofChecker *sc, UErrorCode *status) argument
285 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status) argument
292 uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const UnicodeSet *chars, UErrorCode *status) argument
314 uspoof_check(const USpoofChecker *sc, const UChar *id, int32_t length, int32_t *position, UErrorCode *status) argument
334 uspoof_checkUTF8(const USpoofChecker *sc, const char *id, int32_t length, int32_t *position, UErrorCode *status) argument
349 uspoof_areConfusable(const USpoofChecker *sc, const UChar *id1, int32_t length1, const UChar *id2, int32_t length2, UErrorCode *status) argument
369 uspoof_areConfusableUTF8(const USpoofChecker *sc, const char *id1, int32_t length1, const char *id2, int32_t length2, UErrorCode *status) argument
389 uspoof_areConfusableUnicodeString(const USpoofChecker *sc, const icu::UnicodeString &id1, const icu::UnicodeString &id2, UErrorCode *status) argument
478 uspoof_checkUnicodeString(const USpoofChecker *sc, const icu::UnicodeString &id, int32_t *position, UErrorCode *status) argument
638 uspoof_getSkeleton(const USpoofChecker *sc, uint32_t type, const UChar *id, int32_t length, UChar *dest, int32_t destCapacity, UErrorCode *status) argument
663 uspoof_getSkeletonUnicodeString(const USpoofChecker *sc, uint32_t type, const UnicodeString &id, UnicodeString &dest, UErrorCode *status) argument
712 uspoof_getSkeletonUTF8(const USpoofChecker *sc, uint32_t type, const char *id, int32_t length, char *dest, int32_t destCapacity, UErrorCode *status) argument
741 uspoof_serialize(USpoofChecker *sc,void *buf, int32_t capacity, UErrorCode *status) argument
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dspooftest.c50 * "sc" is the ready-to-go SpoofChecker for use in the tests.
54 USpoofChecker *sc; \
55 sc = uspoof_open(&status); \
62 uspoof_close(sc); \
82 const UChar scMixed[] = {(UChar)0x73, (UChar)0x0441, 0}; /* "sc", with Cyrillic 'c' */
85 const UChar scLatin[] = {(UChar)0x73, (UChar)0x63, 0}; /* "sc", plain ascii. */
114 USpoofChecker *sc; local
116 sc = uspoof_open(&status);
123 uspoof_close(sc);
189 serializedSize = uspoof_serialize(sc, NUL
[all...]
/external/lldb/source/Symbol/
H A DCompileUnit.cpp59 CompileUnit::CalculateSymbolContext(SymbolContext* sc) argument
61 sc->comp_unit = this;
62 GetModule()->CalculateSymbolContext(sc);
228 SymbolContext sc; local
229 CalculateSymbolContext(&sc);
230 m_language = symbol_vendor->ParseCompileUnitLanguage(sc);
248 SymbolContext sc; local
249 CalculateSymbolContext(&sc);
250 symbol_vendor->ParseCompileUnitLineTable(sc);
272 SymbolContext sc; local
449 SymbolContext sc; local
[all...]
/external/lldb/source/Target/
H A DStackID.cpp30 SymbolContext sc; local
32 m_symbol_scope->CalculateSymbolContext (&sc);
33 if (sc.block)
34 s->Printf(" (Block {0x%8.8" PRIx64 "})", sc.block->GetID());
35 else if (sc.symbol)
36 s->Printf(" (Symbol{0x%8.8x})", sc.symbol->GetID());

Completed in 768 milliseconds

1234567891011>>