Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 584 for Off (0.07 sec)

  1. src/cmd/compile/internal/staticdata/data.go

    	slicedataGen++
    	symname := fmt.Sprintf(".gobytes.%d", slicedataGen)
    	lsym := types.LocalPkg.Lookup(symname).LinksymABI(obj.ABI0)
    	off := dstringdata(lsym, 0, s, pos, "slice")
    	objw.Global(lsym, int32(off), obj.NOPTR|obj.LOCAL)
    
    	return lsym
    }
    
    func dstringdata(s *obj.LSym, off int, t string, pos src.XPos, what string) int {
    	// Objects that are too large will cause the data section to overflow right away,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (MOVHstore [off] {sym} ptr (MOVHreg x) mem) => (MOVHstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVHUreg x) mem) => (MOVHstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVWreg x) mem) => (MOVHstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVWUreg x) mem) => (MOVHstore [off] {sym} ptr x mem)
    (MOVWstore [off] {sym} ptr (MOVWreg x) mem) => (MOVWstore [off] {sym} ptr x mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    	s, data, i := &d.scan, d.data, d.off
    	depth := len(s.parseState)
    	for {
    		op := s.step(s, data[i])
    		i++
    		if len(s.parseState) < depth {
    			d.off = i
    			d.opcode = op
    			return
    		}
    	}
    }
    
    // scanNext processes the byte at d.data[d.off].
    func (d *decodeState) scanNext() {
    	if d.off < len(d.data) {
    		d.opcode = d.scan.step(&d.scan, d.data[d.off])
    		d.off++
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/amd64/asm.go

    		su := ldr.MakeSymbolUpdater(s)
    		if targType != sym.SDYNIMPORT {
    			// have symbol
    			sData := ldr.Data(s)
    			if r.Off() >= 2 && sData[r.Off()-2] == 0x8b {
    				su.MakeWritable()
    				// turn MOVQ of GOT entry into LEAQ of symbol itself
    				writeableData := su.Data()
    				writeableData[r.Off()-2] = 0x8d
    				su.SetRelocType(rIdx, objabi.R_PCREL)
    				su.SetRelocAdd(rIdx, r.Add()+4)
    				return true
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/iimport.go

    		errorf("varint failed")
    	}
    	spos := off + uint64(n)
    	s := string(p.stringData[spos : spos+slen])
    	p.stringCache[off] = s
    	return s
    }
    
    func (p *iimporter) pkgAt(off uint64) *types.Package {
    	if pkg, ok := p.pkgCache[off]; ok {
    		return pkg
    	}
    	path := p.stringAt(off)
    	errorf("missing package %q in %q", path, p.ipath)
    	return nil
    }
    
    func (p *iimporter) typAt(off uint64, base *types.Named) types.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		// the executable segment is located (loadSegment.Off), and the base virtual
    		// address where the first byte of the segment is loaded
    		// (loadSegment.Vaddr). A file offset fx maps to a virtual (symbol) address
    		// sx = fx - loadSegment.Off + loadSegment.Vaddr.
    		//
    		// Thus, a runtime virtual address x maps to a symbol address
    		// sx = x - start + offset - loadSegment.Off + loadSegment.Vaddr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/dec64.rules

    (Arg {n} [off]) && is64BitInt(v.Type) && config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin") =>
      (Int64Make
        (Arg <typ.Int32> {n} [off])
        (Arg <typ.UInt32> {n} [off+4]))
    (Arg {n} [off]) && is64BitInt(v.Type) && config.BigEndian && !v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin") =>
      (Int64Make
        (Arg <typ.UInt32> {n} [off])
        (Arg <typ.UInt32> {n} [off+4]))
    
    (Add64 x y) =>
    	(Int64Make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  8. src/internal/reflectlite/type.go

    		return ""
    	}
    	i, l := n.ReadVarint(1)
    	off := 1 + i + l
    	if n.HasTag() {
    		i2, l2 := n.ReadVarint(off)
    		off += i2 + l2
    	}
    	var nameOff int32
    	// Note that this field may not be aligned in memory,
    	// so we cannot use a direct int32 assignment here.
    	copy((*[4]byte)(unsafe.Pointer(&nameOff))[:], (*[4]byte)(unsafe.Pointer(n.DataChecked(off, "name offset field")))[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/runtime/runtime1.go

    func reflect_resolveTextOff(rtype unsafe.Pointer, off int32) unsafe.Pointer {
    	return toRType((*_type)(rtype)).textOff(textOff(off))
    }
    
    // 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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-extension-dashboard.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "links": [],
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top