Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for one16 (0.2 sec)

  1. src/runtime/iface_test.go

    				t.Errorf("want zero allocs, got %v", n)
    			}
    		})
    	}
    }
    
    var (
    	eight8  uint8 = 8
    	eight8I T8    = 8
    	yes     bool  = true
    
    	zero16     uint16 = 0
    	zero16I    T16    = 0
    	one16      uint16 = 1
    	thousand16 uint16 = 1000
    
    	zero32     uint32 = 0
    	zero32I    T32    = 0
    	one32      uint32 = 1
    	thousand32 uint32 = 1000
    
    	zero64     uint64 = 0
    	zero64I    T64    = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/shift_test.go

    	}
    	if one32u>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one16<<N>>2<<N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one16u<<N>>2<<N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one16>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one16u>>N<<2>>N == 1 {
    		t.Errorf("shift overflow mishandled")
    	}
    	if one8<<N>>2<<N == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                          (MHLO_ConstantOp $two))),
                      (MHLO_ConstantOp $one1),
                      MHLO_ComparisonDirectionValue<"EQ">,
                      $compare_type2))),
                (MHLO_AddOp $floor2, (MHLO_ConstantOp $one)),
                $floor3),
              (TF_RoundOp $input),
              [(ValueEquals<"1.0"> $one),
               (ValueEquals<"1.0"> $one1),
               (ValueEquals<"2.0"> $two),
               (ValueEquals<"0.5"> $half),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top