Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for hi2f (0.03 sec)

  1. src/cmd/compile/internal/ssa/debug_test.go

    }
    
    func invertMapSU8(hf2i map[string]uint8) map[uint8]string {
    	hi2f := make(map[uint8]string)
    	for hs, i := range hf2i {
    		hi2f[i] = hs
    	}
    	return hi2f
    }
    
    func (h *nextHist) equals(k *nextHist) bool {
    	if len(h.f2i) != len(k.f2i) {
    		return false
    	}
    	if len(h.ps) != len(k.ps) {
    		return false
    	}
    	hi2f := invertMapSU8(h.f2i)
    	ki2f := invertMapSU8(k.f2i)
    
    	for i, hs := range hi2f {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/riscv64/asm.go

    			ld.Errorf(nil, "failed to find text symbol for HI20 relocation at %d (%x)", sectoff, ldr.SymValue(s)+offset)
    			return false
    		}
    		hi20ElfSym := ld.ElfSymForReloc(ctxt, hi20Sym)
    
    		// Emit two relocations - a R_RISCV_PCREL_HI20 relocation and a
    		// corresponding R_RISCV_PCREL_LO12_I or R_RISCV_PCREL_LO12_S relocation.
    		// Note that the LO12 relocation must point to a target that has a valid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. src/runtime/mpagecache_test.go

    				{1, 0, 0},
    				{10, 0, 0},
    			},
    		},
    		"Lo2": {
    			cache: NewPageCache(base, 0x3, 0x2<<62),
    			hits: []hit{
    				{2, base, 0},
    				{2, 0, 0},
    				{1, 0, 0},
    			},
    		},
    		"Hi2": {
    			cache: NewPageCache(base, 0x3<<62, 0x3<<62),
    			hits: []hit{
    				{2, base + 62*PageSize, 2 * PageSize},
    				{2, 0, 0},
    				{1, 0, 0},
    			},
    		},
    		"Swiss2": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    func (ip Addr) Compare(ip2 Addr) int {
    	f1, f2 := ip.BitLen(), ip2.BitLen()
    	if f1 < f2 {
    		return -1
    	}
    	if f1 > f2 {
    		return 1
    	}
    	hi1, hi2 := ip.addr.hi, ip2.addr.hi
    	if hi1 < hi2 {
    		return -1
    	}
    	if hi1 > hi2 {
    		return 1
    	}
    	lo1, lo2 := ip.addr.lo, ip2.addr.lo
    	if lo1 < lo2 {
    		return -1
    	}
    	if lo1 > lo2 {
    		return 1
    	}
    	if ip.Is6() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pcln.go

    	if ctxt.Target.IsRISCV64() {
    		// Avoid adding local symbols to the pcln table - RISC-V
    		// linking generates a very large number of these, particularly
    		// for HI20 symbols (which we need to load in order to be able
    		// to resolve relocations). Unnecessarily including all of
    		// these symbols quickly blows out the size of the pcln table
    		// and overflows hash buckets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top