Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkUint64 (0.1 sec)

  1. src/runtime/metrics_test.go

    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.HeapAlloc)
    		case "/memory/classes/heap/unused:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.HeapInuse-mstats.HeapAlloc)
    		case "/memory/classes/heap/stacks:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.StackInuse)
    		case "/memory/classes/metadata/mcache/free:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.MCacheSys-mstats.MCacheInuse)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. test/divmod.go

    	checkdiv3(^x, y)
    	checkdiv3(x, ^y)
    	checkdiv3(^x, ^y)
    }
    
    var ntest int64 = 0
    
    func checkdiv3(x, y uint64) {
    	ntest++
    	if ntest&(ntest-1) == 0 && long {
    		println(ntest, "...")
    	}
    	checkuint64(x, y)
    	if (uint64(uint32(x)) == x || uint64(uint32(^x)) == ^x) && (uint64(uint32(y)) == y || uint64(uint32(^y)) == ^y) {
    		checkuint32(uint32(x), uint32(y))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 9.3K bytes
    - Viewed (0)
Back to top