Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 491 for Off (0.03 sec)

  1. src/runtime/cgocheck.go

    // pointer value. The src pointer is off bytes into the gcbits.
    //
    //go:nosplit
    //go:nowritebarrier
    func cgoCheckBits(src unsafe.Pointer, gcbits *byte, off, size uintptr) {
    	skipMask := off / goarch.PtrSize / 8
    	skipBytes := skipMask * goarch.PtrSize * 8
    	ptrmask := addb(gcbits, skipMask)
    	src = add(src, skipBytes)
    	off -= skipBytes
    	size += off
    	var bits uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/objfile.go

    	if len == 0 {
    		return nil
    	}
    	end := int(off) + len
    	return r.b[int(off):end:end]
    }
    
    func (r *Reader) uint64At(off uint32) uint64 {
    	b := r.BytesAt(off, 8)
    	return binary.LittleEndian.Uint64(b)
    }
    
    func (r *Reader) int64At(off uint32) int64 {
    	return int64(r.uint64At(off))
    }
    
    func (r *Reader) uint32At(off uint32) uint32 {
    	b := r.BytesAt(off, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    				Off:    bo.Uint64(phdata[off+unsafe.Offsetof(ph.Off):]),
    				Vaddr:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Vaddr):]),
    				Paddr:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Paddr):]),
    				Filesz: bo.Uint64(phdata[off+unsafe.Offsetof(ph.Filesz):]),
    				Memsz:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Memsz):]),
    				Align:  bo.Uint64(phdata[off+unsafe.Offsetof(ph.Align):]),
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. .github/workflows/mint/nginx.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. .github/workflows/mint/nginx-4-node.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. .github/workflows/mint/nginx-8-node.conf

            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
                proxy_set_header Host $http_host;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

            public int read(byte[] b, int off, int len) throws IOException {
                return readImpl(b, off, len);
            }
    
            int readImpl(byte[] b, int off, int len) {
                if (b == null) {
                    throw new NullPointerException();
                }
    
                if ((off < 0) || (off > b.length) || (len < 0)
                        || ((off + len) > b.length) || ((off + len) < 0)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/type.go

    	}
    	if t := md.typemap[off]; t != nil {
    		return t
    	}
    	res := md.types + uintptr(off)
    	if res > md.etypes {
    		println("runtime: typeOff", hex(off), "out of range", hex(md.types), "-", hex(md.etypes))
    		throw("runtime: type offset out of range")
    	}
    	return (*_type)(unsafe.Pointer(res))
    }
    
    func (t rtype) typeOff(off typeOff) *_type {
    	return resolveTypeOff(unsafe.Pointer(t.Type), off)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	next = m.load32(off + 12)
    	v = (*atomic.Uint64)(unsafe.Pointer(&m.mapping.Data[off]))
    	return name, next, v, true
    }
    
    func (m *mappedFile) writeEntryAt(off uint32, name string) (next *atomic.Uint32, v *atomic.Uint64, ok bool) {
    	if off < m.hdrLen+hashOff || int64(off)+16+int64(len(name)) > int64(len(m.mapping.Data)) {
    		return nil, nil, false
    	}
    	copy(m.mapping.Data[off+16:], name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top