Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for arithOp (0.09 seconds)

  1. internal/s3select/sql/value.go

    	opModulo   = "%"
    )
    
    // For arithmetic operations, if both values are numeric then the
    // operation shall succeed. If the types are unknown automatic type
    // conversion to a number is attempted.
    func (v *Value) arithOp(op string, a *Value) error {
    	err := inferTypeForArithOp(v)
    	if err != nil {
    		return err
    	}
    
    	err = inferTypeForArithOp(a)
    	if err != nil {
    		return err
    	}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 20.4K bytes
    - Click Count (0)
  2. internal/s3select/sql/evaluate.go

    	// symbols.
    	for _, rightTerm := range e.Right {
    		op := rightTerm.Op
    		rval, rerr := rightTerm.Right.evalNode(r, tableAlias)
    		if rerr != nil {
    			return nil, rerr
    		}
    		err := lval.arithOp(op, rval)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return lval, nil
    }
    
    func (e *MultOp) evalNode(r Record, tableAlias string) (*Value, error) {
    	lval, lerr := e.Left.evalNode(r, tableAlias)
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 12K bytes
    - Click Count (0)
  3. lib/fips140/v1.26.0.zip

    #define CAR2 V9 #define TT0 V11 #define TT1 V12 #define T2 V13 // p256MulAsm Parameters #define X0 V0 #define X1 V1 #define Y0 V2 #define Y1 V3 #define T0 V4 #define T1 V5 #define PL V30 #define PH V31 /* * https://delta.cs.cinvestav.mx/~francisco/arith/julio.pdf "Software Implementation of the NIST Elliptic Curves Over Prime Fields" * * A = X鈧伱梈鈧偮 * B = Y鈧伱梈鈧偮 * C = X鈧偯梈鈧伮 -A * D = Y鈧偯梈鈧伮 -B * X鈧 = D虏 - 2A脳C虏 - C鲁 * Y鈧 = D脳(A脳C虏 - X鈧 ) - B脳C鲁 * Z鈧 = Z鈧伱梈鈧偯桟 * * Three-operand formula (adopted): h...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
  4. lib/fips140/v1.0.0-c2097c7c.zip

    #define CAR2 V9 #define TT0 V11 #define TT1 V12 #define T2 V13 // p256MulAsm Parameters #define X0 V0 #define X1 V1 #define Y0 V2 #define Y1 V3 #define T0 V4 #define T1 V5 #define PL V30 #define PH V31 /* * https://delta.cs.cinvestav.mx/~francisco/arith/julio.pdf "Software Implementation of the NIST Elliptic Curves Over Prime Fields" * * A = X鈧伱梈鈧偮 * B = Y鈧伱梈鈧偮 * C = X鈧偯梈鈧伮 -A * D = Y鈧偯梈鈧伮 -B * X鈧 = D虏 - 2A脳C虏 - C鲁 * Y鈧 = D脳(A脳C虏 - X鈧 ) - B脳C鲁 * Z鈧 = Z鈧伱梈鈧偯桟 * * Three-operand formula (adopted): h...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
Back to Top