mirror of
https://github.com/langhuihui/monibuca.git
synced 2026-05-08 08:31:10 +08:00
8 lines
101 B
Go
8 lines
101 B
Go
package util
|
|
|
|
const (
|
|
MaxBlockSize = 1 << 22
|
|
BuddySize = MaxBlockSize << 7
|
|
MinPowerOf2 = 10
|
|
)
|