Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ADCS (0.03 sec)

  1. src/crypto/internal/nistec/p256_asm_arm64.s

    	MOVD	$0, acc7
    	// *2
    	ADDS	acc1, acc1
    	ADCS	acc2, acc2
    	ADCS	acc3, acc3
    	ADCS	acc4, acc4
    	ADCS	acc5, acc5
    	ADCS	acc6, acc6
    	ADC	$0, acc7
    	// Missing products
    	MUL	x0, x0, acc0
    	UMULH	x0, x0, t0
    	ADDS	t0, acc1, acc1
    
    	MUL	x1, x1, t0
    	ADCS	t0, acc2, acc2
    	UMULH	x1, x1, t1
    	ADCS	t1, acc3, acc3
    
    	MUL	x2, x2, t0
    	ADCS	t0, acc4, acc4
    	UMULH	x2, x2, t1
    	ADCS	t1, acc5, acc5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. test/codegen/mathbits.go

    // --------------- //
    
    func Add(x, y, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    	// ppc64x: "ADDC", "ADDE", "ADDZE"
    	// s390x:"ADDE","ADDC\t[$]-1,"
    	// riscv64: "ADD","SLTU"
    	return bits.Add(x, y, ci)
    }
    
    func AddC(x, ci uint) (r, co uint) {
    	// arm64:"ADDS","ADCS","ADC",-"ADD\t",-"CMP"
    	// amd64:"NEGL","ADCQ","SBBQ","NEGQ"
    	// loong64: "ADDV", "SGTU"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		prefreg        = regInfo{inputs: []regMask{gpspsbg}}
    	)
    	ops := []opData{
    		// binary ops
    		{name: "ADCSflags", argLength: 3, reg: gp2flags1flags, typ: "(UInt64,Flags)", asm: "ADCS", commutative: true}, // arg0+arg1+carry, set flags.
    		{name: "ADCzerocarry", argLength: 1, reg: gp0flags1, typ: "UInt64", asm: "ADC"},                               // ZR+ZR+carry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top