Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for arithmetic (0.1 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	return OPVCC(o, xo, 0, rc)
    }
    
    /* Generate MD-form opcode */
    func OPMD(o, xo, rc uint32) uint32 {
    	return o<<26 | xo<<2 | rc&1
    }
    
    /* the order is dest, a/s, b/imm for both arithmetic and logical operations. */
    func AOP_RRR(op uint32, d uint32, a uint32, b uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | (b&31)<<11
    }
    
    /* VX-form 2-register operands, r/none/r */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/fiat/p521_fiat64.go

    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    )
    
    var optab = []Optab{
    	/* struct Optab:
    	OPCODE, from, prog->reg, from3, to, to2, type,size,param,flag,scond */
    	{obj.ATEXT, C_ADDR, C_NONE, C_NONE, C_TEXTSIZE, C_NONE, 0, 0, 0, 0, 0},
    
    	/* arithmetic operations */
    	{AADD, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADD, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADC, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top