Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for blockSize (0.13 sec)

  1. src/archive/tar/writer_test.go

    					testReadFrom{fileOps{
    						int64(1e10 - blockSize),
    						strings.Repeat("\x00", blockSize-100) + strings.Repeat("0123456789", 10),
    						int64(1e10 - blockSize),
    						strings.Repeat("\x00", blockSize-100) + strings.Repeat("0123456789", 10),
    						int64(1e10 - blockSize),
    						strings.Repeat("\x00", blockSize-100) + strings.Repeat("0123456789", 10),
    						int64(1e10 - blockSize),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  2. src/crypto/tls/ticket.go

    	if len(ticketKeys) == 0 {
    		return nil, errors.New("tls: internal error: session ticket keys unavailable")
    	}
    
    	encrypted := make([]byte, aes.BlockSize+len(state)+sha256.Size)
    	iv := encrypted[:aes.BlockSize]
    	ciphertext := encrypted[aes.BlockSize : len(encrypted)-sha256.Size]
    	authenticated := encrypted[:len(encrypted)-sha256.Size]
    	macBytes := encrypted[len(encrypted)-sha256.Size:]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/runtime/gc_test.go

    		ptrs[i] = new(obj)
    	}
    
    	writeBarrierBenchmark(b, func() {
    		const blockSize = 1024
    		var pos int
    		for i := 0; i < b.N; i += blockSize {
    			// Rotate block.
    			block := ptrs[pos : pos+blockSize]
    			first := block[0]
    			copy(block, block[1:])
    			block[blockSize-1] = first
    
    			pos += blockSize
    			if pos+blockSize > len(ptrs) {
    				pos = 0
    			}
    
    			runtime.Gosched()
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2.go

    	}
    
    	level := br.ReadBits(8)
    	if level < '1' || level > '9' {
    		return StructuralError("invalid compression level")
    	}
    
    	bz2.fileCRC = 0
    	bz2.blockSize = 100 * 1000 * (level - '0')
    	if bz2.blockSize > len(bz2.tt) {
    		bz2.tt = make([]uint32, bz2.blockSize)
    	}
    	return nil
    }
    
    func (bz2 *reader) Read(buf []byte) (n int, err error) {
    	if bz2.eof {
    		return 0, io.EOF
    	}
    
    	if !bz2.setupDone {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]int8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]int8
    	Geniv       [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]int8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]int8
    	Geniv       [64]int8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]uint8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]uint8
    	Geniv       [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]uint8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]uint8
    	Geniv       [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]uint8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]uint8
    	Geniv       [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go

    }
    
    type CryptoReportHash struct {
    	Type       [64]uint8
    	Blocksize  uint32
    	Digestsize uint32
    }
    
    type CryptoReportCipher struct {
    	Type        [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    }
    
    type CryptoReportBlkCipher struct {
    	Type        [64]uint8
    	Geniv       [64]uint8
    	Blocksize   uint32
    	Min_keysize uint32
    	Max_keysize uint32
    	Ivsize      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top