Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Siz (0.01 sec)

  1. src/crypto/aes/gcm_ppc64x.go

    // 16-bytes. It then calculates a new value for hash using the ghash
    // algorithm.
    func (g *gcmAsm) paddedGHASH(hash *[16]byte, data []byte) {
    	if siz := len(data) - (len(data) % gcmBlockSize); siz > 0 {
    		gcmHash(hash[:], &g.productTable, data[:], siz)
    		data = data[siz:]
    	}
    	if len(data) > 0 {
    		var s [16]byte
    		copy(s[:], data)
    		gcmHash(hash[:], &g.productTable, s[:], len(s))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/seh.go

    		s.Set(obj.AttrDuplicateOK, true)
    		s.Set(obj.AttrLocal, true)
    		s.Set(obj.AttrContentAddressable, true)
    		if exceptionHandler != nil {
    			r := obj.Addrel(s)
    			r.Off = int32(len(buf.data) - 4)
    			r.Siz = 4
    			r.Sym = exceptionHandler
    			r.Type = objabi.R_PEIMAGEOFF
    		}
    		ctxt.SEHSyms = append(ctxt.SEHSyms, s)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top