Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for is63bit (0.14 sec)

  1. src/internal/syscall/unix/siginfo_linux.go

    	Signo       int32
    	siErrnoCode                // Two int32 fields, swapped on MIPS.
    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    	// Possible values for SiginfoChild.Code field.
    	_CLD_EXITED    int32 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/asmb.go

    func writePlan9Header(buf *OutBuf, magic uint32, entry int64, is64Bit bool) {
    	if is64Bit {
    		magic |= 0x00008000
    	}
    	buf.Write32b(magic)
    	buf.Write32b(uint32(Segtext.Filelen))
    	buf.Write32b(uint32(Segdata.Filelen))
    	buf.Write32b(uint32(Segdata.Length - Segdata.Filelen))
    	buf.Write32b(uint32(symSize))
    	if is64Bit {
    		buf.Write32b(uint32(entry &^ 0x80000000))
    	} else {
    		buf.Write32b(uint32(entry))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_update_uuid.go

    	if _, err := io.Copy(outf, exef); err != nil {
    		return err
    	}
    
    	// Locate the portion of the binary containing the load commands.
    	cmdOffset := unsafe.Sizeof(exem.FileHeader)
    	if is64bit := exem.Magic == macho.Magic64; is64bit {
    		// mach_header_64 has one extra uint32.
    		cmdOffset += unsafe.Sizeof(exem.Magic)
    	}
    	if _, err := outf.Seek(int64(cmdOffset), 0); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/math/rand/gen_cooked.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // This program computes the value of rngCooked in rng.go,
    // which is used for seeding all instances of rand.Source.
    // a 64bit and a 63bit version of the array is printed to
    // the standard output.
    
    package main
    
    import "fmt"
    
    const (
    	length = 607
    	tap    = 273
    	mask   = (1 << 63) - 1
    	a      = 48271
    	m      = (1 << 31) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top