Home
last modified time | relevance | path

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

12345678910>>...36

/third_party/boost/libs/geometry/test/test_geometries/
Dwrapped_boost_array.hpp27 template <typename Point, std::size_t Count>
32 boost::array<Point, Count> array;
45 template <typename Point, std::size_t Count>
46 struct range_mutable_iterator<wrapped_boost_array<Point, Count> >
47 : public range_mutable_iterator<boost::array<Point, Count> >
50 template <typename Point, std::size_t Count>
51 struct range_const_iterator<wrapped_boost_array<Point, Count> >
52 : public range_const_iterator<boost::array<Point, Count> >
62 template <typename Point, std::size_t Count>
65 wrapped_boost_array<Point, Count>
[all …]
/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/e2fsprogs/tests/progs/test_data/
Dexpect.icount22 Count is 0
25 Count is 1
28 Count is 2
31 Count is 3
34 Count is 1
37 Count is 0
39 Count is 0
42 Count is 0
45 Count is 3
48 Count is 0
[all …]
/third_party/boringssl/src/crypto/cmac/
Dcavp_aes192_cmac_tests.txt9 Count = 0
18 Count = 1
27 Count = 2
36 Count = 3
45 Count = 4
54 Count = 5
63 Count = 6
72 Count = 7
81 Count = 8
90 Count = 9
[all …]
Dcavp_aes256_cmac_tests.txt7 Count = 0
16 Count = 1
25 Count = 2
34 Count = 3
43 Count = 4
52 Count = 5
61 Count = 6
70 Count = 7
79 Count = 8
88 Count = 9
[all …]
Dcavp_aes128_cmac_tests.txt7 Count = 0
16 Count = 1
25 Count = 2
34 Count = 3
43 Count = 4
52 Count = 5
61 Count = 6
70 Count = 7
79 Count = 8
88 Count = 9
[all …]
Dcavp_3des_cmac_tests.txt9 Count = 0
20 Count = 1
31 Count = 2
42 Count = 3
53 Count = 4
64 Count = 5
75 Count = 6
86 Count = 7
97 Count = 8
108 Count = 9
[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 …]
/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/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/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 …]
/third_party/giflib/
Dquantize.c32 long Count; member
39 unsigned long Count; /* Total number of pixels in all the entries */ member
88 ColorArrayEntries[i].Count = 0; in GifQuantizeBuffer()
98 ColorArrayEntries[Index].Count++; in GifQuantizeBuffer()
105 NewColorSubdiv[i].Count = NewColorSubdiv[i].NumEntries = 0; in GifQuantizeBuffer()
114 if (ColorArrayEntries[i].Count > 0) in GifQuantizeBuffer()
119 if (ColorArrayEntries[i].Count > 0) { in GifQuantizeBuffer()
127 NewColorSubdiv[0].Count = ((long)Width) * Height; /* Pixels */ in GifQuantizeBuffer()
208 long Sum, Count; in SubdivColorMap() local
261 Sum = NewColorSubdiv[Index].Count / 2 - QuantizedColor->Count; in SubdivColorMap()
[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/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/grpc/src/csharp/Grpc.IntegrationTesting/CoreStats/
DStats.cs100 public ulong Count { property in Grpc.Core.Bucket
121 if (Count != other.Count) return false; in Equals()
129 if (Count != 0UL) hash ^= Count.GetHashCode(); in GetHashCode()
150 if (Count != 0UL) { in WriteTo()
152 output.WriteUInt64(Count); in WriteTo()
167 if (Count != 0UL) { in IBufferMessage.InternalWriteTo()
169 output.WriteUInt64(Count); in IBufferMessage.InternalWriteTo()
183 if (Count != 0UL) { in CalculateSize()
184 size += 1 + pb::CodedOutputStream.ComputeUInt64Size(Count); in CalculateSize()
200 if (other.Count != 0UL) { in MergeFrom()
[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/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/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/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/boost/boost/geometry/algorithms/detail/sections/
Dsectionalize.hpp154 std::size_t Count,
167 int directions[Count]) in apply()
181 Count, in apply()
191 std::size_t Count
193 struct get_direction_loop<Point, DimensionVector, 0, Count, spherical_tag>
199 int directions[Count]) in apply()
218 Count, in apply()
228 std::size_t Count,
231 struct get_direction_loop<Point, DimensionVector, Count, Count, CastedCSTag>
234 static inline void apply(Segment const&, int [Count]) in apply()
[all …]
/third_party/grpc/src/csharp/Grpc.Core.Tests/
DAuthContextTest.cs35 Assert.AreEqual(0, context.PeerIdentity.Count()); in EmptyContext()
36 Assert.AreEqual(0, context.Properties.Count()); in EmptyContext()
37 Assert.AreEqual(0, context.FindPropertiesByName("nonexistent").Count()); in EmptyContext()
50 Assert.AreEqual(1, context.PeerIdentity.Count()); in AuthenticatedContext()
64 Assert.AreEqual(3, context.Properties.Count()); in FindPropertiesByName()
65 Assert.AreEqual(0, context.FindPropertiesByName("nonexistent").Count()); in FindPropertiesByName()
68 Assert.AreEqual(2, existentProperties.Count); in FindPropertiesByName()

12345678910>>...36