Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mpz_mul (0.22 sec)

  1. misc/cgo/gmp/gmp.go

    // Sub sets z = x - y and returns z.
    func (z *Int) Sub(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_sub(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    // Mul sets z = x * y and returns z.
    func (z *Int) Mul(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_mul(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    // Div sets z = x / y, rounding toward zero, and returns z.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (darwin-386), const BPF_MINOR_VERSION = 1
    pkg syscall (darwin-386), const BPF_MISC = 7
    pkg syscall (darwin-386), const BPF_MSH = 160
    pkg syscall (darwin-386), const BPF_MUL = 32
    pkg syscall (darwin-386), const BPF_NEG = 128
    pkg syscall (darwin-386), const BPF_OR = 64
    pkg syscall (darwin-386), const BPF_RELEASE = 199606
    pkg syscall (darwin-386), const BPF_RET = 6
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_MISC ideal-int
    pkg syscall (freebsd-arm64), const BPF_MSH = 160
    pkg syscall (freebsd-arm64), const BPF_MSH ideal-int
    pkg syscall (freebsd-arm64), const BPF_MUL = 32
    pkg syscall (freebsd-arm64), const BPF_MUL ideal-int
    pkg syscall (freebsd-arm64), const BPF_NEG = 128
    pkg syscall (freebsd-arm64), const BPF_NEG ideal-int
    pkg syscall (freebsd-arm64), const BPF_OR = 64
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const BPF_MISC ideal-int
    pkg syscall (darwin-arm64), const BPF_MSH = 160
    pkg syscall (darwin-arm64), const BPF_MSH ideal-int
    pkg syscall (darwin-arm64), const BPF_MUL = 32
    pkg syscall (darwin-arm64), const BPF_MUL ideal-int
    pkg syscall (darwin-arm64), const BPF_NEG = 128
    pkg syscall (darwin-arm64), const BPF_NEG ideal-int
    pkg syscall (darwin-arm64), const BPF_OR = 64
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const BPF_MSH = 160 #53466
    pkg syscall (freebsd-riscv64), const BPF_MSH ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_MUL = 32 #53466
    pkg syscall (freebsd-riscv64), const BPF_MUL ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_NEG = 128 #53466
    pkg syscall (freebsd-riscv64), const BPF_NEG ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_OR = 64 #53466
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
Back to top