Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for JNE (0.02 sec)

  1. src/crypto/sha1/sha1block_amd64.s

    	LEAQ    (2*4*80+32)(SP), R15 \
    	PRECALC \ // Precalc WK for first 2 blocks
    	XCHGQ   R15, R14 \
    loop: \  // this loops is unrolled
    	CMPQ    R10, R8 \ // we use R8 value (set below) as a signal of a last block
    	JNE	begin \
    	VZEROUPPER \
    	RET \
    begin: \
    	CALC_0 \
    	CALC_1 \
    	CALC_2 \
    	CALC_3 \
    	CALC_4 \
    	CALC_5 \
    	CALC_6 \
    	CALC_7 \
    	CALC_8 \
    	CALC_9 \
    	CALC_10 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    var isCondJmp = [maxOp + 1]bool{
    	JA:  true,
    	JAE: true,
    	JB:  true,
    	JBE: true,
    	JE:  true,
    	JG:  true,
    	JGE: true,
    	JL:  true,
    	JLE: true,
    	JNE: true,
    	JNO: true,
    	JNP: true,
    	JNS: true,
    	JO:  true,
    	JP:  true,
    	JS:  true,
    }
    
    // isLoop records the loop operators.
    var isLoop = [maxOp + 1]bool{
    	LOOP:   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_amd64.s

    	// add current hash values with previously saved
    	PADDD		abefSave, state0
    	PADDD		cdghSave, state1
    
    	// advance data pointer; loop until buffer empty
    	ADDQ		$64, dataPtr
    	CMPQ		numBytes, dataPtr
    	JNE		roundLoop
    
    	// write hash values back in the correct order
    	PSHUFD		$0x1b, state0, state0		// FEBA
    	PSHUFD		$0xb1, state1, state1		// DCHG
    	VMOVDQA		state0, m4
    	PBLENDW		$0xf0, state1, state0		// DCBA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// TODO: have these return flags instead of bool.  The current system generates:
    		//    CMPXCHGQ ...
    		//    SETEQ AX
    		//    CMPB  AX, $0
    		//    JNE ...
    		// instead of just
    		//    CMPXCHGQ ...
    		//    JEQ ...
    		// but we can't do that because memory-using ops can't generate flags yet
    		// (flagalloc wants to move flag-generating instructions around).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
Back to top