func internal/byteorder.LeUint64

17 uses

	internal/byteorder (current package)
		byteorder.go#L49: func LeUint64(b []byte) uint64 {

	internal/chacha8rand
		chacha8.go#L56: 		byteorder.LeUint64(seed[0*8:]),
		chacha8.go#L57: 		byteorder.LeUint64(seed[1*8:]),
		chacha8.go#L58: 		byteorder.LeUint64(seed[2*8:]),
		chacha8.go#L59: 		byteorder.LeUint64(seed[3*8:]),
		chacha8.go#L150: 		s.seed[i] = byteorder.LeUint64(data[(2+i)*8:])

	crypto/ecdh
		nist.go#L159: 		limbA, limbB := byteorder.LeUint64(bufA[i:]), byteorder.LeUint64(bufB[i:])

	crypto/internal/edwards25519
		scalar.go#L274: 		digits[i] = byteorder.LeUint64(b[i*8:])

	crypto/internal/edwards25519/field
		fe.go#L204: 	v.l0 = byteorder.LeUint64(x[0:8])
		fe.go#L207: 	v.l1 = byteorder.LeUint64(x[6:14]) >> 3
		fe.go#L210: 	v.l2 = byteorder.LeUint64(x[12:20]) >> 6
		fe.go#L213: 	v.l3 = byteorder.LeUint64(x[19:27]) >> 1
		fe.go#L217: 	v.l4 = byteorder.LeUint64(x[24:32]) >> 12

	crypto/internal/nistec
		p256_asm.go#L330: 			newTable[i] = byteorder.LeUint64(x[:])

	os
		dir_unix.go#L197: 		return uint64(byteorder.LeUint64(b))

	syscall
		dirent.go#L51: 		return uint64(byteorder.LeUint64(b))