Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 323 for offsetY (0.49 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      }
    
      function handleWheel(e) {
        if (e.deltaY == 0) return;
        // Change scale factor by 1.1 or 1/1.1
        rescale(currentScale * (e.deltaY < 0 ? 1.1 : (1/1.1)),
                toSvg(e.offsetX, e.offsetY));
      }
    
      function setMode(m) {
        mode = m;
        touchid = null;
        touchid2 = null;
      }
    
      function panStart(x, y) {
        moved = false;
        panLastX = x;
        panLastY = y;
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. src/go/token/position.go

    	if i := len(f.infos); (i == 0 || f.infos[i-1].Offset < offset) && offset < f.size {
    		f.infos = append(f.infos, lineInfo{offset, filename, line, column})
    	}
    	f.mutex.Unlock()
    }
    
    // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.
    func (f *File) fixOffset(offset int) int {
    	switch {
    	case offset < 0:
    		if !debug {
    			return 0
    		}
    	case offset > f.size:
    		if !debug {
    			return f.size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/objfile.go

    	h.Offsets[goobj.BlkNonpkgdef] = w.Offset()
    	for _, s := range ctxt.nonpkgdefs {
    		w.Sym(s)
    	}
    
    	// Non-pkg symbol references
    	h.Offsets[goobj.BlkNonpkgref] = w.Offset()
    	for _, s := range ctxt.nonpkgrefs {
    		w.Sym(s)
    	}
    
    	// Referenced package symbol flags
    	h.Offsets[goobj.BlkRefFlags] = w.Offset()
    	w.refFlags()
    
    	// Hashes
    	h.Offsets[goobj.BlkHash64] = w.Offset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile.go

    	return int(r.h.Offsets[BlkHashed64def+1]-r.h.Offsets[BlkHashed64def]) / SymSize
    }
    
    func (r *Reader) NHasheddef() int {
    	return int(r.h.Offsets[BlkHasheddef+1]-r.h.Offsets[BlkHasheddef]) / SymSize
    }
    
    func (r *Reader) NNonpkgdef() int {
    	return int(r.h.Offsets[BlkNonpkgdef+1]-r.h.Offsets[BlkNonpkgdef]) / SymSize
    }
    
    func (r *Reader) NNonpkgref() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/time/format_test.go

    	// issue 67470
    	{"-07", "-25", "time zone offset hour out of range"},
    	{"-07:00", "+25:00", "time zone offset hour out of range"},
    	{"-07:00", "-23:61", "time zone offset minute out of range"},
    	{"-07:00:00", "+23:59:61", "time zone offset second out of range"},
    	{"Z07", "-25", "time zone offset hour out of range"},
    	{"Z07:00", "+25:00", "time zone offset hour out of range"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/runtime/type.go

    // and treat the offset as an identifier. We use negative offsets that
    // do not overlap with any compile-time module offsets.
    //
    // Entries are created by reflect.addReflectOff.
    var reflectOffs struct {
    	lock mutex
    	next int32
    	m    map[int32]unsafe.Pointer
    	minv map[unsafe.Pointer]int32
    }
    
    func reflectOffsLock() {
    	lock(&reflectOffs.lock)
    	if raceenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/size.go

    	}
    	for i, m := range methods {
    		m.Offset = int64(i) * int64(PtrSize)
    	}
    
    	t.SetAllMethods(methods)
    }
    
    // calcStructOffset computes the offsets of a sequence of fields,
    // starting at the given offset. It returns the resulting offset and
    // maximum field alignment.
    func calcStructOffset(t *Type, fields []*Field, offset int64) int64 {
    	for _, f := range fields {
    		CalcSize(f.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			vars:        make(map[string]*asmVar),
    			varByOffset: make(map[int]*asmVar),
    		}
    		offset = 0
    		addParams(decl.Type.Params.List, false)
    		if decl.Type.Results != nil && len(decl.Type.Results.List) > 0 {
    			offset += -offset & (arch.maxAlign - 1)
    			addParams(decl.Type.Results.List, true)
    		}
    		fn.size = offset
    		m[arch.name] = fn
    	}
    
    	return m
    }
    
    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/time/zoneinfo.go

    // FixedZone returns a [Location] that always uses
    // the given zone name and offset (seconds east of UTC).
    func FixedZone(name string, offset int) *Location {
    	// Most calls to FixedZone have an unnamed zone with an offset by the hour.
    	// Optimize for that case by returning the same *Location for a given hour.
    	const hoursBeforeUTC = 12
    	const hoursAfterUTC = 14
    	hour := offset / 60 / 60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/pcln.go

    func (state *pclntab) generatePctab(ctxt *Link, funcs []loader.Sym) {
    	ldr := ctxt.loader
    
    	// Pctab offsets of 0 are considered invalid in the runtime. We respect
    	// that by just padding a single byte at the beginning of runtime.pctab,
    	// that way no real offsets can be zero.
    	size := int64(1)
    
    	// Walk the functions, finding offset to store each pcdata.
    	seen := make(map[loader.Sym]struct{})
    	saveOffset := func(pcSym loader.Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top