Searched refs:sc (Results 51 - 75 of 414) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/intltest/
H A Ditspoof.h48 void checkSkeleton(const USpoofChecker *sc, uint32_t flags,
/external/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
H A Dreverse_copy.pass.cpp43 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
44 int jc[sc] = {-1};
45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
46 assert(base(r) == jc+sc);
/external/lldb/include/lldb/Symbol/
H A DSymbolContextScope.h78 /// Reconstruct the object's symbolc context into \a sc.
84 /// @param[out] sc
88 CalculateSymbolContext (SymbolContext *sc) = 0;
/external/libunwind/src/setjmp/
H A Dsetjmp_i.h82 struct sigcontext *sc = (struct sigcontext *) sc_addr; local
99 memcpy (&sc->sc_mask, mp, sizeof (sc->sc_mask));
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyscall-ppc32-linux.S96 sc /* set the mask */
107 2: sc /* do the syscall */
110 3: stw 3,OFFSET_ppc32_GPR3(30) /* gst->GPR3 = sc result */
123 sc /* set the mask */
H A Dsyscall-ppc64-linux.S104 sc /* set the mask */
115 2: sc /* do the syscall */
118 3: std 3,OFFSET_ppc64_GPR3(30) /* gst->GPR3 = sc result */
131 sc /* set the mask */
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dgetonescriptspan.cc288 int sc = UNKNOWN_LSCRIPT; local
312 sc = 0;
317 sc = 0;
324 sc = getone::GetUTF8LetterScriptNum(temp);
325 // printf("#(%02x%02x)=%d ", temp[0], temp[1], sc);
330 sc = getone::GetUTF8LetterScriptNum(src + skip);
331 // printf("#(%02x%02x)=%d ", src[skip], src[skip+1], sc);
334 // printf("sc=%d ", sc);
335 if (sc !
364 int sc = UNKNOWN_LSCRIPT; // The script of next character local
[all...]
/external/lldb/source/Core/
H A DModule.cpp364 SymbolContext sc;
365 sc.module_sp = shared_from_this();
370 sc.comp_unit = symbols->GetCompileUnitAtIndex(cu_idx).get();
371 if (sc.comp_unit)
373 sc.function = NULL;
374 symbols->ParseVariablesForContext(sc);
376 symbols->ParseCompileUnitFunctions(sc);
378 for (size_t func_idx = 0; (sc.function = sc.comp_unit->GetFunctionAtIndex(func_idx).get()) != NULL; ++func_idx)
380 symbols->ParseFunctionBlocks(sc);
395 CalculateSymbolContext(SymbolContext* sc) argument
451 ResolveSymbolContextForAddress(const Address& so_addr, uint32_t resolve_scope, SymbolContext& sc) argument
574 SymbolContext sc; local
637 SymbolContext sc; local
724 const SymbolContext &sc = sc_list[i]; local
756 FindTypes_Impl(const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, TypeList& types) argument
774 FindTypesInNamespace(const SymbolContext& sc, const ConstString &type_name, const ClangNamespaceDecl *namespace_decl, size_t max_matches, TypeList& type_list) argument
785 FindFirstType(const SymbolContext& sc, const ConstString &name, bool exact_match) argument
798 FindTypes(const SymbolContext& sc, const ConstString &name, bool exact_match, size_t max_matches, TypeList& types) argument
1173 SymbolContext sc; local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditspoof.cpp42 * "sc" is the ready-to-go SpoofChecker for use in the tests.
46 USpoofChecker *sc; \
47 sc = uspoof_open(&status); \
54 uspoof_close(sc); \
104 int32_t checkResults = uspoof_checkUnicodeString(sc, s, &position, &status);
113 int32_t checkResults = uspoof_areConfusableUnicodeString(sc, s1, s2, &status);
121 UnicodeString &retStr = uspoof_getSkeletonUnicodeString(sc, USPOOF_ANY_CASE, s, dest, &status);
130 checkSkeleton(sc, type, input, expected, __LINE__); \
209 void IntlTestSpoof::checkSkeleton(const USpoofChecker *sc, uint32_t type, argument
216 uspoof_getSkeletonUnicodeString(sc, typ
[all...]
/external/lldb/source/Target/
H A DThreadPlanStepInRange.cpp212 SymbolContext sc = curr_frame->GetSymbolContext (eSymbolContextFunction | eSymbolContextSymbol); local
214 if (sc.function)
216 func_start_address = sc.function->GetAddressRange().GetBaseAddress();
218 bytes_to_skip = sc.function->GetPrologueByteSize();
220 else if (sc.symbol)
222 func_start_address = sc.symbol->GetAddress();
224 bytes_to_skip = sc.symbol->GetPrologueByteSize();
286 SymbolContext sc = frame->GetSymbolContext(eSymbolContextFunction|eSymbolContextBlock|eSymbolContextSymbol); local
287 if (sc.symbol != NULL)
289 const char *frame_function_name = sc
343 SymbolContext sc = frame->GetSymbolContext(eSymbolContextFunction|eSymbolContextBlock|eSymbolContextSymbol); local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkSpriteBlitter_RGB16.cpp16 #define D16_S32A_Opaque_Pixel(dst, sc) \
18 if (sc) { \
19 *dst = SkSrcOver32To16(sc, *dst); \
23 static inline void D16_S32A_Blend_Pixel_helper(uint16_t* dst, SkPMColor sc, argument
26 unsigned sa = SkGetPackedA32(sc);
30 dr = SkAlphaBlend(SkPacked32ToR16(sc), SkGetPackedR16(dc), src_scale);
31 dg = SkAlphaBlend(SkPacked32ToG16(sc), SkGetPackedG16(dc), src_scale);
32 db = SkAlphaBlend(SkPacked32ToB16(sc), SkGetPackedB16(dc), src_scale);
35 dr = (SkPacked32ToR16(sc) * src_scale +
37 dg = (SkPacked32ToG16(sc) * src_scal
[all...]
/external/lldb/source/Symbol/
H A DSymbolVendor.cpp149 SymbolVendor::ParseCompileUnitLanguage (const SymbolContext& sc) argument
156 return m_sym_file_ap->ParseCompileUnitLanguage(sc);
163 SymbolVendor::ParseCompileUnitFunctions (const SymbolContext &sc) argument
170 return m_sym_file_ap->ParseCompileUnitFunctions(sc);
176 SymbolVendor::ParseCompileUnitLineTable (const SymbolContext &sc) argument
183 return m_sym_file_ap->ParseCompileUnitLineTable(sc);
189 SymbolVendor::ParseCompileUnitSupportFiles (const SymbolContext& sc, FileSpecList& support_files) argument
196 return m_sym_file_ap->ParseCompileUnitSupportFiles(sc, support_files);
202 SymbolVendor::ParseFunctionBlocks (const SymbolContext &sc) argument
209 return m_sym_file_ap->ParseFunctionBlocks(sc);
215 ParseTypes(const SymbolContext &sc) argument
228 ParseVariablesForContext(const SymbolContext& sc) argument
255 ResolveSymbolContext(const Address& so_addr, uint32_t resolve_scope, SymbolContext& sc) argument
334 FindTypes(const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, size_t max_matches, TypeList& types) argument
364 FindNamespace(const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *parent_namespace_decl) argument
[all...]
H A DSymbolContext.cpp768 SymbolContextSpecifier::SymbolContextMatches(SymbolContext &sc) argument
773 if (m_target_sp.get() != sc.target_sp.get())
778 if (sc.module_sp)
782 if (m_module_sp.get() != sc.module_sp.get())
788 if (!FileSpec::Equal (module_file_spec, sc.module_sp->GetFileSpec(), false))
798 if (sc.block == NULL && sc.comp_unit == NULL)
803 if (sc.block != NULL)
805 const InlineFunctionInfo *inline_info = sc.block->GetInlinedFunctionInfo();
815 if (!was_inlined && sc
877 SymbolContext sc; local
979 Append(const SymbolContext& sc) argument
1007 AppendIfUnique(const SymbolContext& sc, bool merge_symbol_into_function) argument
[all...]
H A DFunction.cpp306 SymbolContext sc; local
307 CalculateSymbolContext(&sc);
308 if (sc.module_sp)
310 sc.module_sp->GetSymbolVendor()->ParseFunctionBlocks(sc);
379 Function::CalculateSymbolContext(SymbolContext* sc) argument
381 sc->function = this;
382 m_comp_unit->CalculateSymbolContext(sc);
431 SymbolContext sc; local
433 CalculateSymbolContext (&sc);
456 SymbolContext sc; local
[all...]
/external/skia/src/core/
H A DSkSpriteBlitter_RGB16.cpp16 #define D16_S32A_Opaque_Pixel(dst, sc) \
18 if (sc) { \
19 *dst = SkSrcOver32To16(sc, *dst); \
23 static inline void D16_S32A_Blend_Pixel_helper(uint16_t* dst, SkPMColor sc, argument
26 unsigned sa = SkGetPackedA32(sc);
30 dr = SkAlphaBlend(SkPacked32ToR16(sc), SkGetPackedR16(dc), src_scale);
31 dg = SkAlphaBlend(SkPacked32ToG16(sc), SkGetPackedG16(dc), src_scale);
32 db = SkAlphaBlend(SkPacked32ToB16(sc), SkGetPackedB16(dc), src_scale);
35 dr = (SkPacked32ToR16(sc) * src_scale +
37 dg = (SkPacked32ToG16(sc) * src_scal
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dshaders_cache.c385 struct shaders_cache *sc = CALLOC_STRUCT(shaders_cache); local
387 sc->pipe = vg;
388 sc->hash = cso_hash_create();
390 return sc;
393 void shaders_cache_destroy(struct shaders_cache *sc) argument
395 struct cso_hash_iter iter = cso_hash_first_node(sc->hash);
400 cso_delete_fragment_shader(sc->pipe->cso_context,
402 iter = cso_hash_erase(sc->hash, iter);
405 cso_hash_delete(sc->hash);
406 FREE(sc);
409 shaders_cache_fill(struct shaders_cache *sc, int shader_key) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dshaders_cache.c385 struct shaders_cache *sc = CALLOC_STRUCT(shaders_cache); local
387 sc->pipe = vg;
388 sc->hash = cso_hash_create();
390 return sc;
393 void shaders_cache_destroy(struct shaders_cache *sc) argument
395 struct cso_hash_iter iter = cso_hash_first_node(sc->hash);
400 cso_delete_fragment_shader(sc->pipe->cso_context,
402 iter = cso_hash_erase(sc->hash, iter);
405 cso_hash_delete(sc->hash);
406 FREE(sc);
409 shaders_cache_fill(struct shaders_cache *sc, int shader_key) argument
[all...]
/external/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp455 SymbolContext sc; local
456 module_sp->ResolveSymbolContextForAddress (symbol_containing_address, eSymbolContextEverything, sc);
457 if (sc.function || sc.symbol)
459 sc.GetAddressRange (eSymbolContextFunction | eSymbolContextSymbol, 0, false, range);
488 SymbolContext sc(frame->GetSymbolContext(eSymbolContextFunction | eSymbolContextSymbol));
489 if (sc.function)
490 range.GetBaseAddress() = sc.function->GetAddressRange().GetBaseAddress();
491 else if (sc.symbol && sc
[all...]
/external/clang/test/SemaCXX/
H A Dcompare.cpp285 void test6(signed char sc) { argument
286 (void)(sc < 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}}
287 (void)(sc > 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}}
288 (void)(sc <= 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}}
289 (void)(sc >= 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}}
290 (void)(sc == 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}}
291 (void)(sc != 200); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}}
293 (void)(200 < sc); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always false}}
294 (void)(200 > sc); // expected-warning{{comparison of constant 200 with expression of type 'signed char' is always true}}
295 (void)(200 <= sc); // expecte
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h69 virtual lldb::LanguageType ParseCompileUnitLanguage (const lldb_private::SymbolContext& sc);
70 virtual size_t ParseCompileUnitFunctions (const lldb_private::SymbolContext& sc);
71 virtual bool ParseCompileUnitLineTable (const lldb_private::SymbolContext& sc);
72 virtual bool ParseCompileUnitSupportFiles (const lldb_private::SymbolContext& sc, lldb_private::FileSpecList &support_files);
73 virtual size_t ParseFunctionBlocks (const lldb_private::SymbolContext& sc);
74 virtual size_t ParseTypes (const lldb_private::SymbolContext& sc);
75 virtual size_t ParseVariablesForContext (const lldb_private::SymbolContext& sc);
79 virtual clang::DeclContext* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
81 virtual uint32_t ResolveSymbolContext (const lldb_private::Address& so_addr, uint32_t resolve_scope, lldb_private::SymbolContext& sc);
87 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, cons
[all...]
H A DSymbolFileDWARFDebugMap.cpp549 SymbolFileDWARFDebugMap::GetSymbolFile (const SymbolContext& sc) argument
551 CompileUnitInfo *comp_unit_info = GetCompUnitInfo (sc);
681 SymbolFileDWARFDebugMap::GetCompUnitInfo (const SymbolContext& sc) argument
686 if (sc.comp_unit == m_compile_unit_infos[i].compile_unit_sp.get())
706 SymbolFileDWARFDebugMap::ParseCompileUnitLanguage (const SymbolContext& sc) argument
708 SymbolFileDWARF *oso_dwarf = GetSymbolFile (sc);
710 return oso_dwarf->ParseCompileUnitLanguage (sc);
715 SymbolFileDWARFDebugMap::ParseCompileUnitFunctions (const SymbolContext& sc) argument
717 SymbolFileDWARF *oso_dwarf = GetSymbolFile (sc);
719 return oso_dwarf->ParseCompileUnitFunctions (sc);
724 ParseCompileUnitLineTable(const SymbolContext& sc) argument
733 ParseCompileUnitSupportFiles(const SymbolContext& sc, FileSpecList &support_files) argument
743 ParseFunctionBlocks(const SymbolContext& sc) argument
753 ParseTypes(const SymbolContext& sc) argument
763 ParseVariablesForContext(const SymbolContext& sc) argument
791 ResolveSymbolContext(const Address& exe_so_addr, uint32_t resolve_scope, SymbolContext& sc) argument
1069 SymbolContext sc; local
1154 SymbolContext sc; local
1229 FindTypes( const SymbolContext& sc, const ConstString &name, const ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, TypeList& types ) argument
1273 FindNamespace(const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const ClangNamespaceDecl *parent_namespace_decl) argument
1456 GetClangDeclContextForTypeUID(const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid) argument
[all...]
H A DSymbolFileDWARF.h101 virtual lldb::LanguageType ParseCompileUnitLanguage (const lldb_private::SymbolContext& sc);
102 virtual size_t ParseCompileUnitFunctions (const lldb_private::SymbolContext& sc);
103 virtual bool ParseCompileUnitLineTable (const lldb_private::SymbolContext& sc);
104 virtual bool ParseCompileUnitSupportFiles (const lldb_private::SymbolContext& sc, lldb_private::FileSpecList& support_files);
105 virtual size_t ParseFunctionBlocks (const lldb_private::SymbolContext& sc);
106 virtual size_t ParseTypes (const lldb_private::SymbolContext& sc);
107 virtual size_t ParseVariablesForContext (const lldb_private::SymbolContext& sc);
114 virtual clang::DeclContext* GetClangDeclContextForTypeUID (const lldb_private::SymbolContext &sc, lldb::user_id_t type_uid);
116 virtual uint32_t ResolveSymbolContext (const lldb_private::Address& so_addr, uint32_t resolve_scope, lldb_private::SymbolContext& sc);
122 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, cons
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-trace.c527 static int syscall__set_arg_fmts(struct syscall *sc) argument
532 sc->arg_scnprintf = calloc(sc->tp_format->format.nr_fields - 1, sizeof(void *));
533 if (sc->arg_scnprintf == NULL)
536 for (field = sc->tp_format->format.fields->next; field; field = field->next) {
537 if (sc->fmt && sc->fmt->arg_scnprintf[idx])
538 sc->arg_scnprintf[idx] = sc->fmt->arg_scnprintf[idx];
540 sc
550 struct syscall *sc; local
605 syscall__scnprintf_args(struct syscall *sc, char *bf, size_t size, unsigned long *args) argument
698 struct syscall *sc = trace__syscall_info(trace, evsel, sample); local
750 struct syscall *sc = trace__syscall_info(trace, evsel, sample); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_state_dynamic.c253 set_dynamic(i915, I915_DYNAMIC_SC_ENA_0, i915->rasterizer->sc[0]);
273 unsigned sc[3]; local
275 sc[0] = _3DSTATE_SCISSOR_RECT_0_CMD;
276 sc[1] = (y1 << 16) | (x1 & 0xffff);
277 sc[2] = (y2 << 16) | (x2 & 0xffff);
279 set_dynamic_array(i915, I915_DYNAMIC_SC_RECT_0, sc, 3);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_dynamic.c253 set_dynamic(i915, I915_DYNAMIC_SC_ENA_0, i915->rasterizer->sc[0]);
273 unsigned sc[3]; local
275 sc[0] = _3DSTATE_SCISSOR_RECT_0_CMD;
276 sc[1] = (y1 << 16) | (x1 & 0xffff);
277 sc[2] = (y2 << 16) | (x2 & 0xffff);
279 set_dynamic_array(i915, I915_DYNAMIC_SC_RECT_0, sc, 3);

Completed in 459 milliseconds

1234567891011>>