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

1234567891011>>

/external/chromium_org/third_party/libaddressinput/chromium/
H A Dstring_compare_unittest.cc13 i18n::addressinput::StringCompare sc; local
14 EXPECT_TRUE(sc.NaturalEquals("Texas", base::WideToUTF8(L"T\u00E9xas")));
18 i18n::addressinput::StringCompare sc; local
19 EXPECT_TRUE(sc.NaturalEquals("Texas", "teXas"));
23 i18n::addressinput::StringCompare sc; local
24 EXPECT_FALSE(sc.NaturalEquals("Texas", "California"));
/external/fio/lib/
H A Dstrsep.c7 int c, sc; local
18 sc = *spanp++;
19 if (sc == c) {
27 } while (sc != 0);
/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_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, 1
[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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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/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/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dstrsep.c63 register int c, sc;
72 if ((sc = *spanp++) == c) {
80 } 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/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
H A Dnasm-eval.h15 yasm_expr *nasm_evaluate (scanner sc, void *scprivate, struct tokenval *tv,
/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/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcommon.cc115 int sc = 1; // Next size class to assign local
137 if (sc > 1 && my_pages == class_to_pages_[sc-1]) {
141 const size_t prev_objects = (class_to_pages_[sc-1] << kPageShift)
142 / class_to_size_[sc-1];
145 class_to_size_[sc-1] = size;
151 class_to_pages_[sc] = my_pages;
152 class_to_size_[sc] = size;
153 sc++;
155 if (sc !
172 const int sc = SizeClass(size); local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcommon.cc111 int sc = 1; // Next size class to assign local
133 if (sc > 1 && my_pages == class_to_pages_[sc-1]) {
137 const size_t prev_objects = (class_to_pages_[sc-1] << kPageShift)
138 / class_to_size_[sc-1];
141 class_to_size_[sc-1] = size;
147 class_to_pages_[sc] = my_pages;
148 class_to_size_[sc] = size;
149 sc++;
151 if (sc !
168 const int sc = SizeClass(size); local
[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/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/chromium_org/third_party/icu/source/i18n/unicode/
H A Duspoof.h389 uspoof_close(USpoofChecker *sc);
414 * @param sc The source USpoofChecker
420 uspoof_clone(const USpoofChecker *sc, UErrorCode *status);
427 * @param sc The USpoofChecker
436 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status);
441 * @param sc The USpoofChecker
450 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status);
462 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel);
473 uspoof_getRestrictionLevel(const USpoofChecker *sc);
504 * @param sc Th
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Duspoof.h399 uspoof_close(USpoofChecker *sc);
424 * @param sc The source USpoofChecker
430 uspoof_clone(const USpoofChecker *sc, UErrorCode *status);
437 * @param sc The USpoofChecker
446 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status);
451 * @param sc The USpoofChecker
460 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status);
471 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel);
482 uspoof_getRestrictionLevel(const USpoofChecker *sc);
512 * @param sc Th
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Duspoof.cpp137 uspoof_clone(const USpoofChecker *sc, UErrorCode *status) { argument
138 const SpoofImpl *src = SpoofImpl::validateThis(sc, *status);
152 uspoof_close(USpoofChecker *sc) { argument
154 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
160 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) { argument
161 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
178 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status) { argument
179 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
187 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel) { argument
189 SpoofImpl *This = SpoofImpl::validateThis(sc, statu
196 uspoof_getRestrictionLevel(const USpoofChecker *sc) argument
206 uspoof_setAllowedLocales(USpoofChecker *sc, const char *localesList, UErrorCode *status) argument
215 uspoof_getAllowedLocales(USpoofChecker *sc, UErrorCode *status) argument
225 uspoof_getAllowedChars(const USpoofChecker *sc, UErrorCode *status) argument
231 uspoof_getAllowedUnicodeSet(const USpoofChecker *sc, UErrorCode *status) argument
241 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status) argument
248 uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const UnicodeSet *chars, UErrorCode *status) argument
270 uspoof_check(const USpoofChecker *sc, const UChar *id, int32_t length, int32_t *position, UErrorCode *status) argument
290 uspoof_checkUTF8(const USpoofChecker *sc, const char *id, int32_t length, int32_t *position, UErrorCode *status) argument
305 uspoof_areConfusable(const USpoofChecker *sc, const UChar *id1, int32_t length1, const UChar *id2, int32_t length2, UErrorCode *status) argument
325 uspoof_areConfusableUTF8(const USpoofChecker *sc, const char *id1, int32_t length1, const char *id2, int32_t length2, UErrorCode *status) argument
345 uspoof_areConfusableUnicodeString(const USpoofChecker *sc, const icu::UnicodeString &id1, const icu::UnicodeString &id2, UErrorCode *status) argument
432 uspoof_checkUnicodeString(const USpoofChecker *sc, const icu::UnicodeString &id, int32_t *position, UErrorCode *status) argument
592 uspoof_getSkeleton(const USpoofChecker *sc, uint32_t type, const UChar *id, int32_t length, UChar *dest, int32_t destCapacity, UErrorCode *status) argument
617 uspoof_getSkeletonUnicodeString(const USpoofChecker *sc, uint32_t type, const UnicodeString &id, UnicodeString &dest, UErrorCode *status) argument
666 uspoof_getSkeletonUTF8(const USpoofChecker *sc, uint32_t type, const char *id, int32_t length, char *dest, int32_t destCapacity, UErrorCode *status) argument
695 uspoof_serialize(USpoofChecker *sc,void *buf, int32_t capacity, UErrorCode *status) argument
[all...]
/external/chromium_org/third_party/icu/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...]

Completed in 773 milliseconds

1234567891011>>