Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for cmovnz (0.09 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	// long then it is easiest to insert the 1 before the message
    	// block is split into 26-bit limbs. If, on the other hand, the
    	// final message block is 16 bytes long then we append the 1 bit
    	// after expansion as normal.
    	MOVBZ  $1, R0
    	MOVD   $-16(R3), R3   // index of byte in last block to insert 1 at (could be 16)
    	CMPBEQ R3, $16, 2(PC) // skip the insertion if the final block is 16 bytes long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/a.out.go

    	C_BITCON   // bitfield and logical immediate masks
    	C_ADDCON2  // 24-bit constant
    	C_LCON     // 32-bit constant
    	C_MOVCON2  // a constant that can be loaded with one MOVZ/MOVN and one MOVK
    	C_MOVCON3  // a constant that can be loaded with one MOVZ/MOVN and two MOVKs
    	C_VCON     // 64-bit constant
    	C_FCON     // floating-point constant
    	C_VCONADDR // 64-bit memory address
    
    	C_AACON  // ADDCON offset in auto constant $a(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    				p.From.Type = obj.TYPE_MEM
    				p.From.Sym = ctxt.Float64Sym(f64)
    				p.From.Name = obj.NAME_EXTERN
    				p.From.Offset = 0
    			}
    		}
    
    	case AMOVW, AMOVWZ:
    		// Note, for backwards compatibility, MOVW $const, Rx and MOVWZ $const, Rx are identical.
    		if p.From.Type == obj.TYPE_CONST && p.From.Offset != 0 && p.From.Offset&0xFFFF == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/scalar_fiat.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p256_fiat64.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p224_fiat64.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    #endif						\
    	/* copy return values back */		\
    	MOVD	regArgs+40(FP), R20;		\
    	BL	runtimeĀ·spillArgs(SB);			\
    	MOVD	stackArgsType+0(FP), R7;		\
    	MOVD	stackArgs+16(FP), R3;			\
    	MOVWZ	stackArgsSize+24(FP), R4;			\
    	MOVWZ	stackRetOffset+28(FP), R6;		\
    	ADD	$FIXED_FRAME, R1, R5;		\
    	ADD	R6, R5; 			\
    	ADD	R6, R3;				\
    	SUB	R6, R4;				\
    	BL	callRet<>(SB);			\
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top