type runtime.bitvector

21 uses

	runtime (current package)
		heapdump.go#L213: func dumpobj(obj unsafe.Pointer, size uintptr, bv bitvector) {
		heapdump.go#L240: 	args   bitvector // if args.n >= 0, pointer map of args region
		heapdump.go#L246: func dumpbv(cbv *bitvector, offset uintptr) {
		heapdump.go#L274: 	var bv bitvector
		heapdump.go#L720: func dumpfields(bv bitvector) {
		heapdump.go#L725: func makeheapobjbv(p uintptr, size uintptr) bitvector {
		heapdump.go#L754: 	return bitvector{int32(i), &tmpbuf[0]}
		mbitmap.go#L1551: func progToPointerMask(prog *byte, size uintptr) bitvector {
		mbitmap.go#L1559: 	return bitvector{int32(n), &x[0]}
		runtime2.go#L964: 	argmap   *bitvector // force use of this argmap
		stack.go#L562: type bitvector struct {
		stack.go#L571: func (bv *bitvector) ptrbit(i uintptr) uint8 {
		stack.go#L578: func adjustpointers(scanp unsafe.Pointer, bv *bitvector, adjinfo *adjustinfo, f funcInfo) {
		stack.go#L1219: func getStackMap(frame *stkframe, cache *pcvalueCache, debug bool) (locals, args bitvector, objs []stackObjectRecord) {
		symtab.go#L390: 	gcdatamask, gcbssmask bitvector
		symtab.go#L472: 		if md.gcdatamask == (bitvector{}) {
		symtab.go#L1020: func stackmapdata(stkmap *stackmap, n int32) bitvector {
		symtab.go#L1027: 	return bitvector{stkmap.nbit, addb(&stkmap.bytedata[0], uintptr(n*((stkmap.nbit+7)>>3)))}
		traceback.go#L565: 	stack  *bitvector // ptrmap for both args and results
		traceback.go#L574: func getArgInfoFast(f funcInfo, needArgMap bool) (arglen uintptr, argmap *bitvector, ok bool) {
		traceback.go#L586: func getArgInfo(frame *stkframe, f funcInfo, needArgMap bool, ctxt *funcval) (arglen uintptr, argmap *bitvector) {