Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 564 for xoffset (0.61 sec)

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

    //sys	utimes(path string, times *[2]Timeval) (err error)
    
    //sys	pread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64
    //sys	Truncate(path string, length int64) (err error) = SYS_TRUNCATE64
    //sys	Ftruncate(fd int, length int64) (err error) = SYS_FTRUNCATE64
    
    func Fadvise(fd int, offset int64, length int64, advice int) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. src/debug/dwarf/open.go

    		if len(d.info) < 14 {
    			return nil, DecodeError{"info", Offset(len(d.info)), "too short"}
    		}
    		offset = 12
    	}
    	// Fetch the version, a tiny 16-bit number (1, 2, 3, 4, 5).
    	x, y := d.info[offset], d.info[offset+1]
    	switch {
    	case x == 0 && y == 0:
    		return nil, DecodeError{"info", 4, "unsupported version 0"}
    	case x == 0:
    		d.bigEndian = true
    		d.order = binary.BigEndian
    	case y == 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-monolithic/src/src.h

    #ifndef PROJECT_HEADER_${sourceIdx}_H
    #define PROJECT_HEADER_${sourceIdx}_H
    
    <% sourceIdx.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    
    <% functionCount.times { %>
    int C_function_${(it+1)+offset} (); 
    int CPP_function_${(it+1)+offset} (); 
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 287 bytes
    - Viewed (0)
  4. src/syscall/mksysnum_linux.pl

    package syscall
    
    const(
    EOF
    
    my $offset = 0;
    
    sub fmt {
    	my ($name, $num) = @_;
    	if($num > 999){
    		# ignore deprecated syscalls that are no longer implemented
    		# https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/include/uapi/asm-generic/unistd.h?id=refs/heads/master#n716
    		return;
    	}
    	$name =~ y/a-z/A-Z/;
    	$num = $num + $offset;
    	print "	SYS_$name = $num;\n";
    }
    
    my $prev;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/reparse_windows.go

    	ReparseDataLength uint16
    	Reserved          uint16
    }
    
    type SymbolicLinkReparseBuffer struct {
    	// The integer that contains the offset, in bytes,
    	// of the substitute name string in the PathBuffer array,
    	// computed as an offset from byte 0 of PathBuffer. Note that
    	// this offset must be divided by 2 to get the array index.
    	SubstituteNameOffset uint16
    	// The integer that contains the length, in bytes, of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go

    //sys	pread(fd int, p []byte, offset int64) (n int, err error) = SYS_PREAD64
    //sys	pwrite(fd int, p []byte, offset int64) (n int, err error) = SYS_PWRITE64
    //sys	Renameat(olddirfd int, oldpath string, newdirfd int, newpath string) (err error)
    //sys	Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) = SYS__NEWSELECT
    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = SYS_SENDFILE64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go

    //go:build linux && gccgo && arm
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func seek(fd int, offset int64, whence int) (int64, syscall.Errno) {
    	var newoffset int64
    	offsetLow := uint32(offset & 0xffffffff)
    	offsetHigh := uint32((offset >> 32) & 0xffffffff)
    	_, _, err := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offsetHigh), uintptr(offsetLow), uintptr(unsafe.Pointer(&newoffset)), uintptr(whence), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 596 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/iexport.go

    //             Name   stringOff
    //             Offset declOff
    //         }
    //     }
    //
    //     Fingerprint [8]byte
    //
    // uvarint means a uint64 written out using uvarint encoding.
    //
    // []T means a uvarint followed by that many T objects. In other
    // words:
    //
    //     Len   uvarint
    //     Elems [Len]T
    //
    // stringOff means a uvarint that indicates an offset within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/dwtest/dwtest.go

    		}
    	}
    }
    
    // Given a DIE offset, return the previously read dwarf.Entry, or nil
    func (ex *Examiner) EntryFromOffset(off dwarf.Offset) *dwarf.Entry {
    	if idx, found := ex.idxByOffset[off]; found && idx != -1 {
    		return ex.entryFromIdx(idx)
    	}
    	return nil
    }
    
    // Return the ID that Examiner uses to refer to the DIE at offset off
    func (ex *Examiner) IdxFromOffset(off dwarf.Offset) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. test/typeparam/issue47716.go

    }
    
    // size returns the alignment of type T
    func align[T any](x T) uintptr {
    	return unsafe.Alignof(x)
    }
    
    type Tstruct[T any] struct {
    	f1 T
    	f2 int
    }
    
    // offset returns the offset of field f2 in the generic type Tstruct
    func (r *Tstruct[T]) offset() uintptr {
    	return unsafe.Offsetof(r.f2)
    }
    
    func main() {
    	v1 := int(5)
    	if got, want := size(v1), unsafe.Sizeof(v1); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top