Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mpz_add (0.17 sec)

  1. misc/cgo/gmp/gmp.go

    	}
    	z.init = false
    }
    
    /*
     * arithmetic
     */
    
    // Add sets z = x + y and returns z.
    func (z *Int) Add(x, y *Int) *Int {
    	x.doinit()
    	y.doinit()
    	z.doinit()
    	C.mpz_add(&z.i[0], &x.i[0], &y.i[0])
    	return z
    }
    
    // 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])
    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. tensorflow/c/eager/c_api_unified_experimental_test.cc

      auto* add_op = TF_NewAbstractOp(graph_ctx);
      TF_AbstractOpSetOpType(add_op, "Add", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
      TF_AbstractOpSetOpName(add_op, "my_add", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
    
      // Build inputs and outputs.
      TF_AbstractTensor* inputs[2] = {placeholder_t, placeholder_t};
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (darwin-386), const BIOCVERSION = 1074020977
    pkg syscall (darwin-386), const BPF_A = 16
    pkg syscall (darwin-386), const BPF_ABS = 32
    pkg syscall (darwin-386), const BPF_ADD = 0
    pkg syscall (darwin-386), const BPF_ALIGNMENT = 4
    pkg syscall (darwin-386), const BPF_ALU = 4
    pkg syscall (darwin-386), const BPF_AND = 80
    pkg syscall (darwin-386), const BPF_B = 16
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const BPF_A ideal-int
    pkg syscall (freebsd-arm64), const BPF_ABS = 32
    pkg syscall (freebsd-arm64), const BPF_ABS ideal-int
    pkg syscall (freebsd-arm64), const BPF_ADD = 0
    pkg syscall (freebsd-arm64), const BPF_ADD ideal-int
    pkg syscall (freebsd-arm64), const BPF_ALIGNMENT = 8
    pkg syscall (freebsd-arm64), const BPF_ALIGNMENT ideal-int
    pkg syscall (freebsd-arm64), const BPF_ALU = 4
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const BPF_A ideal-int
    pkg syscall (darwin-arm64), const BPF_ABS = 32
    pkg syscall (darwin-arm64), const BPF_ABS ideal-int
    pkg syscall (darwin-arm64), const BPF_ADD = 0
    pkg syscall (darwin-arm64), const BPF_ADD ideal-int
    pkg syscall (darwin-arm64), const BPF_ALIGNMENT = 4
    pkg syscall (darwin-arm64), const BPF_ALIGNMENT ideal-int
    pkg syscall (darwin-arm64), const BPF_ALU = 4
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const BPF_ABS = 32 #53466
    pkg syscall (freebsd-riscv64), const BPF_ABS ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_ADD = 0 #53466
    pkg syscall (freebsd-riscv64), const BPF_ADD ideal-int #53466
    pkg syscall (freebsd-riscv64), const BPF_ALIGNMENT = 8 #53466
    pkg syscall (freebsd-riscv64), const BPF_ALIGNMENT ideal-int #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