github.com/outcaste-io/ristretto@v0.2.3/z/calloc_32bit.go (about) 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 5 // +build 386 amd64p32 arm armbe mips mipsle mips64p32 mips64p32le ppc sparc 6 7 package z 8 9 const ( 10 // MaxArrayLen is a safe maximum length for slices on this architecture. 11 MaxArrayLen = 1<<31 - 1 12 // MaxBufferSize is the size of virtually unlimited buffer on this architecture. 13 MaxBufferSize = 1 << 30 14 )