Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for spdelta (0.62 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    // iterations by the caller to be almost free.
    //
    // It is important to know that the set representation used for
    // startState, endState, and merges can share data for two sets where
    // one is a small delta from the other.  Doing this does require a
    // little care in how sets are updated, both in mergePredecessors, and
    // using its result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_s390x.s

    // p256MulAsm Parameters
    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    #define PL    V30
    #define PH    V31
    /*
     * https://delta.cs.cinvestav.mx/~francisco/arith/julio.pdf "Software Implementation of the NIST Elliptic Curves Over Prime Fields"
     *
     * A = X₁×Z₂²
     * B = Y₁×Z₂³
     * C = X₂×Z₁²-A
     * D = Y₂×Z₁³-B
     * X₃ = D² - 2A×C² - C³
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    		return nil
    	}
    	if high == 0 {
    		return []*instruction{ins}
    	}
    
    	// Split into two additions, if possible.
    	// Do not split SP-writing instructions, as otherwise the recorded SP delta may be wrong.
    	if p.Spadj == 0 && ins.as == AADDI && ins.imm >= -(1<<12) && ins.imm < 1<<12-1 {
    		imm0 := ins.imm / 2
    		imm1 := ins.imm - imm0
    
    		// ADDI $(imm/2), REG, TO
    		// ADDI $(imm-imm/2), TO, TO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top