Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 501 for noff (0.05 sec)

  1. src/syscall/syscall_linux_riscv64.go

    //sys	Seek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK
    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)
    //sys	Setfsgid(gid int) (err error)
    //sys	Setfsuid(uid int) (err error)
    //sysnb	setrlimit(resource int, rlim *Rlimit) (err error) = SYS_SETRLIMIT
    //sys	Shutdown(fd int, how int) (err error)
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/syscall/ztypes_freebsd_amd64.go

    	Len    uint8
    	Family uint8
    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/LineBufferTest.java

                lines.add(line + end);
              }
            };
        char[] chars = input.toCharArray();
        int off = 0;
        while (off < chars.length) {
          int len = Math.min(chars.length, off + chunk) - off;
          lineBuf.add(chars, off, len);
          off += len;
        }
        lineBuf.finish();
        return lines;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/LineBufferTest.java

                lines.add(line + end);
              }
            };
        char[] chars = input.toCharArray();
        int off = 0;
        while (off < chars.length) {
          int len = Math.min(chars.length, off + chunk) - off;
          lineBuf.add(chars, off, len);
          off += len;
        }
        lineBuf.finish();
        return lines;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/fallocate_freebsd_arm.go

    package unix
    
    import "syscall"
    
    func PosixFallocate(fd int, off int64, size int64) error {
    	// If successful, posix_fallocate() returns zero. It returns an error on failure, without
    	// setting errno. See https://man.freebsd.org/cgi/man.cgi?query=posix_fallocate&sektion=2&n=1
    	//
    	// The padding 0 argument is needed because the ARM calling convention requires that if an
    	// argument (off in this case) needs double-word alignment (8-byte), the NCRN (next core
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 14:17:36 UTC 2023
    - 1013 bytes
    - Viewed (0)
  6. src/cmd/link/internal/riscv64/asm.go

    	case objabi.R_RISCV_GOT_HI20, objabi.R_RISCV_PCREL_HI20:
    		pc := ldr.SymValue(s) + int64(r.Off())
    		off := ldr.SymValue(rs) + r.Add() - pc
    
    		// Generate AUIPC immediates.
    		_, high, err := riscv.Split32BitImmediate(off)
    		if err != nil {
    			ldr.Errorf(s, "relocation does not fit in 32-bits: %d", off)
    		}
    
    		auipcImm, err := riscv.EncodeUImmediate(high)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_arm64.go

    //sys	Seek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK
    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)
    //sys	Setfsgid(gid int) (err error)
    //sys	Setfsuid(uid int) (err error)
    //sysnb	setrlimit1(resource int, rlim *Rlimit) (err error) = SYS_SETRLIMIT
    //sys	Shutdown(fd int, how int) (err error)
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/outbuf.go

    	// See if we have enough space in the mmaped area.
    	bufLen := int64(len(out.buf))
    	if out.off+lenToWrite <= bufLen {
    		return out.off, out.buf
    	}
    
    	// Not enough space in the mmaped area, write to heap area instead.
    	heapPos := out.off - bufLen
    	heapLen := int64(len(out.heap))
    	lenNeeded := heapPos + lenToWrite
    	if lenNeeded > heapLen { // do we need to grow the heap storage?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  9. src/internal/abi/type.go

    func (n Name) DataChecked(off int, whySafe string) *byte {
    	return (*byte)(addChecked(unsafe.Pointer(n.Bytes), uintptr(off), whySafe))
    }
    
    // Data does pointer arithmetic on n's Bytes, and that arithmetic is asserted to
    // be safe because the runtime made the call (other packages use DataChecked)
    func (n Name) Data(off int) *byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_tag_goexperiment.txt

    [short] skip
    # Reset all experiments so fieldtrack is definitely off.
    env GOEXPERIMENT=none
    go run m
    stderr 'fieldtrack off'
    # Turn fieldtrack on.
    env GOEXPERIMENT=none,fieldtrack
    go run m
    stderr 'fieldtrack on'
    
    -- ft_off.go --
    // +build !goexperiment.fieldtrack
    
    package main
    
    func main() {
    	println("fieldtrack off")
    }
    
    -- ft_on.go --
    // +build goexperiment.fieldtrack
    
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 19 02:43:30 UTC 2021
    - 460 bytes
    - Viewed (0)
Back to top