Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for decodetypeIfaceMethodCount (0.21 sec)

  1. src/cmd/link/internal/ld/decodesym.go

    }
    
    func decodetypeFuncOutCount(arch *sys.Arch, p []byte) int {
    	return int(uint16(decodeInuxi(arch, p[commonsize(arch)+2:], 2)) & (1<<15 - 1))
    }
    
    // InterfaceType.methods.length
    func decodetypeIfaceMethodCount(arch *sys.Arch, p []byte) int64 {
    	return int64(decodeInuxi(arch, p[commonsize(arch)+2*arch.PtrSize:], arch.PtrSize))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top