Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for invertMapSU8 (0.33 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)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top