Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 142 for Devoffset (0.15 sec)

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

    	"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)
    	return newoffset, err
    }
    
    func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.Errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 986 bytes
    - Viewed (0)
  2. src/syscall/syscall_linux_arm.go

    }
    
    // Underlying system call writes to newoffset via pointer.
    // Implemented in assembly to avoid allocation.
    func seek(fd int, offset int64, whence int) (newoffset int64, err Errno)
    
    func Seek(fd int, offset int64, whence int) (newoffset int64, err error) {
    	newoffset, errno := seek(fd, offset, whence)
    	if errno != 0 {
    		return 0, errno
    	}
    	return newoffset, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/reflect/export_test.go

    	}
    	// Extract size information.
    	argSize = abid.stackCallArgsSize
    	retOffset = abid.retOffset
    	frametype = toType(ft)
    
    	// Expand stack pointer bitmap into byte-map.
    	for i := uint32(0); i < abid.stackPtrs.n; i++ {
    		stack = append(stack, abid.stackPtrs.data[i/8]>>(i%8)&1)
    	}
    
    	// Expand register pointer bitmaps into byte-maps.
    	bool2byte := func(b bool) byte {
    		if b {
    			return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go

    // license that can be found in the LICENSE file.
    
    //go:build arm && gc && linux
    
    package unix
    
    import "syscall"
    
    // Underlying system call writes to newoffset via pointer.
    // Implemented in assembly to avoid allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 411 bytes
    - Viewed (0)
  5. src/syscall/asm_linux_arm.s

    //
    // System calls for arm, Linux
    //
    
    #define SYS__LLSEEK 140  /* from zsysnum_linux_arm.go */
    // func seek(fd int, offset int64, whence int) (newoffset int64, errno int)
    // Implemented in assembly to avoid allocation when
    // taking the address of the return value newoffset.
    // Underlying system call is
    //	llseek(int fd, int offhi, int offlo, int64 *result, int whence)
    TEXT ·seek(SB),NOSPLIT,$0-28
    	BL	runtime·entersyscall(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/zstd/block.go

    		return nil
    	}
    
    	return r.execSeqs(data, off, litbuf, seqCount)
    }
    
    // seqCode is the kind of sequence codes we have to handle.
    type seqCode int
    
    const (
    	seqLiteral seqCode = iota
    	seqOffset
    	seqMatch
    )
    
    // seqCodeInfoData is the information needed to set up seqTables and
    // seqTableBits for a particular kind of sequence code.
    type seqCodeInfoData struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. src/syscall/asm_plan9_amd64.s

    	MOVQ	AX, r2+64(FP)
    	MOVQ	AX, err+72(FP)
    	RET
    
    #define SYS_SEEK 39	/* from zsysnum_plan9.go */
    
    //func seek(placeholder uintptr, fd int, offset int64, whence int) (newoffset int64, err string)
    TEXT ·seek(SB),NOSPLIT,$48-56
    	NO_LOCAL_POINTERS
    	LEAQ	newoffset+32(FP), AX
    	MOVQ	AX, placeholder+0(FP)
    
    	// copy args down
    	LEAQ	placeholder+0(FP), SI
    	LEAQ	sysargs-40(SP), DI
    	CLD
    	MOVSQ
    	MOVSQ
    	MOVSQ
    	MOVSQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 01:29:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. src/reflect/abi.go

    	// for the call. stackCallArgsSize is the amount of space
    	// reserved for arguments but not return values. retOffset
    	// is the offset at which return values begin, and
    	// spill is the size in bytes of additional space reserved
    	// to spill argument registers into in case of preemption in
    	// reflectcall's stack frame.
    	stackCallArgsSize, retOffset, spill uintptr
    
    	// stackPtrs is a bitmap that indicates whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/OffsetInFileLocation.java

        /**
         * The global offset from the beginning of the file.
         *
         * @return the zero-indexed offset
         * @since 8.6
         */
        int getOffset();
    
        /**
         * The length of the content starting from {@link #getOffset()}.
         *
         * @return the length
         * @since 8.6
         */
        int getLength();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/compress/flate/deflate.go

    				d.fastSkipHashing == skipNever && lookahead > prevLength && prevLength < d.lazy) {
    			if newLength, newOffset, ok := d.findMatch(d.index, d.chainHead-d.hashOffset, minMatchLength-1, lookahead); ok {
    				d.length = newLength
    				d.offset = newOffset
    			}
    		}
    		if d.fastSkipHashing != skipNever && d.length >= minMatchLength ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top