Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JNE (0.04 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    TEXT polyHashADInternal<>(SB), NOSPLIT, $0
    	// adp points to beginning of additional data
    	// itr2 holds ad length
    	XORQ acc0, acc0
    	XORQ acc1, acc1
    	XORQ acc2, acc2
    	CMPQ itr2, $13
    	JNE  hashADLoop
    
    openFastTLSAD:
    	// Special treatment for the TLS case of 13 bytes
    	MOVQ (adp), acc0
    	MOVQ 5(adp), acc1
    	SHRQ $24, acc1
    	MOVQ $1, acc2
    	polyMul
    	RET
    
    hashADLoop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. 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