func internal/byteorder.BeUint32

23 uses

	internal/byteorder (current package)
		byteorder.go#L98: func BeUint32(b []byte) uint32 {

	crypto/aes
		block.go#L44: 	s0 := byteorder.BeUint32(src[0:4])
		block.go#L45: 	s1 := byteorder.BeUint32(src[4:8])
		block.go#L46: 	s2 := byteorder.BeUint32(src[8:12])
		block.go#L47: 	s3 := byteorder.BeUint32(src[12:16])
		block.go#L90: 	s0 := byteorder.BeUint32(src[0:4])
		block.go#L91: 	s1 := byteorder.BeUint32(src[4:8])
		block.go#L92: 	s2 := byteorder.BeUint32(src[8:12])
		block.go#L93: 	s3 := byteorder.BeUint32(src[12:16])
		block.go#L151: 		enc[i] = byteorder.BeUint32(key[4*i:])

	crypto/cipher
		gcm.go#L348: 	byteorder.BePutUint32(ctr, byteorder.BeUint32(ctr)+1)

	crypto/internal/bigmod
		nat.go#L175: 	return uint(byteorder.BeUint32(buf))

	crypto/md5
		md5.go#L95: 	return b[4:], byteorder.BeUint32(b[0:4])

	crypto/sha1
		sha1.go#L89: 	return b[4:], byteorder.BeUint32(b)

	crypto/sha256
		sha256.go#L114: 	return b[4:], byteorder.BeUint32(b)

	hash/crc32
		crc32.go#L188: 	if tableSum(d.tab) != byteorder.BeUint32(b[4:]) {
		crc32.go#L191: 	d.crc = byteorder.BeUint32(b[8:])

	math/big
		floatmarsh.go#L87: 	z.prec = byteorder.BeUint32(buf[2:])
		floatmarsh.go#L93: 		z.exp = int32(byteorder.BeUint32(buf[6:]))
		nat.go#L1326: 	return Word(byteorder.BeUint32(buf))
		ratmarsh.go#L57: 	ln := byteorder.BeUint32(buf[j-4 : j])

	os
		dir_unix.go#L180: 		return uint64(byteorder.BeUint32(b))

	syscall
		dirent.go#L34: 		return uint64(byteorder.BeUint32(b))