Home
last modified time | relevance | path

Searched refs:Count (Results 1 – 25 of 839) sorted by relevance

12345678910>>...34

/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/asm/comp/
Dbitfield-signed-operations.asm.comp3 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/
Dbitfield.comp1 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/
DLEB128.h26 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 …]
DDebugCounter.h81 ++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/
Dgiflzw-emission-lengths.txt7 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/
DLoopUnrollPass.cpp193 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 …]
DLoopUnrollAndJamPass.cpp136 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/
DProfileSummaryBuilder.cpp70 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 …]
DGCOV.cpp306 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/
DIndirectCallPromotion.cpp186 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/
Dotvcommn.c659 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/
Dotvcommn.c656 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/
Dotvcommn.c659 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/
Dradeon_code.c47 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 …]
Dradeon_remove_constants.c74 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/
DIndirectCallPromotionAnalysis.cpp60 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/
Dproperties.sourcemap.txt29 > 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)
Dproperties.symbols5 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/
DFieldMaskTreeTest.cs48 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/
DProfileCommon.h59 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/
DMCWin64EH.cpp25 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/
Dspan.h252 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/
DCoverageMapping.h223 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/
DWasmObjectFile.cpp104 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/
DUnknownField.cs159 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()

12345678910>>...34