/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/asm/comp/ |
D | bitfield-signed-operations.asm.comp | 3 uint spvBitfieldInsert(uint Base, uint Insert, uint Offset, uint Count) 5 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 9 uint2 spvBitfieldInsert(uint2 Base, uint2 Insert, uint Offset, uint Count) 11 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 15 uint3 spvBitfieldInsert(uint3 Base, uint3 Insert, uint Offset, uint Count) 17 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 21 uint4 spvBitfieldInsert(uint4 Base, uint4 Insert, uint Offset, uint Count) 23 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 27 uint spvBitfieldUExtract(uint Base, uint Offset, uint Count) 29 uint Mask = Count == 32 ? 0xffffffff : ((1 << Count) - 1); [all …]
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/comp/ |
D | bitfield.comp | 1 uint spvBitfieldInsert(uint Base, uint Insert, uint Offset, uint Count) 3 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 7 uint2 spvBitfieldInsert(uint2 Base, uint2 Insert, uint Offset, uint Count) 9 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 13 uint3 spvBitfieldInsert(uint3 Base, uint3 Insert, uint Offset, uint Count) 15 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 19 uint4 spvBitfieldInsert(uint4 Base, uint4 Insert, uint Offset, uint Count) 21 uint Mask = Count == 32 ? 0xffffffff : (((1u << Count) - 1) << (Offset & 31)); 25 uint spvBitfieldUExtract(uint Base, uint Offset, uint Count) 27 uint Mask = Count == 32 ? 0xffffffff : ((1 << Count) - 1); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | LEB128.h | 26 unsigned Count = 0; variable 33 Count++; 34 if (More || Count < PadTo) 40 if (Count < PadTo) { 42 for (; Count < PadTo - 1; ++Count) 45 Count++; 47 return Count; 54 unsigned Count = 0; variable 62 Count++; 63 if (More || Count < PadTo) [all …]
|
D | DebugCounter.h | 81 ++CounterInfo.Count; in shouldExecute() 88 if (CounterInfo.Skip >= CounterInfo.Count) in shouldExecute() 92 return CounterInfo.StopAfter + CounterInfo.Skip >= CounterInfo.Count; in shouldExecute() 110 return Result->second.Count; in getCounterValue() 114 static void setCounterValue(unsigned ID, int64_t Count) { in setCounterValue() argument 116 Us.Counters[ID].Count = Count; in setCounterValue() 169 int64_t Count = 0; member
|
/third_party/flutter/skia/third_party/externals/wuffs/test/data/analysis/ |
D | giflzw-emission-lengths.txt | 7 Percent Count Emission_Length_Bucket 24 Percent Count Emission_Length_Bucket 41 Percent Count Emission_Length_Bucket 58 Percent Count Emission_Length_Bucket 77 Percent Count Emission_Length_Bucket 94 Percent Count Emission_Length_Bucket 111 Percent Count Emission_Length_Bucket 128 Percent Count Emission_Length_Bucket 145 Percent Count Emission_Length_Bucket 162 Percent Count Emission_Length_Bucket [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopUnrollPass.cpp | 193 UP.Count = 0; in gatherUnrollingPreferences() 256 UP.Count = *UserCount; in gatherUnrollingPreferences() 697 unsigned Count = in UnrollCountPragmaValue() local 699 assert(Count >= 1 && "Unroll count must be positive."); in UnrollCountPragmaValue() 700 return Count; in UnrollCountPragmaValue() 727 return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns; in getUnrolledLoopSize() 749 UP.Count = UnrollCount; in computeUnrollCount() 759 UP.Count = PragmaCount; in computeUnrollCount() 769 UP.Count = TripCount; in computeUnrollCount() 815 UP.Count = FullUnrollTripCount; in computeUnrollCount() [all …]
|
D | LoopUnrollAndJamPass.cpp | 136 unsigned Count = in UnrollAndJamCountPragmaValue() local 138 assert(Count >= 1 && "Unroll count must be positive."); in UnrollAndJamCountPragmaValue() 139 return Count; in UnrollAndJamCountPragmaValue() 149 return static_cast<uint64_t>(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns; in getUnrollAndJammedLoopSize() 176 UP.Count = 0; in computeUnrollAndJamCount() 183 UP.Count = UnrollAndJamCount; in computeUnrollAndJamCount() 195 UP.Count = PragmaCount; in computeUnrollAndJamCount() 218 UP.Count = 0; in computeUnrollAndJamCount() 226 while (UP.Count != 0 && getUnrollAndJammedLoopSize(InnerLoopSize, UP) >= in computeUnrollAndJamCount() 228 UP.Count--; in computeUnrollAndJamCount() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | ProfileSummaryBuilder.cpp | 70 uint64_t CurrSum = 0, Count = 0; in computeDetailedSummary() local 82 Count = Iter->first; in computeDetailedSummary() 84 CurrSum += (Count * Freq); in computeDetailedSummary() 89 ProfileSummaryEntry PSE = {Cutoff, Count, CountsSeen}; in computeDetailedSummary() 108 void InstrProfSummaryBuilder::addEntryCount(uint64_t Count) { in addEntryCount() argument 109 addCount(Count); in addEntryCount() 111 if (Count > MaxFunctionCount) in addEntryCount() 112 MaxFunctionCount = Count; in addEntryCount() 115 void InstrProfSummaryBuilder::addInternalCount(uint64_t Count) { in addInternalCount() argument 116 addCount(Count); in addInternalCount() [all …]
|
D | GCOV.cpp | 306 uint32_t Count; in readGCDA() local 307 if (!Buff.readInt(Count)) in readGCDA() 309 Count /= 2; in readGCDA() 313 for (uint32_t BlockNo = 0; Count > 0; ++BlockNo) { in readGCDA() 324 if (Count == 0) { in readGCDA() 332 --Count; in readGCDA() 390 DstEdges[DstEdgeNo]->Count = N; in addCount() 417 OS << Edge->Src.Number << " (" << Edge->Count << "), "; in print() 423 OS << Edge->Dst.Number << " (" << Edge->Count << "), "; in print() 479 const BlockVector &Blocks, uint64_t &Count) { in lookForCircuit() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | IndirectCallPromotion.cpp | 186 uint64_t Count; member 188 PromotionCandidate(Function *F, uint64_t C) : TargetFunction(F), Count(C) {} in PromotionCandidate() 236 uint64_t Count = ValueDataRef[I].Count; in getPromotionCandidatesForCallSite() local 237 assert(Count <= TotalCount); in getPromotionCandidatesForCallSite() 239 LLVM_DEBUG(dbgs() << " Candidate " << I << " Count=" << Count in getPromotionCandidatesForCallSite() 286 << NV("Count", Count) << ": " << Reason; in getPromotionCandidatesForCallSite() 291 Ret.push_back(PromotionCandidate(TargetFunction, Count)); in getPromotionCandidatesForCallSite() 292 TotalCount -= Count; in getPromotionCandidatesForCallSite() 299 uint64_t Count, uint64_t TotalCount, in promoteIndirectCall() argument 303 uint64_t ElseCount = TotalCount - Count; in promoteIndirectCall() [all …]
|
/third_party/freetype/src/otvalid/ |
D | otvcommn.c | 659 FT_UInt Count; in otv_x_Ox() local 666 Count = FT_NEXT_USHORT( p ); in otv_x_Ox() 668 OTV_TRACE(( " (Count = %d)\n", Count )); in otv_x_Ox() 670 OTV_LIMIT_CHECK( Count * 2 ); in otv_x_Ox() 675 for ( ; Count > 0; Count-- ) in otv_x_Ox() 689 FT_UInt Count, Coverage; in otv_u_C_x_Ox() local 699 Count = FT_NEXT_USHORT( p ); in otv_u_C_x_Ox() 701 OTV_TRACE(( " (Count = %d)\n", Count )); in otv_u_C_x_Ox() 703 otv_Coverage_validate( table + Coverage, otvalid, (FT_Int)Count ); in otv_u_C_x_Ox() 705 OTV_LIMIT_CHECK( Count * 2 ); in otv_u_C_x_Ox() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/otvalid/ |
D | otvcommn.c | 656 FT_UInt Count; in otv_x_Ox() local 663 Count = FT_NEXT_USHORT( p ); in otv_x_Ox() 665 OTV_TRACE(( " (Count = %d)\n", Count )); in otv_x_Ox() 667 OTV_LIMIT_CHECK( Count * 2 ); in otv_x_Ox() 672 for ( ; Count > 0; Count-- ) in otv_x_Ox() 686 FT_UInt Count, Coverage; in otv_u_C_x_Ox() local 696 Count = FT_NEXT_USHORT( p ); in otv_u_C_x_Ox() 698 OTV_TRACE(( " (Count = %d)\n", Count )); in otv_u_C_x_Ox() 700 otv_Coverage_validate( table + Coverage, otvalid, (FT_Int)Count ); in otv_u_C_x_Ox() 702 OTV_LIMIT_CHECK( Count * 2 ); in otv_u_C_x_Ox() [all …]
|
/third_party/skia/third_party/externals/freetype/src/otvalid/ |
D | otvcommn.c | 659 FT_UInt Count; in otv_x_Ox() local 666 Count = FT_NEXT_USHORT( p ); in otv_x_Ox() 668 OTV_TRACE(( " (Count = %d)\n", Count )); in otv_x_Ox() 670 OTV_LIMIT_CHECK( Count * 2 ); in otv_x_Ox() 675 for ( ; Count > 0; Count-- ) in otv_x_Ox() 689 FT_UInt Count, Coverage; in otv_u_C_x_Ox() local 699 Count = FT_NEXT_USHORT( p ); in otv_u_C_x_Ox() 701 OTV_TRACE(( " (Count = %d)\n", Count )); in otv_u_C_x_Ox() 703 otv_Coverage_validate( table + Coverage, otvalid, (FT_Int)Count ); in otv_u_C_x_Ox() 705 OTV_LIMIT_CHECK( Count * 2 ); in otv_u_C_x_Ox() [all …]
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_code.c | 47 dst->Constants = malloc(sizeof(struct rc_constant) * src->Count); in rc_constants_copy() 48 memcpy(dst->Constants, src->Constants, sizeof(struct rc_constant) * src->Count); in rc_constants_copy() 49 dst->Count = src->Count; in rc_constants_copy() 50 dst->_Reserved = src->Count; in rc_constants_copy() 61 unsigned index = c->Count; in rc_constants_add() 63 if (c->Count >= c->_Reserved) { in rc_constants_add() 71 memcpy(newlist, c->Constants, sizeof(struct rc_constant) * c->Count); in rc_constants_add() 78 c->Count++; in rc_constants_add() 92 for(index = 0; index < c->Count; ++index) { in rc_constants_add_state() 119 for(index = 0; index < c->Count; ++index) { in rc_constants_add_immediate_vec4() [all …]
|
D | radeon_remove_constants.c | 74 if (!c->Program.Constants.Count) { in rc_remove_unused_constants() 79 const_used = malloc(c->Program.Constants.Count); in rc_remove_unused_constants() 80 memset(const_used, 0, c->Program.Constants.Count); in rc_remove_unused_constants() 94 for (unsigned i = 0; i < c->Program.Constants.Count; i++) in rc_remove_unused_constants() 101 remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned)); in rc_remove_unused_constants() 102 inv_remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned)); in rc_remove_unused_constants() 105 for (unsigned i = 0; i < c->Program.Constants.Count; i++) { in rc_remove_unused_constants() 123 assert( is_identity || new_count < c->Program.Constants.Count); in rc_remove_unused_constants() 137 c->Program.Constants.Count = new_count; in rc_remove_unused_constants()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | IndirectCallPromotionAnalysis.cpp | 60 bool ICallPromotionAnalysis::isPromotionProfitable(uint64_t Count, in isPromotionProfitable() argument 63 return Count * 100 >= ICPRemainingPercentThreshold * RemainingCount && in isPromotionProfitable() 64 Count * 100 >= ICPTotalPercentThreshold * TotalCount; in isPromotionProfitable() 80 uint64_t Count = ValueDataRef[I].Count; in getProfitablePromotionCandidates() local 81 assert(Count <= RemainingCount); in getProfitablePromotionCandidates() 82 LLVM_DEBUG(dbgs() << " Candidate " << I << " Count=" << Count in getProfitablePromotionCandidates() 85 if (!isPromotionProfitable(Count, TotalCount, RemainingCount)) { in getProfitablePromotionCandidates() 89 RemainingCount -= Count; in getProfitablePromotionCandidates()
|
/third_party/typescript/tests/baselines/reference/ |
D | properties.sourcemap.txt | 29 > public get Count(): number 34 > public set Count(value: number) 43 >>> Object.defineProperty(MyClass.prototype, "Count", { 49 3 > Count 65 1->public get Count(): number 93 2 > public set Count( 132 > public set Count(value: number) 152 > public get Count(): number 157 > public set Count(value: number)
|
D | properties.symbols | 5 public get Count(): number 6 >Count : Symbol(MyClass.Count, Decl(properties.ts, 1, 1), Decl(properties.ts, 5, 5)) 11 public set Count(value: number) 12 >Count : Symbol(MyClass.Count, Decl(properties.ts, 1, 1), Decl(properties.ts, 5, 5))
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | FieldMaskTreeTest.cs | 48 Assert.AreEqual(0, paths.Count); in AddFieldPath() 52 Assert.AreEqual(1, paths.Count); in AddFieldPath() 58 Assert.AreEqual(2, paths.Count); in AddFieldPath() 64 Assert.AreEqual(2, paths.Count); in AddFieldPath() 69 Assert.AreEqual(3, paths.Count); in AddFieldPath() 75 Assert.AreEqual(3, paths.Count); in AddFieldPath() 80 Assert.AreEqual(4, paths.Count); in AddFieldPath() 86 Assert.AreEqual(3, paths.Count); in AddFieldPath() 100 Assert.AreEqual(3, paths.Count); in MergeFromFieldMask() 110 Assert.AreEqual(2, paths.Count); in MergeFromFieldMask() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | ProfileCommon.h | 59 inline void addCount(uint64_t Count); 70 inline void addEntryCount(uint64_t Count); 71 inline void addInternalCount(uint64_t Count); 92 void ProfileSummaryBuilder::addCount(uint64_t Count) { in addCount() argument 93 TotalCount += Count; in addCount() 94 if (Count > MaxCount) in addCount() 95 MaxCount = Count; in addCount() 97 CountFrequencies[Count]++; in addCount()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCWin64EH.cpp | 25 uint8_t Count = 0; in CountOfUnwindCodes() local 34 Count += 1; in CountOfUnwindCodes() 38 Count += 2; in CountOfUnwindCodes() 42 Count += 3; in CountOfUnwindCodes() 45 Count += (I.Offset > 512 * 1024 - 8) ? 3 : 2; in CountOfUnwindCodes() 49 return Count; in CountOfUnwindCodes() 269 uint32_t Count = 0; in ARM64CountOfUnwindCodes() local 275 Count += 1; in ARM64CountOfUnwindCodes() 278 Count += 2; in ARM64CountOfUnwindCodes() 281 Count += 4; in ARM64CountOfUnwindCodes() [all …]
|
/third_party/gn/src/base/containers/ |
D | span.h | 252 template <size_t Count> 253 constexpr span<T, Count> first() const noexcept { 254 static_assert(Extent == dynamic_extent || Count <= Extent, 256 CHECK(Extent != dynamic_extent || Count <= size()); 257 return {data(), Count}; 260 template <size_t Count> 261 constexpr span<T, Count> last() const noexcept { 262 static_assert(Extent == dynamic_extent || Count <= Extent, 264 CHECK(Extent != dynamic_extent || Count <= size()); 265 return {data() + (size() - Count), Count}; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/ |
D | CoverageMapping.h | 223 Counter Count; member 228 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID, in CounterMappingRegion() 231 : Count(Count), FileID(FileID), ExpandedFileID(ExpandedFileID), in CounterMappingRegion() 236 makeRegion(Counter Count, unsigned FileID, unsigned LineStart, in makeRegion() 238 return CounterMappingRegion(Count, FileID, 0, LineStart, ColumnStart, in makeRegion() 258 makeGapRegion(Counter Count, unsigned FileID, unsigned LineStart, in makeGapRegion() 260 return CounterMappingRegion(Count, FileID, 0, LineStart, ColumnStart, in makeGapRegion() 322 void pushRegion(CounterMappingRegion Region, uint64_t Count) { in pushRegion() 324 ExecutionCount = Count; in pushRegion() 325 CountedRegions.emplace_back(Region, Count); in pushRegion() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | WasmObjectFile.cpp | 104 unsigned Count; in readULEB128() local 106 uint64_t Result = decodeULEB128(Ctx.Ptr, &Count, Ctx.End, &Error); in readULEB128() 109 Ctx.Ptr += Count; in readULEB128() 124 unsigned Count; in readLEB128() local 126 uint64_t Result = decodeSLEB128(Ctx.Ptr, &Count, Ctx.End, &Error); in readLEB128() 129 Ctx.Ptr += Count; in readLEB128() 334 uint32_t Count = readVaruint32(Ctx); in parseDylinkSection() local 335 while (Count--) { in parseDylinkSection() 357 uint32_t Count = readVaruint32(Ctx); in parseNameSection() local 358 while (Count--) { in parseNameSection() [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | UnknownField.cs | 159 result += CodedOutputStream.ComputeTagSize(fieldNumber) * varintList.Count; in GetSerializedSize() 167 result += CodedOutputStream.ComputeTagSize(fieldNumber) * fixed32List.Count; in GetSerializedSize() 168 result += CodedOutputStream.ComputeFixed32Size(1) * fixed32List.Count; in GetSerializedSize() 172 result += CodedOutputStream.ComputeTagSize(fieldNumber) * fixed64List.Count; in GetSerializedSize() 173 result += CodedOutputStream.ComputeFixed64Size(1) * fixed64List.Count; in GetSerializedSize() 177 result += CodedOutputStream.ComputeTagSize(fieldNumber) * lengthDelimitedList.Count; in GetSerializedSize() 185 result += CodedOutputStream.ComputeTagSize(fieldNumber) * 2 * groupList.Count; in GetSerializedSize() 218 if (extras.Count == 0) in AddAll()
|