Home
last modified time | relevance | path

Searched refs:Sanitizer (Results 1 – 20 of 20) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-face.cc141 …const OT::OpenTypeFontFile &ot_file = *OT::Sanitizer<OT::OpenTypeFontFile>::lock_instance (data->b… in _hb_face_for_data_reference_table()
171 …hb_face_for_data_closure_t *closure = _hb_face_for_data_closure_create (OT::Sanitizer<OT::OpenType… in hb_face_create()
431 hb_blob_t *head_blob = OT::Sanitizer<OT::head>::sanitize (reference_table (HB_OT_TAG_head)); in load_upem()
432 const OT::head *head_table = OT::Sanitizer<OT::head>::lock_instance (head_blob); in load_upem()
475 hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp)); in load_num_glyphs()
476 const OT::maxp *maxp_table = OT::Sanitizer<OT::maxp>::lock_instance (maxp_blob); in load_num_glyphs()
Dhb-ot-font.cc53 hb_blob_t *_hea_blob = OT::Sanitizer<OT::_hea>::sanitize (face->reference_table (_hea_tag)); in init()
54 const OT::_hea *_hea = OT::Sanitizer<OT::_hea>::lock_instance (_hea_blob); in init()
58 this->blob = OT::Sanitizer<OT::_mtx>::sanitize (face->reference_table (_mtx_tag)); in init()
66 this->table = OT::Sanitizer<OT::_mtx>::lock_instance (this->blob); in init()
102 this->blob = OT::Sanitizer<OT::cmap>::sanitize (face->reference_table (HB_OT_TAG_cmap)); in init()
103 const OT::cmap *cmap = OT::Sanitizer<OT::cmap>::lock_instance (this->blob); in init()
Dhb-ot-layout.cc53 layout->gdef_blob = OT::Sanitizer<OT::GDEF>::sanitize (face->reference_table (HB_OT_TAG_GDEF)); in HB_SHAPER_DATA_ENSURE_DECLARE()
54 layout->gdef = OT::Sanitizer<OT::GDEF>::lock_instance (layout->gdef_blob); in HB_SHAPER_DATA_ENSURE_DECLARE()
56 layout->gsub_blob = OT::Sanitizer<OT::GSUB>::sanitize (face->reference_table (HB_OT_TAG_GSUB)); in HB_SHAPER_DATA_ENSURE_DECLARE()
57 layout->gsub = OT::Sanitizer<OT::GSUB>::lock_instance (layout->gsub_blob); in HB_SHAPER_DATA_ENSURE_DECLARE()
59 layout->gpos_blob = OT::Sanitizer<OT::GPOS>::sanitize (face->reference_table (HB_OT_TAG_GPOS)); in HB_SHAPER_DATA_ENSURE_DECLARE()
60 layout->gpos = OT::Sanitizer<OT::GPOS>::lock_instance (layout->gpos_blob); in HB_SHAPER_DATA_ENSURE_DECLARE()
Dhb-open-type-private.hh292 struct Sanitizer struct
Dhb-uniscribe.cc353 blob = OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (blob); in _hb_rename_font()
/external/compiler-rt/lib/sanitizer_common/tests/
DCMakeLists.txt106 FOLDER "Sanitizer unittests")
129 set(SANITIZER_TEST_NAME "Sanitizer-${arch}-Test")
145 add_compiler_rt_test(SanitizerUnitTests "Sanitizer-${arch}-Test-Nolibc"
/external/skia/tools/
Dtsan.supp1 # Suppressions for Thread Sanitizer
/external/compiler-rt/lib/sanitizer_common/
DCMakeLists.txt1 # Build system for the common Sanitizer runtime support library components.
Dsanitizer_common_interceptors_format.inc10 // Scanf/printf implementation for use in *Sanitizer interceptors.
/external/clang/docs/
DSanitizerSpecialCaseList.rst2 Sanitizer special case list
DDataFlowSanitizer.rst18 Unlike other Sanitizer tools, this tool is not designed to detect a
DDataFlowSanitizerDesign.rst5 dynamic data flow analysis. Unlike other Sanitizer tools, this tool is
DUsersManual.rst1774 Thread Sanitizer is not supported.
/external/valgrind/drd/
DTesting.txt39 7. Run the regression tests that were developed for Thread Sanitizer:
/external/compiler-rt/
DCMakeLists.txt203 # Provide some common commmandline flags for Sanitizer runtimes.
/external/llvm/lib/Support/Unix/
DProgram.inc166 // Don't set virtual memory limit if built with any Sanitizer. They need 80Tb
/external/clang/lib/Driver/
DToolChains.h500 StringRef Sanitizer) const;
DToolChains.cpp329 StringRef Sanitizer) const { in AddLinkSanitizerLibArgs()
337 AddLinkRuntimeLib(Args, CmdArgs, (Twine("libclang_rt.") + Sanitizer + "_" + in AddLinkSanitizerLibArgs()
DTools.cpp2261 ArgStringList &CmdArgs, StringRef Sanitizer, in addSanitizerRuntime() argument
2267 CmdArgs.push_back(Args.MakeArgString(getCompilerRT(TC, Sanitizer, IsShared))); in addSanitizerRuntime()
2276 StringRef Sanitizer) { in addSanitizerDynamicList() argument
2277 SmallString<128> SanRT = getCompilerRT(TC, Sanitizer); in addSanitizerDynamicList()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp331 for (const auto &Sanitizer : Sanitizers) { in parseSanitizerKinds() local
332 SanitizerKind K = llvm::StringSwitch<SanitizerKind>(Sanitizer) in parseSanitizerKinds()
337 Diags.Report(diag::err_drv_invalid_value) << FlagName << Sanitizer; in parseSanitizerKinds()