bolt_mips64x.go 275 B

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