Home
last modified time | relevance | path

Searched defs:StaticAllocator (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/flatbuffers/benchmarks/cpp/flatbuffers/
H A Dfb_bench.h10 struct StaticAllocator : public flatbuffers::Allocator { struct
11 explicit StaticAllocator(uint8_t *buffer) : buffer_(buffer) {} in StaticAllocator() argument
13 uint8_t *allocate(size_t) override { return buffer_; } in allocate()
15 void deallocate(uint8_t *, size_t) override {} in deallocate()
17 uint8_t *buffer_;