Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for xMax (0.06 sec)

  1. src/image/jpeg/writer.go

    	b := m.Bounds()
    	xmax := b.Max.X - 1
    	ymax := b.Max.Y - 1
    	for j := 0; j < 8; j++ {
    		sj := p.Y + j
    		if sj > ymax {
    			sj = ymax
    		}
    		offset := (sj-b.Min.Y)*m.Stride - b.Min.X*4
    		for i := 0; i < 8; i++ {
    			sx := p.X + i
    			if sx > xmax {
    				sx = xmax
    			}
    			pix := m.Pix[offset+sx*4:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/mmu.go

    		if mu1[len(mu1)-1].Time > maxEvent {
    			maxEvent = mu1[len(mu1)-1].Time
    		}
    	}
    	if maxMax := time.Duration(maxEvent - minEvent); xMax > maxMax {
    		xMax = maxMax
    	}
    	// Compute MMU curve.
    	logMin, logMax := math.Log(float64(xMin)), math.Log(float64(xMax))
    	const samples = 100
    	plot := make([][]float64, samples)
    	for i := 0; i < samples; i++ {
    		window := time.Duration(math.Exp(float64(i)/(samples-1)*(logMax-logMin) + logMin))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. src/hash/crc64/crc64_test.go

    	{0xd402559dfe9b70c, 0x73cef1666185c13f, "The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction.  Lewis-Randall Rule", "crc\x02s\xba\x84\x84\xbb\xcd]\xef\u007f\xae\xb9\xbaX=\x19v", "crc\x02`&\x9aR\xe1\xb7\xfee\xb2˦Y\xc5\xd0G\x03"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return Math.sqrt((xMin-xMax)*(xMin-xMax)+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    		t.Fatal(err)
    	}
    
    	transformerDecrypt := newGCMTransformer(t, block, nil)
    
    	// recorded output from NewGCMTransformer at commit 3b1fc60d8010dd8b53e97ba80e4710dbb430beee
    	const legacyCiphertext = "\x9f'\xc8\xfc\xea\x8aX\xc4g\xd8\xe47\xdb\xf2\xd8YU\xf9\xb4\xbd\x91/N\xf9g\u05c8\xa0\xcb\ay}\xac\n?\n\bE`\\\xa8Z\xc8V+J\xe1"
    
    	ctx := context.Background()
    	dataCtx := value.DefaultContext("bamboo")
    
    	plaintext := []byte("pandas are the best")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
Back to top