Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/dropbox/godropbox
/ ioff
Function
ioff
container/bitarray/bitarray.go:54–59 ·
view source on GitHub ↗
(i int)
Source
from the content-addressed store, hash-verified
52
}
53
54
func
ioff(i int) (idx int, off uint32) {
55
ui := uint32(i)
56
idx = int(ui >> 6)
57
off = ui & 63
58
return
59
}
60
61
func
(b *BitArray) Set(i int) {
62
if
i < 0 || i >= b.n {
Callers
5
Set
Method · 0.85
Clear
Method · 0.85
IsSet
Method · 0.85
isAny
Method · 0.85
opRange
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected