選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
301 B

  1. //go:build (amd64 || arm64) && !appengine && gc && !purego
  2. // +build amd64 arm64
  3. // +build !appengine
  4. // +build gc
  5. // +build !purego
  6. package xxhash
  7. // Sum64 computes the 64-bit xxHash digest of b.
  8. //
  9. //go:noescape
  10. func Sum64(b []byte) uint64
  11. //go:noescape
  12. func writeBlocks(d *Digest, b []byte) int