Source File
calloc_64bit.go
Belonging Package
github.com/dgraph-io/ristretto/v2/z
// Copyright 2020 The LevelDB-Go and Pebble Authors. All rights reserved. Use// of this source code is governed by a BSD-style license that can be found in// the LICENSE file.//go:build amd64 || arm64 || arm64be || ppc64 || ppc64le || mips64 || mips64le || riscv64 || s390x || sparc64// +build amd64 arm64 arm64be ppc64 ppc64le mips64 mips64le riscv64 s390x sparc64package zconst (// MaxArrayLen is a safe maximum length for slices on this architecture.MaxArrayLen = 1<<50 - 1// MaxBufferSize is the size of virtually unlimited buffer on this architecture.MaxBufferSize = 256 << 30)
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |