Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for data_gen (0.14 sec)

  1. cmd/test-utils_test.go

    }
    
    // calculateSignedChunkLength - calculates the length of the overall stream (data + metadata)
    func calculateStreamContentLength(dataLen, chunkSize int64) int64 {
    	if dataLen <= 0 {
    		return 0
    	}
    	chunksCount := dataLen / chunkSize
    	remainingBytes := dataLen % chunkSize
    	var streamLen int64
    	streamLen += chunksCount * calculateSignedChunkLength(chunkSize)
    	if remainingBytes > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_amd64.s

    	PXOR T2, ACC1;\
    	PSHUFD $78, X, T1;\
    	PXOR T1, X;\
    	MOVOU (16*(i*2+1))(pTbl), T1;\
    	PCLMULQDQ $0x00, X, T1;\
    	PXOR T1, ACCM
    
    	MOVQ productTable+0(FP), pTbl
    	MOVQ data_base+8(FP), aut
    	MOVQ data_len+16(FP), autLen
    	MOVQ T+32(FP), tPtr
    
    	PXOR ACC0, ACC0
    	MOVOU bswapMask<>(SB), BSWAP
    	MOVOU gcmPoly<>(SB), POLY
    
    	TESTQ autLen, autLen
    	JEQ dataBail
    
    	CMPQ autLen, $13	// optimize the TLS case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_arm64.s

    	VPMULL2	X.D2, T1.D2, T3.Q1         \
    	VEOR	T3.B16, ACC0.B16, ACC0.B16 \
    	VPMULL	T0.D1, T2.D1, T3.Q1        \
    	VEOR	T3.B16, ACCM.B16, ACCM.B16
    
    	MOVD	productTable+0(FP), pTbl
    	MOVD	data_base+8(FP), aut
    	MOVD	data_len+16(FP), autLen
    	MOVD	T+32(FP), tPtr
    
    	VEOR	ACC0.B16, ACC0.B16, ACC0.B16
    	CBZ	autLen, dataBail
    
    	MOVD	$0xC2, H0
    	LSL	$56, H0
    	VMOV	H0, POLY.D[0]
    	MOVD	$1, H0
    	VMOV	H0, POLY.D[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Yday  int32
    	Isdst int32
    }
    
    type RTCWkAlrm struct {
    	Enabled uint8
    	Pending uint8
    	Time    RTCTime
    }
    
    type BlkpgIoctlArg struct {
    	Op      int32
    	Flags   int32
    	Datalen int32
    	Data    *byte
    }
    
    const (
    	BLKPG_ADD_PARTITION    = 0x1
    	BLKPG_DEL_PARTITION    = 0x2
    	BLKPG_RESIZE_PARTITION = 0x3
    )
    
    const (
    	NETNSA_NONE         = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BRKINT", Const, 0},
    		{"Bind", Func, 0},
    		{"BindToDevice", Func, 0},
    		{"BpfBuflen", Func, 0},
    		{"BpfDatalink", Func, 0},
    		{"BpfHdr", Type, 0},
    		{"BpfHdr.Caplen", Field, 0},
    		{"BpfHdr.Datalen", Field, 0},
    		{"BpfHdr.Hdrlen", Field, 0},
    		{"BpfHdr.Pad_cgo_0", Field, 0},
    		{"BpfHdr.Tstamp", Field, 0},
    		{"BpfHeadercmpl", Func, 0},
    		{"BpfInsn", Type, 0},
    		{"BpfInsn.Code", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top