// Copyright 2026 The Go 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 && !goexperiment.simd) || arm64 || 386 package maps import ( "unsafe" ) const memHashUsesVAES = false // stabs for assembly implementations // //go:noescape func memHashAES(p unsafe.Pointer, h, s uintptr) uintptr //go:noescape func memHash32AES(p unsafe.Pointer, h uintptr) uintptr //go:noescape func memHash64AES(p unsafe.Pointer, h uintptr) uintptr //go:noescape func strHashAES(p unsafe.Pointer, h uintptr) uintptr