Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,266 for max8 (0.04 sec)

  1. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// result: (RISBGZ x {s390x.NewRotateParams(uint8(max8(0, int8(c-d))), 63-d, uint8(int8(d-c)&63))})
    	for {
    		d := auxIntToUint8(v.AuxInt)
    		if v_0.Op != OpS390XSRDconst {
    			break
    		}
    		c := auxIntToUint8(v_0.AuxInt)
    		x := v_0.Args[0]
    		v.reset(OpS390XRISBGZ)
    		v.Aux = s390xRotateParamsToAux(s390x.NewRotateParams(uint8(max8(0, int8(c-d))), 63-d, uint8(int8(d-c)&63)))
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/compress/flate/testdata/huffman-null-max.dyn.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 78 bytes
    - Viewed (0)
  3. releasenotes/notes/cni-rolling-max-available.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:27 UTC 2023
    - 162 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-tfl-stablehlo-max.mlir

    Eugene Burmako <******@****.***> 1671166704 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 16 05:09:09 UTC 2022
    - 749 bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/anames.go

    	"SH1ADDUW",
    	"SH2ADD",
    	"SH2ADDUW",
    	"SH3ADD",
    	"SH3ADDUW",
    	"SLLIUW",
    	"ANDN",
    	"ORN",
    	"XNOR",
    	"CLZ",
    	"CLZW",
    	"CTZ",
    	"CTZW",
    	"CPOP",
    	"CPOPW",
    	"MAX",
    	"MAXU",
    	"MIN",
    	"MINU",
    	"SEXTB",
    	"SEXTH",
    	"ZEXTH",
    	"ROL",
    	"ROLW",
    	"ROR",
    	"RORI",
    	"RORIW",
    	"RORW",
    	"ORCB",
    	"REV8",
    	"BCLR",
    	"BCLRI",
    	"BEXT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/internal/trace/gc.go

    	// contributions to the distribution must be beyond the
    	// desired quantile and hence cannot affect it.
    	//
    	// First, find the highest desired distribution quantile.
    	maxQ := quantiles[0]
    	for _, q := range quantiles {
    		if q > maxQ {
    			maxQ = q
    		}
    	}
    	// The distribution's mass is in units of time (it's not
    	// normalized because this would make it more annoying to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge_test.go

    			scavenged: []BitRange{{1, 10}},
    			min:       m,
    			max:       3 * m,
    			want:      BitRange{128, 3 * uint(m)},
    		}
    		tests["Max0"+suffix] = test{
    			scavenged: []BitRange{{0, PallocChunkPages - uint(m)}},
    			min:       m,
    			max:       0,
    			want:      BitRange{PallocChunkPages - uint(m), uint(m)},
    		}
    		if m <= 8 {
    			tests["OneFree"] = test{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue13799.go

    func test6(iter int) {
    
    	const maxI = 500
    	var x int
    	m := &x
    
    	// var fn *str
    	for i := 0; i < maxI; i++ {
    		var fn *str  // this makes it work, because fn stays off heap
    		fn = &str{m} // ERROR "&str{...} does not escape"
    		recur1(0, fn)
    	}
    
    	if *m != maxI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver.mlir

          %output_6, %min_7, %max_8, %histogram_9 = "tf.CustomAggregator"(%5) <{calibration_method = 1 : i32, id = "1", max_percentile = 0.000000e+00 : f32, min_percentile = 0.000000e+00 : f32, num_bins = 0 : i32}> : (tensor<1x3xf32>) -> (tensor<1x3xf32>, tensor<f32>, tensor<f32>, tensor<0xi64>)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. src/crypto/rsa/rsa_test.go

    }
    
    var allFlag = flag.Bool("all", false, "test all key sizes up to 2048")
    
    func TestEverything(t *testing.T) {
    	min := 32
    	max := 560 // any smaller than this and not all tests will run
    	if testing.Short() {
    		min = max
    	}
    	if *allFlag {
    		max = 2048
    	}
    	for size := min; size <= max; size++ {
    		size := size
    		t.Run(fmt.Sprintf("%d", size), func(t *testing.T) {
    			t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top