go.etcd.io/bbolt.page.count (field)

28 uses

	go.etcd.io/bbolt (current package)
		bucket.go#L407: 			s.KeyN += int(p.count)
		bucket.go#L412: 			if p.count != 0 {
		bucket.go#L414: 				used += leafPageElementSize * uintptr(p.count-1)
		bucket.go#L421: 				lastElement := p.leafPageElement(p.count - 1)
		bucket.go#L437: 				for i := uint16(0); i < p.count; i++ {
		bucket.go#L448: 			lastElement := p.branchPageElement(p.count - 1)
		bucket.go#L452: 			used := pageHeaderSize + (branchPageElementSize * uintptr(p.count-1))
		bucket.go#L511: 			for i := 0; i < int(p.count); i++ {
		cursor.go#L293: 	index := sort.Search(int(p.count), func(i int) bool {
		cursor.go#L327: 	index := sort.Search(int(p.count), func(i int) bool {
		cursor.go#L395: 	return int(r.page.count)
		db.go#L450: 	p.count = 0
		db.go#L456: 	p.count = 0
		freelist.go#L270: 	var idx, count = 0, int(p.count)
		freelist.go#L321: 		p.count = uint16(l)
		freelist.go#L323: 		p.count = uint16(l)
		freelist.go#L329: 		p.count = 0xFFFF
		node.go#L164: 	n.inodes = make(inodes, int(p.count))
		node.go#L166: 	for i := 0; i < int(p.count); i++ {
		node.go#L202: 	p.count = uint16(len(n.inodes))
		node.go#L205: 	if p.count == 0 {
		page.go#L33: 	count    uint16
		page.go#L64: 	if p.count == 0 {
		page.go#L69: 	unsafeSlice(unsafe.Pointer(&elems), data, int(p.count))
		page.go#L81: 	if p.count == 0 {
		page.go#L86: 	unsafeSlice(unsafe.Pointer(&elems), data, int(p.count))
		tx.go#L630: 		for i := 0; i < int(p.count); i++ {
		tx.go#L650: 		Count:         int(p.count),