type golang.org/x/tools/internal/pkgbits.Encoder

24 uses

	golang.org/x/tools/internal/pkgbits (current package)
		encoder.go#L124: func (pw *PkgEncoder) NewEncoder(k RelocKind, marker SyncMarker) Encoder {
		encoder.go#L134: func (pw *PkgEncoder) NewEncoderRaw(k RelocKind) Encoder {
		encoder.go#L138: 	return Encoder{
		encoder.go#L147: type Encoder struct {
		encoder.go#L161: func (w *Encoder) Flush() Index {
		encoder.go#L190: func (w *Encoder) checkErr(err error) {
		encoder.go#L196: func (w *Encoder) rawUvarint(x uint64) {
		encoder.go#L203: func (w *Encoder) rawVarint(x int64) {
		encoder.go#L213: func (w *Encoder) rawReloc(r RelocKind, idx Index) int {
		encoder.go#L229: func (w *Encoder) Sync(m SyncMarker) {
		encoder.go#L267: func (w *Encoder) Bool(b bool) bool {
		encoder.go#L279: func (w *Encoder) Int64(x int64) {
		encoder.go#L285: func (w *Encoder) Uint64(x uint64) {
		encoder.go#L291: func (w *Encoder) Len(x int) { assert(x >= 0); w.Uint64(uint64(x)) }
		encoder.go#L294: func (w *Encoder) Int(x int) { w.Int64(int64(x)) }
		encoder.go#L297: func (w *Encoder) Uint(x uint) { w.Uint64(uint64(x)) }
		encoder.go#L305: func (w *Encoder) Reloc(r RelocKind, idx Index) {
		encoder.go#L311: func (w *Encoder) Code(c Code) {
		encoder.go#L322: func (w *Encoder) String(s string) {
		encoder.go#L329: func (w *Encoder) Strings(ss []string) {
		encoder.go#L338: func (w *Encoder) Value(val constant.Value) {
		encoder.go#L348: func (w *Encoder) scalar(val constant.Value) {
		encoder.go#L374: func (w *Encoder) bigInt(v *big.Int) {
		encoder.go#L380: func (w *Encoder) bigFloat(v *big.Float) {