Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/catboost/catboost
/ FillZero
Method
FillZero
library/cpp/containers/2d_array/2d_array.h:96–98 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
94
return YSize;
95
}
96
void FillZero() {
97
memset(Data, 0, sizeof(T) * XSize * YSize);
98
}
99
void FillEvery(const T& a) {
100
for (size_t i = 0; i < XSize * YSize; i++)
101
Data[i] = a;
Callers
7
BuildDistributionTree
Function · 0.80
DoMap
Method · 0.80
SetPairwiseBucketsSize
Method · 0.80
ComputePairwiseWeightSums
Function · 0.80
CalculatePairwiseScore
Function · 0.80
CalculatePairwiseScoreSimple
Function · 0.80
Calc
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected