Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for xMin (0.12 sec)

  1. src/internal/trace/traceviewer/mmu.go

    			quantiles = []float64{0, 1 - .999, 1 - .99, 1 - .95}
    			break
    		}
    	}
    
    	// Find a nice starting point for the plot.
    	xMin := time.Second
    	for xMin > 1 {
    		if mmu := mmuCurve.MMU(xMin); mmu < 0.0001 {
    			break
    		}
    		xMin /= 1000
    	}
    	// Cover six orders of magnitude.
    	xMax := xMin * 1e6
    	// But no more than the length of the trace.
    	minEvent, maxEvent := mu[0][0].Time, mu[0][len(mu[0])-1].Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_amd64.s

    	MOVOU (16*3)(BX), X3
    	MOVOU (16*4)(BX), X4
    	MOVOU (16*5)(BX), X5
    
    	MOVOU X0, x1in(16*0)
    	MOVOU X1, x1in(16*1)
    	MOVOU X2, y1in(16*0)
    	MOVOU X3, y1in(16*1)
    	MOVOU X4, z1in(16*0)
    	MOVOU X5, z1in(16*1)
    
    	MOVOU (16*0)(CX), X0
    	MOVOU (16*1)(CX), X1
    
    	MOVOU X0, x2in(16*0)
    	MOVOU X1, x2in(16*1)
    	// Store pointer to result
    	MOVQ mul0, rptr
    	MOVL t1, sel_save
    	MOVL t2, zero_save
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_arm64.s

    	CSEL	CC, x0, t0, x0;\
    	CSEL	CC, x1, t1, x1;\
    	CSEL	CC, x2, t2, x2;\
    	CSEL	CC, x3, t3, x3;
    /* ---------------------------------------*/
    #define x1in(off) (off)(a_ptr)
    #define y1in(off) (off + 32)(a_ptr)
    #define z1in(off) (off + 64)(a_ptr)
    #define x2in(off) (off)(b_ptr)
    #define z2in(off) (off + 64)(b_ptr)
    #define x3out(off) (off)(res_ptr)
    #define y3out(off) (off + 32)(res_ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    wpenginepowered.com wphostedmail.com wpmucdn.com wpmudev.host writesthisblog.com wroc.pl wroclaw.pl ws ws.na wsa.gov.pl wskr.gov.pl wtc wtf wuoz.gov.pl wv.us www.ro wy.us wzmiuw.gov.pl x.bg x.mythic-beasts.com x.se x443.pw xbox xen.prgmr.com xerox xfinity xihuan xin xj.cn xnbay.com xs4all.space xx.gl xxx xy.ax xyz xz.cn y.bg y.se yabu.hyogo.jp yabuki.fukushima.jp yachimata.chiba.jp yachiyo.chiba.jp yachiyo.ibaraki.jp yachts yaese.okinawa.jp yahaba.iwate.jp yahiko.niigata.jp yahoo yaita.tochigi.jp yaizu.shizuoka.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top