chromium/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/rand_util.cc

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "partition_alloc/partition_alloc_base/rand_util.h"

#include <climits>
#include <cmath>
#include <cstdint>
#include <limits>

#include "partition_alloc/partition_alloc_base/check.h"

namespace partition_alloc::internal::base {

uint64_t RandUint64() {}

uint64_t RandGenerator(uint64_t range) {}

InsecureRandomGenerator::InsecureRandomGenerator() {}

void InsecureRandomGenerator::ReseedForTesting(uint64_t seed) {}

uint64_t InsecureRandomGenerator::RandUint64() {}

uint32_t InsecureRandomGenerator::RandUint32() {}

}  // namespace partition_alloc::internal::base