Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 227 for quint8 (0.09 sec)

  1. src/crypto/ed25519/ed25519.go

    	domPrefixPure = ""
    	// domPrefixPh is dom2(phflag=1) for Ed25519ph. It must be followed by the
    	// uint8-length prefixed context.
    	domPrefixPh = "SigEd25519 no Ed25519 collisions\x01"
    	// domPrefixCtx is dom2(phflag=0) for Ed25519ctx. It must be followed by the
    	// uint8-length prefixed context.
    	domPrefixCtx = "SigEd25519 no Ed25519 collisions\x00"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal.go

    	n := lengthLength(i)
    
    	for ; n > 0; n-- {
    		dst = append(dst, byte(i>>uint((n-1)*8)))
    	}
    
    	return dst
    }
    
    func lengthLength(i int) (numBytes int) {
    	numBytes = 1
    	for i > 255 {
    		numBytes++
    		i >>= 8
    	}
    	return
    }
    
    func appendTagAndLength(dst []byte, t tagAndLength) []byte {
    	b := uint8(t.class) << 6
    	if t.isCompound {
    		b |= 0x20
    	}
    	if t.tag >= 31 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/runtime/debuglog.go

    			// somehow.
    			throw("record wrapped around")
    		}
    	}
    }
    
    //go:nosplit
    func (l *debugLogWriter) writeFrameAt(pos, size uint64) bool {
    	l.data.b[pos%uint64(len(l.data.b))] = uint8(size)
    	l.data.b[(pos+1)%uint64(len(l.data.b))] = uint8(size >> 8)
    	return size <= 0xFFFF
    }
    
    //go:nosplit
    func (l *debugLogWriter) writeSync(tick, nano uint64) {
    	l.tick, l.nano = tick, nano
    	l.ensure(debugLogHeaderSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. src/internal/trace/event/go122/event.go

    	},
    	EvGoroutineStackFree: event.Spec{
    		Name:         "GoroutineStackFree",
    		Args:         []string{"dt", "id"},
    		IsTimedEvent: true,
    		Experiment:   AllocFree,
    	},
    }
    
    type GoStatus uint8
    
    const (
    	GoBad GoStatus = iota
    	GoRunnable
    	GoRunning
    	GoSyscall
    	GoWaiting
    )
    
    func (s GoStatus) String() string {
    	switch s {
    	case GoRunnable:
    		return "Runnable"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/regexp/syntax/regexp.go

    	Cap      int        // capturing index, for OpCapture
    	Name     string     // capturing name, for OpCapture
    }
    
    //go:generate stringer -type Op -trimprefix Op
    
    // An Op is a single regular expression operator.
    type Op uint8
    
    // Operators are listed in precedence order, tightest binding to weakest.
    // Character class operators are listed simplest to most complex
    // (OpLiteral, OpCharClass, OpAnyCharNotNL, OpAnyChar).
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/encoding/xml/xml_test.go

    const testScalarsInput = `<allscalars>
    	<True1>true</True1>
    	<True2>1</True2>
    	<False1>false</False1>
    	<False2>0</False2>
    	<Int>1</Int>
    	<Int8>-2</Int8>
    	<Int16>3</Int16>
    	<Int32>-4</Int32>
    	<Int64>5</Int64>
    	<Uint>6</Uint>
    	<Uint8>7</Uint8>
    	<Uint16>8</Uint16>
    	<Uint32>9</Uint32>
    	<Uint64>10</Uint64>
    	<Uintptr>11</Uintptr>
    	<Float>12.0</Float>
    	<Float32>13.0</Float32>
    	<Float64>14.0</Float64>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "AtomicAnd8", argLength: 3, typ: "(Uint8, Mem)", hasSideEffects: true},              // *arg0 &= arg1.  arg2=memory.  Returns old contents of *arg0 and new memory.
    	{name: "AtomicOr8", argLength: 3, typ: "(Uint8, Mem)", hasSideEffects: true},               // *arg0 |= arg1.  arg2=memory.  Returns old contents of *arg0 and new memory.
    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/runtime2.go

    //   - github.com/creativeprojects/go-selfupdate
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname goarm
    var (
    	goarm       uint8
    	goarmsoftfp uint8
    )
    
    // Set by the linker so the runtime can determine the buildmode.
    var (
    	islibrary bool // -buildmode=c-shared
    	isarchive bool // -buildmode=c-archive
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. src/unicode/utf8/utf8.go

    }
    
    // acceptRange gives the range of valid values for the second byte in a UTF-8
    // sequence.
    type acceptRange struct {
    	lo uint8 // lowest value for second byte.
    	hi uint8 // highest value for second byte.
    }
    
    // acceptRanges has size 16 to avoid bounds checks in the code that uses it.
    var acceptRanges = [16]acceptRange{
    	0: {locb, hicb},
    	1: {0xA0, hicb},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/fmt/print.go

    				p.badVerb(verb)
    			}
    		}
    	case reflect.Bool:
    		p.fmtBool(f.Bool(), verb)
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		p.fmtInteger(uint64(f.Int()), signed, verb)
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
    		p.fmtInteger(f.Uint(), unsigned, verb)
    	case reflect.Float32:
    		p.fmtFloat(f.Float(), 32, verb)
    	case reflect.Float64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top