1// +build mips64 mips64le
2
3package bbolt
4
5// maxMapSize represents the largest mmap size supported by Bolt.
6const maxMapSize = 0x8000000000 // 512GB
7
8// maxAllocSize is the size used when creating array pointers.
9const maxAllocSize = 0x7FFFFFFF
10