Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for MOD (0.03 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Select1 (NEGLflags (NEGQ (SBBQcarrymask x)))) => x
    
    
    (Mul64uhilo ...) => (MULQU2 ...)
    (Div128u ...) => (DIVQU2 ...)
    
    (Avg64u ...) => (AVGQU ...)
    
    (Mod(64|32|16) [a] x y) => (Select1 (DIV(Q|L|W) [a] x y))
    (Mod8  x y) => (Select1 (DIVW  (SignExt8to16 x) (SignExt8to16 y)))
    (Mod(64|32|16)u x y) => (Select1 (DIV(Q|L|W)U x y))
    (Mod8u x y) => (Select1 (DIVWU (ZeroExt8to16 x) (ZeroExt8to16 y)))
    
    (And(64|32|16|8) ...) => (AND(Q|L|L|L) ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		}
    
    		// Compute bt = absolute nanoseconds.
    		sec, nsec := abs(t0)
    		bsec.SetInt64(sec)
    		bnsec.SetInt64(nsec)
    		bt.Mul(bsec, b1e9)
    		bt.Add(bt, bnsec)
    
    		// Compute quotient and remainder mod d.
    		bd.SetInt64(int64(d))
    		bq.DivMod(bt, bd, br)
    
    		// To truncate, subtract remainder.
    		// br is < d, so it fits in an int64.
    		r := br.Int64()
    		t1 := t0.Add(-Duration(r))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    		if err := overlayDir(gopathSrcDir, srcDir); err != nil {
    			t.Fatal(err)
    		}
    
    		modFile := fmt.Sprintf("module %s\ngo 1.14\n", modName)
    		if err := os.WriteFile(filepath.Join(gopathSrcDir, "go.mod"), []byte(modFile), 0666); err != nil {
    			t.Fatal(err)
    		}
    
    		cmd := []string{goTool, "run", t.goGcflags()}
    		if *linkshared {
    			cmd = append(cmd, "-linkshared")
    		}
    		cmd = append(cmd, flags...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_s390x.s

    	MOVD in1+8(FP), P1ptr
    	MOVD in2+16(FP), P2ptr
    
    	MOVD $p256mul<>+0x00(SB), CPOOL
    	VL   16(CPOOL), PL
    	VL   0(CPOOL), PH
    
    	//	if (sign == 1) {
    	//		Y2 = fromBig(new(big.Int).Mod(new(big.Int).Sub(p256.P, new(big.Int).SetBytes(Y2)), p256.P)) // Y2  = P-Y2
    	//	}
    
    	VL   48(P2ptr), Y2H
    	VPDI $0x4, Y2H, Y2H, Y2H
    	VL   32(P2ptr), Y2L
    	VPDI $0x4, Y2L, Y2L, Y2L
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - go.opentelemetry.io/otel: v1.19.0 → v1.20.0
    - golang.org/x/crypto: v0.21.0 → v0.23.0
    - golang.org/x/exp: a9213ee → f3d0a9c
    - golang.org/x/lint: 6edffad → 1621716
    - golang.org/x/mod: v0.15.0 → v0.17.0
    - golang.org/x/net: v0.23.0 → v0.25.0
    - golang.org/x/oauth2: v0.10.0 → v0.20.0
    - golang.org/x/sync: v0.6.0 → v0.7.0
    - golang.org/x/sys: v0.18.0 → v0.20.0
    - golang.org/x/telemetry: b75ee88 → f48c80b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    // or module is tagged with a newer version of Go than this go/types.
    func TestTooNew(t *testing.T) {
    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    // or module is tagged with a newer version of Go than this go/types.
    func TestTooNew(t *testing.T) {
    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    g??k&c&or!.&ecapsbew,snddym,tikcats,ytic-amil,??us??hxda08--nx?row??l!.&c&a?s??ed,gro?o&c?fni??ten?ude?vog?zib??a&ed?tner??e&ssurb?toh!yrrek???lahsram?m?oot??m!.&bal,etisinim,gro?moc?ten?ude?vog??b?etsys!.tniopthgink,?ialc??n&a&f?gorf?ol??i&a&grab?mod??giro??o&it&acav?cudorp?ulos??puoc???o&dnoc?geuj?ppaz?t&ohp!.remarf,?ua???p!.&ces?gro?moc?olp?ten?ude?vog??i&hsralohcs?lihp?t??u??r!.&au,ca?gro?ni?oc?topsgolb,ude?vog?xo,yldnerb.pohs,?a&c?p?tiug??c?e&dliub!.etisduolc,?erac?gor?levart?mraf?n&niw?tra...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    g??k&c&or!.&ecapsbew,snddym,tikcats,ytic-amil,??us??hxda08--nx?row??l!.&c&a?s??ed,gro?o&c?fni??ten?ude?vog?zib??a&ed?tner??e&ssurb?toh!yrrek???lahsram?m?oot??m!.&bal,etisinim,gro?moc?ten?ude?vog??b?etsys!.tniopthgink,?ialc??n&a&f?gorf?ol??i&a&grab?mod??giro??o&it&acav?cudorp?ulos??puoc???o&dnoc?geuj?ppaz?t&ohp!.remarf,?ua???p!.&ces?gro?moc?olp?ten?ude?vog??i&hsralohcs?lihp?t??u??r!.&au,ca?gro?ni?oc?topsgolb,ude?vog?xo,yldnerb.pohs,?a&c?p?tiug??c?e&dliub!.etisduolc,?erac?gor?levart?mraf?n&niw?tra...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (1)
Back to top