Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 189 for noff (0.03 sec)

  1. src/syscall/zsyscall_linux_loong64.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {
    	r0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))
    	n = int64(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/symbolbuilder.go

    		sb.kind = sym.SDATA
    	}
    	if sb.size < off+wid {
    		sb.size = off + wid
    		sb.Grow(sb.size)
    	}
    
    	switch wid {
    	case 1:
    		sb.data[off] = uint8(v)
    	case 2:
    		arch.ByteOrder.PutUint16(sb.data[off:], uint16(v))
    	case 4:
    		arch.ByteOrder.PutUint32(sb.data[off:], uint32(v))
    	case 8:
    		arch.ByteOrder.PutUint64(sb.data[off:], v)
    	}
    
    	return off + wid
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    					continue
    				}
    				off := 0
    				if m[1] != "" {
    					off, _ = strconv.Atoi(m[2])
    				}
    				if off >= localSize {
    					if fn != nil {
    						v := fn.varByOffset[off-localSize]
    						if v != nil {
    							badf("%s should be %s+%d(FP)", m[1], v.name, off-localSize)
    							continue
    						}
    					}
    					if off >= localSize+argSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/debug/pe/file.go

    type File struct {
    	FileHeader
    	OptionalHeader any // of type *OptionalHeader32 or *OptionalHeader64
    	Sections       []*Section
    	Symbols        []*Symbol    // COFF symbols with auxiliary symbol records removed
    	COFFSymbols    []COFFSymbol // all COFF symbols (including auxiliary symbol records)
    	StringTable    StringTable
    
    	closer io.Closer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {
    	r0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))
    	n = int64(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_arm64.s

    #define y2in(off)  (32*0 + 8 + off)(RSP)
    #define s2(off)    (32*1 + 8 + off)(RSP)
    #define z1sqr(off) (32*2 + 8 + off)(RSP)
    #define h(off)	   (32*3 + 8 + off)(RSP)
    #define r(off)	   (32*4 + 8 + off)(RSP)
    #define hsqr(off)  (32*5 + 8 + off)(RSP)
    #define rsqr(off)  (32*6 + 8 + off)(RSP)
    #define hcub(off)  (32*7 + 8 + off)(RSP)
    
    #define z2sqr(off) (32*8 + 8 + off)(RSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/internal/zstd/zstd.go

    	return ze.err
    }
    
    func (r *Reader) makeEOFError(off int) error {
    	return r.wrapError(off, io.ErrUnexpectedEOF)
    }
    
    func (r *Reader) wrapNonEOFError(off int, err error) error {
    	if err == io.EOF {
    		err = io.ErrUnexpectedEOF
    	}
    	return r.wrapError(off, err)
    }
    
    func (r *Reader) makeError(off int, msg string) error {
    	return r.wrapError(off, errors.New(msg))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/time/zoneinfo_test.go

    	} {
    		name, off, start, end, isDST, ok := time.Tzset(test.inStr, test.inEnd, test.inSec)
    		if name != test.name || off != test.off || start != test.start || end != test.end || isDST != test.isDST || ok != test.ok {
    			t.Errorf("tzset(%q, %d, %d) = %q, %d, %d, %d, %t, %t, want %q, %d, %d, %d, %t, %t", test.inStr, test.inEnd, test.inSec, name, off, start, end, isDST, ok, test.name, test.off, test.start, test.end, test.isDST, test.ok)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top