Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for bytepad (0.13 sec)

  1. src/vendor/golang.org/x/crypto/sha3/shake.go

    	c.initBlock = append(c.initBlock, leftEncode(uint64(len(S)*8))...)
    	c.initBlock = append(c.initBlock, S...)
    	c.Write(bytepad(c.initBlock, c.rate))
    	return &c
    }
    
    // Reset resets the hash to initial state.
    func (c *cshakeState) Reset() {
    	c.state.Reset()
    	c.Write(bytepad(c.initBlock, c.rate))
    }
    
    // Clone returns copy of a cSHAKE context within its current state.
    func (c *cshakeState) Clone() ShakeHash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/objfile.go

    func (r *Reader) uint32At(off uint32) uint32 {
    	b := r.BytesAt(off, 4)
    	return binary.LittleEndian.Uint32(b)
    }
    
    func (r *Reader) int32At(off uint32) int32 {
    	return int32(r.uint32At(off))
    }
    
    func (r *Reader) uint16At(off uint32) uint16 {
    	b := r.BytesAt(off, 2)
    	return binary.LittleEndian.Uint16(b)
    }
    
    func (r *Reader) uint8At(off uint32) uint8 {
    	b := r.BytesAt(off, 1)
    	return b[0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/deadstore_test.go

    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    	"testing"
    )
    
    func TestDeadStore(t *testing.T) {
    	c := testConfig(t)
    	ptrType := c.config.Types.BytePtr
    	t.Logf("PTRTYPE %v", ptrType)
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("start", OpInitMem, types.TypeMem, 0, nil),
    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/AbstractCodecTest.groovy

        }
    
        def "can encode and decode a small long"() {
            expect:
            def bytesA = encode { Encoder encoder ->
                encoder.writeSmallLong(a as long)
            }
            def bytesB = encode { Encoder encoder ->
                encoder.writeSmallLong(b as long)
            }
            decode(bytesA) { Decoder decoder ->
                assert decoder.readSmallLong() == a
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		source = s.expr(n.SrcRType)
    	}
    	if !n.X.Type().IsEmptyInterface() && !n.Type().IsInterface() {
    		byteptr := s.f.Config.Types.BytePtr
    		targetItab = s.expr(n.ITab)
    		// TODO(mdempsky): Investigate whether compiling n.RType could be
    		// better than loading itab.typ.
    		target = s.load(byteptr, s.newValue1I(ssa.OpOffPtr, byteptr, rttype.ITab.OffsetOf("Type"), targetItab))
    	} else {
    		target = s.expr(n.RType)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // We maintain one set of mark bits for allocation and one for
    // marking purposes.
    type markBits struct {
    	bytep *uint8
    	mask  uint8
    	index uintptr
    }
    
    //go:nosplit
    func (s *mspan) allocBitsForIndex(allocBitIndex uintptr) markBits {
    	bytep, mask := s.allocBits.bitp(allocBitIndex)
    	return markBits{bytep, mask, allocBitIndex}
    }
    
    // refillAllocCache takes 8 bytes s.allocBits starting at whichByte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// auxint fields.
    	{name: "ConstBool", aux: "Bool"},     // auxint is 0 for false and 1 for true
    	{name: "ConstString", aux: "String"}, // value is aux.(string)
    	{name: "ConstNil", typ: "BytePtr"},   // nil pointer
    	{name: "Const8", aux: "Int8"},        // auxint is sign-extended 8 bits
    	{name: "Const16", aux: "Int16"},      // auxint is sign-extended 16 bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/runtime/mgcsweep.go

    		// careful with freeindex.
    		obj := uintptr(s.freeindex)
    		if (*s.gcmarkBits.bytep(obj / 8)&^*s.allocBits.bytep(obj / 8))>>(obj%8) != 0 {
    			s.reportZombies()
    		}
    		// Check remaining bytes.
    		for i := obj/8 + 1; i < divRoundUp(uintptr(s.nelems), 8); i++ {
    			if *s.gcmarkBits.bytep(i)&^*s.allocBits.bytep(i) != 0 {
    				s.reportZombies()
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	_ sys.NotInHeap
    	x uint8
    }
    
    // bytep returns a pointer to the n'th byte of b.
    func (b *gcBits) bytep(n uintptr) *uint8 {
    	return addb(&b.x, n)
    }
    
    // bitp returns a pointer to the byte containing bit n and a mask for
    // selecting that bit from *bytep.
    func (b *gcBits) bitp(n uintptr) (bytep *uint8, mask uint8) {
    	return b.bytep(n / 8), 1 << (n % 8)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    (ConstString {str}) && config.PtrSize == 4 && str != "" =>
      (StringMake
        (Addr <typ.BytePtr> {fe.StringData(str)}
          (SB))
        (Const32 <typ.Int> [int32(len(str))]))
    (ConstString {str}) && config.PtrSize == 8 && str != "" =>
      (StringMake
        (Addr <typ.BytePtr> {fe.StringData(str)}
          (SB))
        (Const64 <typ.Int> [int64(len(str))]))
    
    // slice ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top