Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Lo2 (0.01 sec)

  1. src/runtime/mpagecache_test.go

    				{1, base + 10*PageSize, PageSize},
    				{1, base + 12*PageSize, PageSize},
    				{1, base + 14*PageSize, PageSize},
    				{1, base + 29*PageSize, 0},
    				{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{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    	}
    	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() {
    		za, zb := ip.Zone(), ip2.Zone()
    		if za < zb {
    			return -1
    		}
    		if za > zb {
    			return 1
    		}
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top