Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 117 for Off (0.03 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) fail(err string) {
    	panic(demangleErr{err: err, off: st.off})
    }
    
    // failEarlier is like fail, but decrements the offset to indicate
    // that the point of failure occurred earlier in the string.
    func (st *state) failEarlier(err string, dec int) {
    	if st.off < dec {
    		panic("internal error")
    	}
    	panic(demangleErr{err: err, off: st.off - dec})
    }
    
    // advance advances the current string offset.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    		throw("found bad interior pointer")
    	}
    	off := interior - x
    	tp := span.typePointersOf(interior, size)
    	for i := off; i < off+size; i += goarch.PtrSize {
    		// Compute the pointer bit we want at offset i.
    		want := false
    		if i < span.elemsize {
    			off := i % typ.Size_
    			if off < typ.PtrBytes {
    				j := off / goarch.PtrSize
    				want = *addb(typ.GCData, j/8)>>(j%8)&1 != 0
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/debug/elf/file_test.go

    		[]ProgHeader{
    			{Type: PT_NOTE, Flags: 0x0, Off: 0x3f8, Vaddr: 0x0, Paddr: 0x0, Filesz: 0x8ac, Memsz: 0x0, Align: 0x0},
    			{Type: PT_LOAD, Flags: PF_X + PF_R, Off: 0x1000, Vaddr: 0x400000, Paddr: 0x0, Filesz: 0x0, Memsz: 0x1000, Align: 0x1000},
    			{Type: PT_LOAD, Flags: PF_R, Off: 0x1000, Vaddr: 0x401000, Paddr: 0x0, Filesz: 0x1000, Memsz: 0x1000, Align: 0x1000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	return true
    }
    
    // isFixed32 returns true if the int32 at offset off in symbol sym
    // is known and constant.
    func isFixed32(c *Config, sym Sym, off int64) bool {
    	return isFixed(c, sym, off, 4)
    }
    
    // isFixed returns true if the range [off,off+size] of the symbol sym
    // is known and constant.
    func isFixed(c *Config, sym Sym, off, size int64) bool {
    	lsym := sym.(*obj.LSym)
    	if lsym.Extra == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	// These tests are written to avoid any possible overflow.
    	off := uintptr(shard) * rootBlockBytes
    	if off >= n0 {
    		return 0
    	}
    	b := b0 + off
    	ptrmask := (*uint8)(add(unsafe.Pointer(ptrmask0), uintptr(shard)*(rootBlockBytes/(8*goarch.PtrSize))))
    	n := uintptr(rootBlockBytes)
    	if off+n > n0 {
    		n = n0 - off
    	}
    
    	// Scan this shard.
    	scanblock(b, n, ptrmask, gcw, nil)
    	return int64(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		off += pad
    	}
    	if t := n.FuncType.Result; t != nil {
    		if off%t.Align != 0 {
    			pad := t.Align - off%t.Align
    			fmt.Fprintf(&buf, "\t\tchar __pad%d[%d];\n", off, pad)
    			off += pad
    		}
    		fmt.Fprintf(&buf, "\t\t%s r;\n", t.C)
    		off += t.Size
    	}
    	if off%p.PtrSize != 0 {
    		pad := p.PtrSize - off%p.PtrSize
    		fmt.Fprintf(&buf, "\t\tchar __pad%d[%d];\n", off, pad)
    		off += pad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    				// is resolved.
    				off = alignUp(off, 8)
    			} else if size&3 == 0 {
    				off = alignUp(off, 4)
    			} else if size&1 == 0 {
    				off = alignUp(off, 2)
    			}
    			if off+size <= maxTinySize && c.tiny != 0 {
    				// The object fits into existing tiny block.
    				x = unsafe.Pointer(c.tiny + off)
    				c.tinyoffset = off + size
    				c.tinyAllocs++
    				mp.mallocing = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    		}
    
    		reloctab = append(reloctab, xldr)
    	}
    
    	off += uint64(16 * len(dynimpreloc))
    	reloctab = append(reloctab, dynimpreloc...)
    
    	hdr.Lnreloc = int32(len(reloctab))
    	hdr.Limpoff = off
    
    	/* Import */
    	// Default import: /usr/lib:/lib
    	ldimpf := &XcoffLdImportFile64{
    		Limpidpath: "/usr/lib:/lib",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritedec64.go

    		v1.AuxInt = int32ToAuxInt(off)
    		v1.Aux = symToAux(n)
    		v.AddArg2(v0, v1)
    		return true
    	}
    	// match: (Arg {n} [off])
    	// cond: is64BitInt(v.Type) && config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin")
    	// result: (Int64Make (Arg <typ.Int32> {n} [off]) (Arg <typ.UInt32> {n} [off+4]))
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		n := auxToSym(v.Aux)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    // don't extend before store
    (MOVBstore [off] {sym} ptr (MOVBreg x) mem) => (MOVBstore [off] {sym} ptr x mem)
    (MOVBstore [off] {sym} ptr (MOVBUreg x) mem) => (MOVBstore [off] {sym} ptr x mem)
    (MOVBstore [off] {sym} ptr (MOVHreg x) mem) => (MOVBstore [off] {sym} ptr x mem)
    (MOVBstore [off] {sym} ptr (MOVHUreg x) mem) => (MOVBstore [off] {sym} ptr x mem)
    (MOVHstore [off] {sym} ptr (MOVHreg x) mem) => (MOVHstore [off] {sym} ptr x mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top