Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 182 for blockSize (0.26 sec)

  1. src/cmd/internal/notsha256/sha256.go

    // (and in that mode the real sha256 uses cgo).
    package notsha256
    
    import (
    	"encoding/binary"
    	"hash"
    )
    
    // The size of a checksum in bytes.
    const Size = 32
    
    // The blocksize in bytes.
    const BlockSize = 64
    
    const (
    	chunk = 64
    	init0 = 0x6A09E667
    	init1 = 0xBB67AE85
    	init2 = 0x3C6EF372
    	init3 = 0xA54FF53A
    	init4 = 0x510E527F
    	init5 = 0x9B05688C
    	init6 = 0x1F83D9AB
    	init7 = 0x5BE0CD19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:17 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. src/sort/zsortfunc.go

    	}
    }
    
    func stable_func(data lessSwap, n int) {
    	blockSize := 20 // must be > 0
    	a, b := 0, blockSize
    	for b <= n {
    		insertionSort_func(data, a, b)
    		a = b
    		b += blockSize
    	}
    	insertionSort_func(data, a, n)
    
    	for blockSize < n {
    		a, b = 0, 2*blockSize
    		for b <= n {
    			symMerge_func(data, a, a+blockSize, b)
    			a = b
    			b += 2 * blockSize
    		}
    		if m := a + blockSize; m < n {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  3. src/image/jpeg/writer_test.go

    // column and first row.
    var zigzag = [blockSize]int{
    	0, 1, 5, 6, 14, 15, 27, 28,
    	2, 4, 7, 13, 16, 26, 29, 42,
    	3, 8, 12, 17, 25, 30, 41, 43,
    	9, 11, 18, 24, 31, 40, 44, 53,
    	10, 19, 23, 32, 39, 45, 52, 54,
    	20, 22, 33, 38, 46, 51, 55, 60,
    	21, 34, 37, 47, 50, 56, 59, 61,
    	35, 36, 48, 49, 57, 58, 62, 63,
    }
    
    func TestZigUnzig(t *testing.T) {
    	for i := 0; i < blockSize; i++ {
    		if unzig[zigzag[i]] != i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  4. internal/disk/directio_darwin.go

    	fd := f.Fd()
    	_, err := unix.FcntlInt(fd, unix.F_NOCACHE, 0)
    	return err
    }
    
    // AlignedBlock - pass through to directio implementation.
    func AlignedBlock(blockSize int) []byte {
    	return directio.AlignedBlock(blockSize)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 17 14:31:36 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. internal/disk/directio_unix.go

    	}
    	flag &= ^(syscall.O_DIRECT)
    	_, err = unix.FcntlInt(fd, unix.F_SETFL, flag)
    	return err
    }
    
    // AlignedBlock - pass through to directio implementation.
    func AlignedBlock(blockSize int) []byte {
    	return directio.AlignedBlock(blockSize)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 17 14:31:36 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. internal/config/cache/help.go

    			Optional:    true,
    		},
    		config.HelpKV{
    			Key:         BlockSize,
    			Type:        "string",
    			Description: "cache all objects below the specified block size" + defaultHelpPostfix(BlockSize),
    			Optional:    true,
    		},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:57:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/archive/tar/format.go

    )
    
    // blockPadding computes the number of bytes needed to pad offset up to the
    // nearest block edge where 0 <= n < blockSize.
    func blockPadding(offset int64) (n int64) {
    	return -offset & (blockSize - 1)
    }
    
    var zeroBlock block
    
    type block [blockSize]byte
    
    // Convert block to any number of formats.
    func (b *block) toV7() *headerV7       { return (*headerV7)(b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/crypto/aes/ctr_s390x.go

    }
    
    // NewCTR returns a Stream which encrypts/decrypts using the AES block
    // cipher in counter mode. The length of iv must be the same as [BlockSize].
    func (c *aesCipherAsm) NewCTR(iv []byte) cipher.Stream {
    	if len(iv) != BlockSize {
    		panic("cipher.NewCTR: IV length must equal block size")
    	}
    	var ac aesctr
    	ac.block = c
    	ac.ctr[0] = byteorder.BeUint64(iv[0:]) // high bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/hash/fnv/fnv.go

    func (s *sum128) Size() int  { return 16 }
    func (s *sum128a) Size() int { return 16 }
    
    func (s *sum32) BlockSize() int   { return 1 }
    func (s *sum32a) BlockSize() int  { return 1 }
    func (s *sum64) BlockSize() int   { return 1 }
    func (s *sum64a) BlockSize() int  { return 1 }
    func (s *sum128) BlockSize() int  { return 1 }
    func (s *sum128a) BlockSize() int { return 1 }
    
    func (s *sum32) Sum(in []byte) []byte {
    	v := uint32(*s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/slices/zsortordered.go

    func stableOrdered[E cmp.Ordered](data []E, n int) {
    	blockSize := 20 // must be > 0
    	a, b := 0, blockSize
    	for b <= n {
    		insertionSortOrdered(data, a, b)
    		a = b
    		b += blockSize
    	}
    	insertionSortOrdered(data, a, n)
    
    	for blockSize < n {
    		a, b = 0, 2*blockSize
    		for b <= n {
    			symMergeOrdered(data, a, a+blockSize, b)
    			a = b
    			b += 2 * blockSize
    		}
    		if m := a + blockSize; m < n {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top