Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for rsp (0.02 sec)

  1. src/crypto/ecdsa/testdata/SigVer.rsp.bz2

    SigVer.rsp # CAVS 11.0 # "SigVer" information # Curves/SHAs selected: P-192,SHA-1 P-192,SHA-224 P-192,SHA-256 P-192,SHA-384 P-192,SHA-512 P-224,SHA-1 P-224,SHA-224 P-224,SHA-256 P-224,SHA-384 P-224,SHA-512 P-256,SHA-1 P-256,SHA-224 P-256,SHA-256 P-256,SHA-384 P-256,SHA-512 P-384,SHA-1 P-384,SHA-224 P-384,SHA-256 P-384,SHA-384 P-384,SHA-512 P-521,SHA-1 P-521,SHA-224 P-521,SHA-256 P-521,SHA-384 P-521,SHA-512 K-163,SHA-1 K-163,SHA-224 K-163,SHA-256 K-163,SHA-384 K-163,SHA-512 K-233,SHA-1 K-233,SHA-224...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 93.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	FLDPQ   4104(R0), (F1, F2)
    	FLDPQ   -4000(RSP), (F1, F2) // fb833ed1610b40ad
    	FLDPQ	-1024(RSP), (F1, F2) // e10b60ad
    	FLDPQ	(RSP), (F1, F2)      // e10b40ad
    	FLDPQ	16(RSP), (F1, F2)    // e18b40ad
    	FLDPQ	-16(RSP), (F1, F2)   // e18b7fad
    	FLDPQ.W	32(RSP), (F1, F2)    // e10bc1ad
    	FLDPQ.P	32(RSP), (F1, F2)    // e10bc1ac
    	FLDPQ	11(RSP), (F1, F2)    // fb2f0091610b40ad
    	FLDPQ	1024(RSP), (F1, F2)  // fb031091610b40ad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	// the stack (with R29 (aka FP) = RSP), in which case we would
    	// not want to do the subtraction here. But we started out without
    	// any frame pointer, and when we wanted to add it, we didn't
    	// want to break all the assembly doing direct writes to 8(RSP)
    	// to set the first parameter to a called function.
    	// So we decided to write the FP link *below* the stack pointer
    	// (with R29 = RSP - 8 in Go functions).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	MOVQ	BX, bx-(3*8+8)(SP)
    	MOVQ	DX, dx-(2*8+8)(SP)
    	// Save the frame size before we clobber it. Either of the last
    	// saves could clobber this depending on whether there's a saved BP.
    	MOVQ	frameSize-24(FP), DX	// aka -16(RSP) before prologue
    	MOVQ	CX, cx-(1*8+8)(SP)
    	MOVQ	AX, ax-(0*8+8)(SP)
    
    	// Save the argument frame size.
    	MOVQ	DX, frameSize-128(SP)
    
    	// Perform a safe-point check.
    	MOVQ	retpc-8(FP), AX	// Caller's PC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    		switch p.As {
    		case obj.AGETCALLERPC:
    			if cursym.Leaf() {
    				// MOV LR, Rd
    				p.As = AMOV
    				p.From.Type = obj.TYPE_REG
    				p.From.Reg = REG_LR
    			} else {
    				// MOV (RSP), Rd
    				p.As = AMOV
    				p.From.Type = obj.TYPE_MEM
    				p.From.Reg = REG_SP
    			}
    
    		case obj.ACALL, obj.ADUFFZERO, obj.ADUFFCOPY:
    			switch p.To.Type {
    			case obj.TYPE_MEM:
    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