calloc_64bit.go 601 B

123456789101112131415
  1. // Copyright 2020 The LevelDB-Go and Pebble Authors. All rights reserved. Use
  2. // of this source code is governed by a BSD-style license that can be found in
  3. // the LICENSE file.
  4. //go:build amd64 || arm64 || arm64be || ppc64 || ppc64le || mips64 || mips64le || riscv64 || s390x || sparc64
  5. // +build amd64 arm64 arm64be ppc64 ppc64le mips64 mips64le riscv64 s390x sparc64
  6. package z
  7. const (
  8. // MaxArrayLen is a safe maximum length for slices on this architecture.
  9. MaxArrayLen = 1<<50 - 1
  10. // MaxBufferSize is the size of virtually unlimited buffer on this architecture.
  11. MaxBufferSize = 256 << 30
  12. )