Searched refs:mBuckets (Results 1 – 5 of 5) sorted by relevance
44 private SparseIntArray mBuckets; field in IntHistogram91 mBuckets = new SparseIntArray(); in IntHistogram()98 mBuckets.clear(); in clear()106 return mBuckets.size(); in numNonEmptyBuckets()120 int bucketKey = mBuckets.keyAt(bucketIndex); in getBucketByIndex()125 int count = mBuckets.valueAt(bucketIndex); in getBucketByIndex()141 int curBucketValue = mBuckets.get(bucketKey); in add()142 mBuckets.put(bucketKey, curBucketValue + count); in add()160 if (mBuckets.size() <= 0) { in toString()166 for (int bucketIndex = 0; bucketIndex < mBuckets.size(); ++bucketIndex) { in toString()[all …]
256 private final Bucket[] mBuckets; field in BackgroundScanScheduler.BucketList260 mBuckets = new Bucket[PREDEFINED_BUCKET_PERIODS.length]; in BucketList()264 Arrays.fill(mBuckets, null); in clearAll()269 if (mBuckets[index] != null) { in clear()271 mBuckets[index] = null; in clear()276 Bucket bucket = mBuckets[index]; in getOrCreate()279 bucket = mBuckets[index] = new Bucket(PREDEFINED_BUCKET_PERIODS[index]); in getOrCreate()285 return mBuckets[index] != null; in isActive()289 return mBuckets[index]; in get()293 return mBuckets.length; in size()[all …]
487 mBucketCount(0), mBuckets(NULL) {}; in Histogram()489 void clear() { if (mBuckets != NULL) free(mBuckets); mBuckets = NULL; }; in clear()504 int64_t *mBuckets; member
113 private final ArrayMap<Class<?>, TokenBucket> mBuckets = makeRateLimitingBuckets(); field in IpConnectivityMetrics183 TokenBucket tb = mBuckets.get(event.data.getClass()); in isRateLimited()
653 if (nbuckets == mBucketCount && mBuckets != NULL) { in setup()655 memset(mBuckets, 0, sizeof(*mBuckets) * mBucketCount); in setup()658 int64_t *newbuckets = (int64_t *)calloc(nbuckets, sizeof (*mBuckets)); in setup()662 if (mBuckets != NULL) in setup()663 free(mBuckets); in setup()664 mBuckets = newbuckets; in setup()681 if (mBuckets != NULL) { in setup()682 free(mBuckets); in setup()683 mBuckets = NULL; in setup()692 if (mBuckets == NULL) { in insert()[all …]