Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 306 for mpos (0.07 sec)

  1. src/cmd/go/internal/modindex/write.go

    	stringTable []byte
    	strings     map[string]int
    }
    
    func (e *encoder) Pos() int {
    	return len(e.b)
    }
    
    func (e *encoder) Bytes(b []byte) {
    	e.b = append(e.b, b...)
    }
    
    func (e *encoder) String(s string) {
    	if n, ok := e.strings[s]; ok {
    		e.Int(n)
    		return
    	}
    	pos := len(e.stringTable)
    	e.strings[s] = pos
    	e.Int(pos)
    	e.stringTable = binary.AppendUvarint(e.stringTable, uint64(len(s)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v.reset(OpMIPSLoweredAtomicAnd)
    		v0 := b.NewValue0(v.Pos, OpMIPSAND, typ.UInt32Ptr)
    		v1 := b.NewValue0(v.Pos, OpMIPSMOVWconst, typ.UInt32)
    		v1.AuxInt = int32ToAuxInt(^3)
    		v0.AddArg2(v1, ptr)
    		v2 := b.NewValue0(v.Pos, OpMIPSOR, typ.UInt32)
    		v3 := b.NewValue0(v.Pos, OpMIPSSLL, typ.UInt32)
    		v4 := b.NewValue0(v.Pos, OpZeroExt8to32, typ.UInt32)
    		v4.AddArg(val)
    		v5 := b.NewValue0(v.Pos, OpMIPSSLLconst, typ.UInt32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/xattr_bsd.go

    	destsiz := len(dest)
    
    	s, pos := 0, 0
    	for _, nsid := range [...]int{EXTATTR_NAMESPACE_USER, EXTATTR_NAMESPACE_SYSTEM} {
    		stmp, e := FlistxattrNS(fd, nsid, dest[pos:])
    
    		if e != nil {
    			if e == EPERM && nsid != EXTATTR_NAMESPACE_USER {
    				continue
    			}
    			return s, e
    		}
    
    		s += stmp
    		pos = s
    		if pos > destsiz {
    			pos = destsiz
    		}
    	}
    
    	return s, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/go/token/example_test.go

    		// We get both the relative and absolute position.
    		// The relative position is relative to the last line directive.
    		// The absolute position is the exact position in the source.
    		pos := decl.Pos()
    		relPosition := fset.Position(pos)
    		absPosition := fset.PositionFor(pos, false)
    
    		// Either a FuncDecl or GenDecl, since we exit on error.
    		kind := "func"
    		if gen, ok := decl.(*ast.GenDecl); ok {
    			kind = gen.Tok.String()
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:09:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/go/types/mono.go

    func (w *monoGraph) recordInstance(pkg *Package, pos token.Pos, tparams []*TypeParam, targs []Type, xlist []ast.Expr) {
    	for i, tpar := range tparams {
    		pos := pos
    		if i < len(xlist) {
    			pos = startPos(xlist[i])
    		}
    		w.assign(pkg, pos, tpar, targs[i])
    	}
    }
    
    // assign records that tpar was instantiated as targ at pos.
    func (w *monoGraph) assign(pkg *Package, pos token.Pos, tpar *TypeParam, targ Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/go/ast/resolve.go

    	"strconv"
    )
    
    type pkgBuilder struct {
    	fset   *token.FileSet
    	errors scanner.ErrorList
    }
    
    func (p *pkgBuilder) error(pos token.Pos, msg string) {
    	p.errors.Add(p.fset.Position(pos), msg)
    }
    
    func (p *pkgBuilder) errorf(pos token.Pos, format string, args ...any) {
    	p.error(pos, fmt.Sprintf(format, args...))
    }
    
    func (p *pkgBuilder) declare(scope, altScope *Scope, obj *Object) {
    	alt := scope.Insert(obj)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/go/ast/scope.go

    			return d.Name.Pos()
    		}
    		return d.Path.Pos()
    	case *ValueSpec:
    		for _, n := range d.Names {
    			if n.Name == name {
    				return n.Pos()
    			}
    		}
    	case *TypeSpec:
    		if d.Name.Name == name {
    			return d.Name.Pos()
    		}
    	case *FuncDecl:
    		if d.Name.Name == name {
    			return d.Name.Pos()
    		}
    	case *LabeledStmt:
    		if d.Label.Name == name {
    			return d.Label.Pos()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	}
    	r, size := utf8.DecodeRune(in.remaining)
    	in.remaining = in.remaining[size:]
    	if r == '\n' {
    		in.pos.Line++
    		in.pos.LineRune = 1
    	} else {
    		in.pos.LineRune++
    	}
    	in.pos.Byte += size
    	return int(r)
    }
    
    type token struct {
    	kind   tokenKind
    	pos    Position
    	endPos Position
    	text   string
    }
    
    type tokenKind int
    
    const (
    	_EOF tokenKind = -(iota + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/security.go

    	re(`-mcmodel=[0-9a-z-]+`),
    	re(`-mfloat-abi=([^@\-].*)`),
    	re(`-mfpmath=[0-9a-z,+]*`),
    	re(`-m(no-)?avx[0-9a-z.]*`),
    	re(`-m(no-)?ms-bitfields`),
    	re(`-m(no-)?stack-(.+)`),
    	re(`-mmacosx-(.+)`),
    	re(`-mios-simulator-version-min=(.+)`),
    	re(`-miphoneos-version-min=(.+)`),
    	re(`-mlarge-data-threshold=[0-9]+`),
    	re(`-mtvos-simulator-version-min=(.+)`),
    	re(`-mtvos-version-min=(.+)`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    type namesSeen map[uniqueName]token.Pos
    
    type uniqueName struct {
    	key   string // "xml" or "json"
    	name  string // the encoding name
    	level int    // anonymous struct nesting level
    }
    
    func (s *namesSeen) Get(key, name string, level int) (token.Pos, bool) {
    	if *s == nil {
    		*s = make(map[uniqueName]token.Pos)
    	}
    	pos, ok := (*s)[uniqueName{key, name, level}]
    	return pos, ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top