Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for maddld (0.19 sec)

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

    (Max(32|64)F x y) && buildcfg.GOPPC64 >= 9 => (XSMAXJDP x y)
    
    // Combine 64 bit integer multiply and adds
    (ADD l:(MULLD x y) z) && buildcfg.GOPPC64 >= 9 && l.Uses == 1 && clobber(l) => (MADDLD x y z)
    
    (Mod16 x y) => (Mod32 (SignExt16to32 x) (SignExt16to32 y))
    (Mod16u x y) => (Mod32u (ZeroExt16to32 x) (ZeroExt16to32 y))
    (Mod8 x y) => (Mod32 (SignExt8to32 x) (SignExt8to32 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    	},
    
    	{
    		unescaped: strings.Repeat("padded/with+various%characters?that=need$some@escaping+paddedsowebreak/256bytes", 4),
    		query:     strings.Repeat("padded%2Fwith%2Bvarious%25characters%3Fthat%3Dneed%24some%40escaping%2Bpaddedsowebreak%2F256bytes", 4),
    		path:      strings.Repeat("padded%2Fwith+various%25characters%3Fthat=need$some@escaping+paddedsowebreak%2F256bytes", 4),
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    th.valign-top,
    td.valign-top {
    	vertical-align: top;
    }
    
    th.valign-bottom,
    td.valign-bottom {
    	vertical-align: bottom;
    }
    
    th.valign-middle,
    td.valign-middle {
    	vertical-align: middle;
    }
    
    table thead th,
    table tfoot th {
    	font-weight: bold;
    }
    
    tbody tr th {
    	display: table-cell;
    	line-height: 1.6;
    	background: var(--table-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	REMU R3, R4, R5                 // 7fe41b967fff19d67bff00287cbf2050
    	REMD R3, R4, R5                 // 7fe41bd27fff19d27cbf2050
    	REMDU R3, R4, R5                // 7fe41b927fff19d27cbf2050
    
    	MADDHD R3,R4,R5,R6              // 10c32170
    	MADDHDU R3,R4,R5,R6             // 10c32171
    
    	MODUD R3, R4, R5                // 7ca41a12
    	MODUW R3, R4, R5                // 7ca41a16
    	MODSD R3, R4, R5                // 7ca41e12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FNMSUBD", argLength: 3, reg: fp31, asm: "FNMSUBD"}, // -arg0 + (arg1 * arg2)
    		{name: "MADD", argLength: 3, reg: gp31, asm: "MADD"},       // +arg0 + (arg1 * arg2)
    		{name: "MADDW", argLength: 3, reg: gp31, asm: "MADDW"},     // +arg0 + (arg1 * arg2), 32-bit
    		{name: "MSUB", argLength: 3, reg: gp31, asm: "MSUB"},       // +arg0 - (arg1 * arg2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. src/runtime/map.go

    			break
    		}
    		b = ovf
    	}
    
    	// Did not find mapping for key. Allocate new cell & add entry.
    
    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    		hashGrow(t, h)
    		goto again // Growing the table invalidates everything, so try again
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/testing/testing.go

    		//
    		// Moreover, if c.output is non-empty it is important that this write be
    		// atomic with respect to the output of other tests, so that we don't end up
    		// with confusing '=== NAME' lines in the middle of our '--- PASS' block.
    		// Neither humans nor cmd/test2json can parse those easily.
    		// (See https://go.dev/issue/40771.)
    		//
    		// If test2json is used, we never flush to parent tests,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/asm.go

    		case AADDV:
    			opset(AADDVU, r0)
    
    		case AADDF:
    			opset(ADIVF, r0)
    			opset(ADIVD, r0)
    			opset(AMULF, r0)
    			opset(AMULD, r0)
    			opset(ASUBF, r0)
    			opset(ASUBD, r0)
    			opset(AADDD, r0)
    
    		case AAND:
    			opset(AOR, r0)
    			opset(AXOR, r0)
    
    		case ABEQ:
    			opset(ABNE, r0)
    			opset(ABLT, r0)
    			opset(ABGE, r0)
    			opset(ABGEU, r0)
    			opset(ABLTU, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	}
    }
    
    type readerFunc func([]byte) (int, error)
    
    func (f readerFunc) Read(b []byte) (int, error) { return f(b) }
    
    // TestDialer tests that tls.Dialer.DialContext can abort in the middle of a handshake.
    // (The other cases are all handled by the existing dial tests in this package, which
    // all also flow through the same code shared code paths)
    func TestDialer(t *testing.T) {
    	ln := newLocalListener(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	// if len(payload) >= (paddingLen - 1) then the MSB of t is zero
    	good = byte(int32(^t) >> 31)
    
    	// The maximum possible padding length plus the actual length field
    	toCheck := 256
    	// The length of the padded data is public, so we can use an if here
    	if toCheck > len(payload) {
    		toCheck = len(payload)
    	}
    
    	for i := 0; i < toCheck; i++ {
    		t := uint(paddingLen) - uint(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top