File: bolt_arm64.go

package info (click to toggle)
golang-github-boltdb-bolt 1.3.1-5
  • links: PTS, VCS
  • area: main
  • in suites: buster, experimental
  • size: 604 kB
  • sloc: makefile: 19
file content (12 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
// +build arm64

package bolt

// maxMapSize represents the largest mmap size supported by Bolt.
const maxMapSize = 0xFFFFFFFFFFFF // 256TB

// maxAllocSize is the size used when creating array pointers.
const maxAllocSize = 0x7FFFFFFF

// Are unaligned load/stores broken on this arch?
var brokenUnaligned = false