Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for atolwhex (0.12 sec)

  1. src/cmd/link/internal/ld/ar.go

    		for _, off := range load {
    			l := nextar(f, int64(off), &arhdr)
    			if l <= 0 {
    				Exitf("%s missing archive entry at offset %d", name, off)
    			}
    			pname := fmt.Sprintf("%s(%s)", name, arhdr.name)
    			l = atolwhex(arhdr.size)
    
    			pkname := filepath.Base(name)
    			if i := strings.LastIndex(pkname, ".a"); i >= 0 {
    				pkname = pkname[:i]
    			}
    			libar := sym.Library{Pkg: pkname}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. src/runtime/os_plan9.go

    		i := indexNoFloat(note, "addr=")
    		if i >= 0 {
    			i += 5
    		} else if i = indexNoFloat(note, "va="); i >= 0 {
    			i += 3
    		} else {
    			panicmem()
    		}
    		addr := note[i:]
    		gp.sigcode1 = uintptr(atolwhex(addr))
    		if gp.sigcode1 < 0x1000 {
    			panicmem()
    		}
    		if gp.paniconfault {
    			panicmemAddr(gp.sigcode1)
    		}
    		if inUserArenaChunk(gp.sigcode1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/ld.go

    			if err != nil {
    				Errorf(nil, "cannot read %s: %v", shlib, err)
    			}
    			shlib = strings.TrimSpace(string(data))
    		}
    		l.Shlib = shlib
    	}
    	return l
    }
    
    func atolwhex(s string) int64 {
    	n, _ := strconv.ParseInt(s, 0, 64)
    	return n
    }
    
    // PrepareAddmoduledata returns a symbol builder that target-specific
    // code can use to build up the linker-generated go.link.addmoduledata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	a.date = artrim(buf[16:28])
    	a.uid = artrim(buf[28:34])
    	a.gid = artrim(buf[34:40])
    	a.mode = artrim(buf[40:48])
    	a.size = artrim(buf[48:58])
    	a.fmag = artrim(buf[58:60])
    
    	arsize := atolwhex(a.size)
    	if arsize&1 != 0 {
    		arsize++
    	}
    	return arsize + SAR_HDR
    }
    
    func loadobjfile(ctxt *Link, lib *sym.Library) {
    	pkg := objabi.PathToPrefix(lib.Pkg)
    
    	if ctxt.Debugvlog > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/strconv/atof.go

    	}
    	return
    }
    
    // atofHex converts the hex floating-point string s
    // to a rounded float32 or float64 value (depending on flt==&float32info or flt==&float64info)
    // and returns it as a float64.
    // The string s has already been parsed into a mantissa, exponent, and sign (neg==true for negative).
    // If trunc is true, trailing non-zero bits have been omitted from the mantissa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
Back to top