Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for INITIALIZING (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	raw    RawSockaddrIUCV
    }
    
    func (sa *SockaddrIUCV) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Family = AF_IUCV
    	// These are EBCDIC encoded by the kernel, but we still need to pad them
    	// with blanks. Initializing with blanks allows the caller to feed in either
    	// a padded or an unpadded string.
    	for i := 0; i < 8; i++ {
    		sa.raw.Nodeid[i] = ' '
    		sa.raw.User_id[i] = ' '
    		sa.raw.Name[i] = ' '
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    // to the resulting allocation.
    func regalloc(f *Func) {
    	var s regAllocState
    	s.init(f)
    	s.regalloc(f)
    	s.close()
    }
    
    type register uint8
    
    const noRegister register = 255
    
    // For bulk initializing
    var noRegisters [32]register = [32]register{
    	noRegister, noRegister, noRegister, noRegister, noRegister, noRegister, noRegister, noRegister,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top