Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jnbe (0.13 sec)

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

    	SUBQ    $128, inl
    	LEAQ    128(inp), inp
    
    	MOVQ $8, itr1
    	MOVQ $2, itr2
    
    	CMPQ inl, $128
    	JBE  sealAVX2Tail128
    	CMPQ inl, $256
    	JBE  sealAVX2Tail256
    	CMPQ inl, $384
    	JBE  sealAVX2Tail384
    	CMPQ inl, $512
    	JBE  sealAVX2Tail512
    
    	// We have 448 bytes to hash, but main loop hashes 512 bytes at a time - perform some rounds, before the main loop
    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