Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for chunkOf (0.11 sec)

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

    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:
    	// Hash in 16 byte chunks
    	CMPQ itr2, $16
    	JB   hashADTail
    	polyAdd(0(adp))
    	LEAQ (1*16)(adp), adp
    	SUBQ $16, itr2
    	polyMul
    	JMP  hashADLoop
    
    hashADTail:
    	CMPQ itr2, $0
    	JE   hashADDone
    
    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/reflect/value.go

    	}
    	nout := t.NumOut()
    
    	// Register argument space.
    	var regArgs abi.RegArgs
    
    	// Compute frame type.
    	frametype, framePool, abid := funcLayout(t, rcvrtype)
    
    	// Allocate a chunk of memory for frame if needed.
    	var stackArgs unsafe.Pointer
    	if frametype.Size() != 0 {
    		if nout == 0 {
    			stackArgs = framePool.Get().(unsafe.Pointer)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top