2023-02-09 04:14:57 +00:00
|
|
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
|
|
|
|
|
|
|
#include "rocksdb/data_structure.h"
|
|
|
|
|
|
|
|
#include "util/math.h"
|
|
|
|
|
2024-03-04 18:08:32 +00:00
|
|
|
namespace ROCKSDB_NAMESPACE::detail {
|
2023-02-09 04:14:57 +00:00
|
|
|
|
|
|
|
int CountTrailingZeroBitsForSmallEnumSet(uint64_t v) {
|
|
|
|
return CountTrailingZeroBits(v);
|
|
|
|
}
|
|
|
|
|
2024-03-04 18:08:32 +00:00
|
|
|
} // namespace ROCKSDB_NAMESPACE::detail
|