Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/codegen/shift.go

    	}
    	if shift >= 0 && shift < 16 {
    		// arm64:"LSL",-"CSEL"
    		r3 = val16 << shift
    	}
    	if shift >= 0 && shift < 8 {
    		// arm64:"LSL",-"CSEL"
    		r4 = val8 << shift
    	}
    	return r1, r2, r3, r4
    }
    
    func provedSignedShiftLeft(val64 int64, val32 int32, val16 int16, val8 int8, shift int) (r1 int64, r2 int32, r3 int16, r4 int8) {
    	if shift >= 0 && shift < 64 {
    		// arm64:"LSL",-"CSEL"
    		r1 = val64 << shift
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val2 == int(self.val7)",
    				"self.val3 > int(self.val7)",
    
    				"double(self.val1) < self.val8",
    				"double(self.val2) == self.val8",
    				"double(self.val3) > self.val8",
    
    				"self.val1 < int(self.val8)",
    				"self.val2 == int(self.val8)",
    				"self.val3 > int(self.val8)",
    
    				"double(self.val1) < self.val9",
    				"double(self.val2) == self.val9",
    				"double(self.val3) > self.val9",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				float64(10.0), // val5, float type, parsed from decimal literal
    				float64(10.0), // val6, double type, parsed from decimal literal
    				int64(10),     // val7, number type, parsed from integer literal
    				int64(10),     // val8, float type, parsed from integer literal
    				int64(10),     // val9, double type, parsed from integer literal
    			),
    			schema: schemas(integerType, numberType, floatType, doubleType, numberType, floatType, doubleType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/op.go

    func (x ValAndOff) Val() int32   { return int32(int64(x) >> 32) }
    func (x ValAndOff) Val64() int64 { return int64(x) >> 32 }
    func (x ValAndOff) Val16() int16 { return int16(int64(x) >> 32) }
    func (x ValAndOff) Val8() int8   { return int8(int64(x) >> 32) }
    
    func (x ValAndOff) Off64() int64 { return int64(int32(x)) }
    func (x ValAndOff) Off() int32   { return int32(x) }
    
    func (x ValAndOff) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top