Home
last modified time | relevance | path

Searched defs:Coverage (Results 1 – 24 of 24) sorted by relevance

/third_party/json/tests/thirdparty/Fuzzer/
DFuzzerInternal.h36 struct Coverage { struct
37 Coverage() { Reset(); } in Coverage() function
40 BlockCoverage = 0; in Reset() argument
47 size_t BlockCoverage; argument
48 size_t CallerCalleeCoverage; argument
50 size_t CounterBitmapBits;
51 std::vector<uint8_t> CounterBitmap;
52 ValueBitMap VPMap;
/third_party/skia/src/gpu/
DGrDefaultGeoProcFactory.h37 struct Coverage { struct
46 explicit Coverage(uint8_t coverage) : fType(kUniform_Type), fCoverage(coverage) {} in Coverage() argument
47 Coverage(Type type) : fType(type), fCoverage(0xff) { in Coverage() argument
52 uint8_t fCoverage; argument
73 const Coverage&, argument
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
Dimport.go39 type Coverage struct { struct
40 Files []File
/third_party/skia/third_party/externals/freetype/src/otvalid/
Dotvgpos.c368 FT_UInt Coverage, ValueFormat; in otv_SinglePos_validate() local
382 FT_UInt Coverage, ValueFormat, ValueCount, len_value; in otv_SinglePos_validate() local
490 FT_UInt Coverage, ValueFormat1, ValueFormat2, PairSetCount; in otv_PairPos_validate() local
514 FT_UInt Coverage, ValueFormat1, ValueFormat2, ClassDef1, ClassDef2; in otv_PairPos_validate() local
598 FT_UInt Coverage, EntryExitCount; in otv_CursivePos_validate() local
Dotvgsub.c62 FT_Bytes Coverage; in otv_SingleSubst_validate() local
85 FT_UInt Coverage, GlyphCount; in otv_SingleSubst_validate() local
461 FT_Bytes p = table, Coverage; in otv_ReverseChainSingleSubst_validate() local
Dotvgdef.c51 FT_Bytes Coverage; in otv_O_x_Ox() local
Dotvcommn.c689 FT_UInt Count, Coverage; in otv_u_C_x_Ox() local
856 FT_UInt Coverage, ClassDef, ClassSetCount; in otv_u_O_O_x_Onx() local
941 FT_UInt Coverage; in otv_u_O_O_O_O_x_Onx() local
/third_party/skia/modules/canvaskit/
DREADME.md74 ## Coverage section in Unit tests, performance tests, and coverage.
/third_party/skia/third_party/externals/swiftshader/tests/regres/deqp/
Ddeqp.go80 Coverage *cov.Tree member
90 Coverage *cov.Coverage member
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-layout-common.hh1672 struct Coverage struct
1675 static constexpr unsigned SENTINEL = NOT_COVERED;
1676 typedef unsigned int value_t;
1677 value_t operator [] (hb_codepoint_t k) const { return get (k); } in operator []()
1678 bool has (hb_codepoint_t k) const { return (*this)[k] != SENTINEL; } in has()
1680 bool operator () (hb_codepoint_t k) const { return has (k); } in operator ()()
1682 unsigned int get (hb_codepoint_t k) const { return get_coverage (k); } in get()
1683 unsigned int get_coverage (hb_codepoint_t glyph_id) const in get_coverage()
1694 bool serialize (hb_serialize_context_t *c, Iterator glyphs) in serialize()
1719 bool subset (hb_subset_context_t *c) const in subset()
[all …]
Dhb-ot-kern-table.hh178 enum Coverage enum
233 enum Coverage enum
Dhb-aat-layout-morx-table.hh879 enum Coverage enum
Dhb-aat-layout-kerx-table.hh737 enum Coverage enum
/third_party/skia/src/core/
DSkVMBlitter.h42 enum class Coverage { Full, UniformF, MaskA8, MaskLCD16, Mask3D }; enum
/third_party/node/test/fixtures/wpt/resources/webidl2/
DREADME.md602 ### Coverage subsection
/third_party/node/deps/v8/src/debug/
Ddebug-interface.h38 class Coverage; variable
415 explicit Coverage(std::shared_ptr<i::Coverage> coverage) in Coverage() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DGCOV.cpp862 GCOVCoverage &Coverage, uint32_t &EdgeNo) { in printBranchInfo()
922 const GCOVCoverage &Coverage = FC.second; in printFuncCoverage() local
933 const GCOVCoverage &Coverage = FC.second; in printFileCoverage() local
/third_party/typescript/tests/cases/user/chrome-devtools-frontend/
Ddefinitions.js19 var Coverage = {}; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfExpression.cpp143 SmallBitVector Coverage(RegSize, false); in addMachineReg() local
/third_party/skia/third_party/externals/brotli/research/
Ddeorummolae.cc21 typedef std::array<uint64_t, COVERAGE_SIZE> Coverage; typedef
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DSampleProfile.cpp1742 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total); in emitAnnotations() local
1755 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total); in emitAnnotations() local
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp281 auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping()); in load() local
DCoverageMappingReader.cpp591 StringRef Coverage, InstrProfSymtab &&ProfileNames, uint8_t BytesInAddress, in createCoverageReaderFromBuffer()
/third_party/python/Lib/test/
Dtest_decimal.py4376 class Coverage(unittest.TestCase): class