Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for REM (0.08 sec)

  1. src/crypto/dsa/dsa_test.go

    		t.Errorf("%d: q.BitLen got:%d want:%d", int(sizes), params.Q.BitLen(), L)
    	}
    
    	one := new(big.Int)
    	one.SetInt64(1)
    	pm1 := new(big.Int).Sub(params.P, one)
    	quo, rem := new(big.Int).DivMod(pm1, params.Q, new(big.Int))
    	if rem.Sign() != 0 {
    		t.Errorf("%d: p-1 mod q != 0", int(sizes))
    	}
    	x := new(big.Int).Exp(params.G, quo, params.P)
    	if x.Cmp(one) == 0 {
    		t.Errorf("%d: invalid generator", int(sizes))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/mips.go

    		mips.ACMPGTF, mips.ACMPGTD:
    		return true
    	}
    	return false
    }
    
    // IsMIPSMUL reports whether the op (as defined by an mips.A* constant) is
    // one of the MUL/DIV/REM/MADD/MSUB instructions that require special handling.
    func IsMIPSMUL(op obj.As) bool {
    	switch op {
    	case mips.AMUL, mips.AMULU, mips.AMULV, mips.AMULVU,
    		mips.ADIV, mips.ADIVU, mips.ADIVV, mips.ADIVVU,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. src/go/types/token_test.go

    )
    
    var assignOps = map[token.Token]token.Token{
    	token.ADD_ASSIGN:     token.ADD,
    	token.SUB_ASSIGN:     token.SUB,
    	token.MUL_ASSIGN:     token.MUL,
    	token.QUO_ASSIGN:     token.QUO,
    	token.REM_ASSIGN:     token.REM,
    	token.AND_ASSIGN:     token.AND,
    	token.OR_ASSIGN:      token.OR,
    	token.XOR_ASSIGN:     token.XOR,
    	token.SHL_ASSIGN:     token.SHL,
    	token.SHR_ASSIGN:     token.SHR,
    	token.AND_NOT_ASSIGN: token.AND_NOT,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 03:40:04 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/anames.go

    	"MOVW",
    	"MOVWD",
    	"MOVWF",
    	"MOVWL",
    	"MOVWR",
    	"MSUB",
    	"MUL",
    	"MULD",
    	"MULF",
    	"MULU",
    	"MULW",
    	"NEGD",
    	"NEGF",
    	"NEGW",
    	"NEGV",
    	"NOOP",
    	"NOR",
    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"ROTR",
    	"ROTRV",
    	"SC",
    	"SCV",
    	"SEB",
    	"SEH",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

             (CHLO_BroadcastCompareOp:$rem_cmp $rem, $r_zeros,
              (BinBroadcastDimensions $rem, $r_zeros), CHLO_ComparisonDirectionValue<"LT">,
              (CHLO_DEFAULT_COMPARISON_TYPE)),
             (BinBroadcastDimensions $r_cmp, $rem_cmp), CHLO_ComparisonDirectionValue<"NE">,
             (CHLO_DEFAULT_COMPARISON_TYPE)),
            (NullDenseI64ArrayAttr)),
           (CHLO_BroadcastAddOp $r,
            $rem, (BinBroadcastDimensions $r, $rem)), $rem),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/anames.go

    	"MOVWD",
    	"MOVWF",
    	"MOVWL",
    	"MOVWR",
    	"MUL",
    	"MULD",
    	"MULF",
    	"MULU",
    	"MULH",
    	"MULHU",
    	"MULW",
    	"NEGD",
    	"NEGF",
    	"NEGW",
    	"NEGV",
    	"NOOP",
    	"NOR",
    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"SC",
    	"SCV",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"ROTR",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    	"SUBW",
    	"DBAR",
    	"SYSCALL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/internal/coverage/encodecounter/encode.go

    	}
    	return cfw.AppendSegment(args, visitor)
    }
    
    func padToFourByteBoundary(ws *slicewriter.WriteSeeker) error {
    	sz := len(ws.BytesWritten())
    	zeros := []byte{0, 0, 0, 0}
    	rem := uint32(sz) % 4
    	if rem != 0 {
    		pad := zeros[:(4 - rem)]
    		if nw, err := ws.Write(pad); err != nil {
    			return err
    		} else if nw != len(pad) {
    			return fmt.Errorf("error: short write")
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/operator_string.go

    	_ = x[Eql-7]
    	_ = x[Neq-8]
    	_ = x[Lss-9]
    	_ = x[Leq-10]
    	_ = x[Gtr-11]
    	_ = x[Geq-12]
    	_ = x[Add-13]
    	_ = x[Sub-14]
    	_ = x[Or-15]
    	_ = x[Xor-16]
    	_ = x[Mul-17]
    	_ = x[Div-18]
    	_ = x[Rem-19]
    	_ = x[And-20]
    	_ = x[AndNot-21]
    	_ = x[Shl-22]
    	_ = x[Shr-23]
    }
    
    const _Operator_name = ":!<-~||&&==!=<<=>>=+-|^*/%&&^<<>>"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 07 05:19:41 UTC 2021
    - 1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/IntMath.java

        checkNotNull(mode);
        if (q == 0) {
          throw new ArithmeticException("/ by zero"); // for GWT
        }
        int div = p / q;
        int rem = p - q * div; // equal to p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/math/bits/bits_test.go

    	for _, rt := range Rem64Tests {
    		if rt.hi < rt.y {
    			t.Fatalf("Rem64(%v, %v, %v) is not a test with quo overflow", rt.hi, rt.lo, rt.y)
    		}
    		rem := Rem64(rt.hi, rt.lo, rt.y)
    		if rem != rt.rem {
    			t.Errorf("Rem64(%v, %v, %v) returned %v, wanted %v",
    				rt.hi, rt.lo, rt.y, rem, rt.rem)
    		}
    	}
    }
    
    func BenchmarkAdd(b *testing.B) {
    	var z, c uint
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
Back to top