#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include "gpu/command_buffer/common/mailbox.h"
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include "base/check.h"
#include "base/rand_util.h"
#include "base/strings/stringprintf.h"
namespace gpu {
namespace {
constexpr size_t kLiveMailboxIndex = …;
constexpr int8_t kLiveMailboxFlag = …;
}
Mailbox::Mailbox() { … }
bool Mailbox::IsZero() const { … }
void Mailbox::SetZero() { … }
void Mailbox::SetName(const int8_t* n) { … }
Mailbox Mailbox::Generate() { … }
bool Mailbox::Verify() const { … }
std::string Mailbox::ToDebugString() const { … }
bool Mailbox::operator==(const Mailbox& other) const { … }
std::strong_ordering Mailbox::operator<=>(const Mailbox& other) const { … }
}