Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 323 for offsetY (2.44 sec)

  1. src/reflect/abi.go

    		}
    		a.steps = append(a.steps, abiStep{
    			kind:   kind,
    			offset: offset + uintptr(i)*size,
    			size:   size,
    			ireg:   a.iregs,
    		})
    		a.iregs++
    	}
    	return true
    }
    
    // assignFloatN assigns n values to registers, each "size" bytes large,
    // from the data at [offset, offset+n*size) in memory. Each value at
    // [offset+i*size, offset+(i+1)*size) for i < n is assigned to the
    // next n floating-point registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/runtime/runtime1.go

    }
    
    // reflectlite_resolveNameOff resolves a name offset from a base pointer.
    //
    //go:linkname reflectlite_resolveNameOff internal/reflectlite.resolveNameOff
    func reflectlite_resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer {
    	return unsafe.Pointer(resolveNameOff(ptrInModule, nameOff(off)).Bytes)
    }
    
    // reflectlite_resolveTypeOff resolves an *rtype offset from a base type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/util.go

    		}
    
    	case TYPE_REGREG:
    		fmt.Fprintf(w, "(%v, %v)", Rconv(int(a.Reg)), Rconv(int(a.Offset)))
    
    	case TYPE_REGREG2:
    		fmt.Fprintf(w, "%v, %v", Rconv(int(a.Offset)), Rconv(int(a.Reg)))
    
    	case TYPE_REGLIST:
    		io.WriteString(w, RLconv(a.Offset))
    
    	case TYPE_SPECIAL:
    		io.WriteString(w, SPCconv(a.Offset))
    	}
    }
    
    func (a *Addr) WriteNameTo(w io.Writer) {
    	a.writeNameTo(w, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/encoding/binary/binary.go

    	d.offset++
    	return x
    }
    
    func (e *encoder) uint8(x uint8) {
    	e.buf[e.offset] = x
    	e.offset++
    }
    
    func (d *decoder) uint16() uint16 {
    	x := d.order.Uint16(d.buf[d.offset : d.offset+2])
    	d.offset += 2
    	return x
    }
    
    func (e *encoder) uint16(x uint16) {
    	e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
    	e.offset += 2
    }
    
    func (d *decoder) uint32() uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf.go

    			}
    
    			// This slice will hold the offset in bytes for each child
    			// variable DIE with respect to the start of the parent
    			// subprogram DIE.
    			for _, v := range flattened {
    				offsets = append(offsets, int32(ctxt.CurrentOffset(s.Absfn)))
    				putAbstractVar(ctxt, s.Absfn, v)
    			}
    		}
    	}
    	ctxt.RecordChildDieOffsets(s.Absfn, flattened, offsets)
    
    	Uleb128put(ctxt, s.Absfn, 0)
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, fmt.Errorf("could not identify base for %s: %v", name, err)
    	}
    
    	if b.fast || (!b.addr2lineFound && !b.llvmSymbolizerFound) {
    		return &fileNM{file: file{
    			b:       b,
    			name:    name,
    			buildID: buildID,
    			m:       &elfMapping{start: start, limit: limit, offset: offset, kernelOffset: kernelOffset},
    		}}, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. cmd/sftp-server-driver.go

    }
    
    func (w *writerAt) WriteAt(b []byte, offset int64) (n int, err error) {
    	w.m.Lock()
    	defer w.m.Unlock()
    
    	if w.nextOffset == offset {
    		n, err = w.w.Write(b)
    		w.nextOffset += int64(n)
    	} else {
    		if offset > w.nextOffset+ftpMaxWriteOffset {
    			return 0, fmt.Errorf("write offset %d is too far ahead of next offset %d", offset, w.nextOffset)
    		}
    		w.buffer[offset] = make([]byte, len(b))
    		copy(w.buffer[offset], b)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/net/http/pattern_test.go

    		{"/{}", "at offset 1: empty wildcard"},
    		{"POST a.com/x/{}/y", "at offset 13: empty wildcard"},
    		{"/{...}", "at offset 1: empty wildcard"},
    		{"/{$...}", "at offset 1: bad wildcard"},
    		{"/{$}/", "at offset 1: {$} not at end"},
    		{"/{$}/x", "at offset 1: {$} not at end"},
    		{"/abc/{$}/x", "at offset 5: {$} not at end"},
    		{"/{a...}/", "at offset 1: {...} wildcard not at end"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/runtime/profbuf.go

    // for the stack.
    //
    // The current effective offsets into the tags and data circular buffers
    // for reading and writing are stored in the high 30 and low 32 bits of r and w.
    // The bottom bits of the high 32 are additional flag bits in w, unused in r.
    // "Effective" offsets means the total number of reads or writes, mod 2^length.
    // The offset in the buffer is the effective offset mod the length of the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/runtime/heapdump.go

    	sp     *uint8    // callee sp
    	depth  uintptr   // depth in call stack (0 == most recent)
    }
    
    // dump kinds & offsets of interesting fields in bv.
    func dumpbv(cbv *bitvector, offset uintptr) {
    	for i := uintptr(0); i < uintptr(cbv.n); i++ {
    		if cbv.ptrbit(i) == 1 {
    			dumpint(fieldKindPtr)
    			dumpint(uint64(offset + i*goarch.PtrSize))
    		}
    	}
    }
    
    func dumpframe(s *stkframe, child *childInfo) {
    	f := s.fn
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top