Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Vector3 (0.13 sec)

  1. src/runtime/rand.go

    	"unsafe"
    	_ "unsafe" // for go:linkname
    )
    
    // OS-specific startup can set startupRand if the OS passes
    // random data to the process at startup time.
    // For example Linux passes 16 bytes in the auxv vector.
    var startupRand []byte
    
    // globalRand holds the global random state.
    // It is only used at startup and for creating new m's.
    // Otherwise the per-m random state should be used
    // by calling goodrand.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    binary is setuid/setgid or executed with setuid/setgid-like properties, in order
    to prevent dangerous behaviors. On Linux this is determined by checking for the
    AT_SECURE flag in the auxiliary vector, on the BSDs and Solaris/Illumos it is
    determined by checking the issetugid syscall, and on AIX it is determined by
    checking if the uid/gid match the effective uid/gid.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    func (bt *BitIntType) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sBitIntType: Signed: %t\n%s", indent, "", field,
    		bt.Signed,
    		bt.Size.goString(indent+2, "Size: "))
    }
    
    // VectorType is a vector type.
    type VectorType struct {
    	Dimension AST
    	Base      AST
    }
    
    func (vt *VectorType) print(ps *printState) {
    	ps.inner = append(ps.inner, vt)
    	ps.print(vt.Base)
    	if len(ps.inner) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    		fn:         fn,
    		f:          f,
    		vars:       vars,
    		idx:        idx,
    		stkptrsize: stkptrsize,
    	}
    
    	// Significant sources of allocation are kept in the ssa.Cache
    	// and reused. Surprisingly, the bit vectors themselves aren't
    	// a major source of allocation, but the liveness maps are.
    	if lc, _ := f.Cache.Liveness.(*livenessFuncCache); lc == nil {
    		// Prep the cache so liveness can fill it later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    
    	return arr
    }
    
    // vectorType parses:
    //
    //	<vector-type> ::= Dv <number> _ <type>
    //	              ::= Dv _ <expression> _ <type>
    func (st *state) vectorType(isCast bool) AST {
    	if len(st.str) == 0 {
    		st.fail("expected vector dimension")
    	}
    
    	var dim AST
    	if st.str[0] == '_' {
    		st.advance(1)
    		dim = st.expression()
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Count   uint8
    }
    
    type HDDriveID struct {
    	Config         uint16
    	Cyls           uint16
    	Reserved2      uint16
    	Heads          uint16
    	Track_bytes    uint16
    	Sector_bytes   uint16
    	Sectors        uint16
    	Vendor0        uint16
    	Vendor1        uint16
    	Vendor2        uint16
    	Serial_no      [20]uint8
    	Buf_type       uint16
    	Buf_size       uint16
    	Ecc_bytes      uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top