Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 346 for Sname (0.23 sec)

  1. src/internal/xcoff/xcoff.go

    	F_FDPR_OPTI = 0x0020
    	F_DSA       = 0x0040
    	F_VARPG     = 0x0100
    	F_DYNLOAD   = 0x1000
    	F_SHROBJ    = 0x2000
    	F_LOADONLY  = 0x4000
    )
    
    // Section Header.
    type SectionHeader32 struct {
    	Sname    [8]byte // Section name
    	Spaddr   uint32  // Physical address
    	Svaddr   uint32  // Virtual address
    	Ssize    uint32  // Section size
    	Sscnptr  uint32  // Offset in file to raw data for section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/internal/xcoff/file.go

    }
    
    // Section returns the first section with the given name, or nil if no such
    // section exists.
    // Xcoff have section's name limited to 8 bytes. Some sections like .gosymtab
    // can be trunked but this method will still find them.
    func (f *File) Section(name string) *Section {
    	for _, s := range f.Sections {
    		if s.Name == name || (len(name) > 8 && s.Name == name[:8]) {
    			return s
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    				return isz == 0 // 0-sized < zerobase
    			}
    			if checkSize {
    				if isz != jsz {
    					return isz < jsz
    				}
    			} else {
    				iname := sl[i].name
    				jname := sl[j].name
    				if iname != jname {
    					return iname < jname
    				}
    			}
    			return si < sj
    		})
    	} else {
    		// PCLNTAB was built internally, and already has the proper order.
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/image/draw/draw_test.go

    		"floyd-steinberg": FloydSteinberg,
    	}
    	sources := map[string]image.Image{
    		"uniform":  &image.Uniform{color.RGBA{0xff, 0x7f, 0xff, 0xff}},
    		"video001": video001,
    	}
    
    	for dName, d := range drawers {
    	loop:
    		for sName, src := range sources {
    			dst0 := image.NewPaletted(b, cgaPalette)
    			dst1 := image.NewPaletted(b, cgaPalette)
    			d.Draw(dst0, b, src, image.Point{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    // type with the specified name.
    func (d *dwctxt) find(name string) loader.Sym {
    	return d.tmap[name]
    }
    
    func (d *dwctxt) mustFind(name string) loader.Sym {
    	r := d.find(name)
    	if r == 0 {
    		Exitf("dwarf find: cannot find %s", name)
    	}
    	return r
    }
    
    func (d *dwctxt) adddwarfref(sb *loader.SymbolBuilder, t loader.Sym, size int) {
    	switch size {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    		return f.sectNameToScnum[".text"]
    	case &Segdata:
    		if sect.Name == ".noptrbss" || sect.Name == ".bss" {
    			return f.sectNameToScnum[".bss"]
    		}
    		if sect.Name == ".tbss" {
    			return f.sectNameToScnum[".tbss"]
    		}
    		return f.sectNameToScnum[".data"]
    	case &Segdwarf:
    		name, _ := xcoffGetDwarfSubtype(sect.Name)
    		return f.sectNameToScnum[name]
    	case &Segrelrodata:
    		return f.sectNameToScnum[".data"]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    		osym := r.Sym(i)
    		var name string
    		var v int
    		if kind != hashed64Def && kind != hashedDef { // we don't need the name, etc. for hashed symbols
    			name = osym.Name(r.Reader)
    			v = abiToVer(osym.ABI(), r.version)
    		}
    		gi := st.addSym(name, v, r, i, kind, osym)
    		r.syms[i] = gi
    		if kind == nonPkgDef && osym.IsLinkname() && r.DataSize(i) == 0 && strings.Contains(name, ".") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    			}
    		}
    		pname := filepath.Join(libdir, name+".a")
    		if ctxt.Debugvlog != 0 {
    			ctxt.Logf("searching for %s.a in %s\n", name, pname)
    		}
    		if _, err := os.Stat(pname); err == nil {
    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    	}
    
    	if name == "runtime" {
    		Exitf("error: unable to find runtime.a")
    	}
    	ctxt.Logf("warning: unable to find %s.a\n", name)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. operator/pkg/name/name.go

    	s := string(n)
    	return ComponentName(strings.ToUpper(s[0:1]) + s[1:])
    }
    
    // UserFacingComponentName returns the name of the given component that should be displayed to the user in high
    // level CLIs (like progress log).
    func UserFacingComponentName(name ComponentName) string {
    	ret, ok := userFacingComponentNames[name]
    	if !ok {
    		return "Unknown"
    	}
    	return ret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/net/http/filetransport_test.go

    	}
    }
    
    func TestFileTransport(t *testing.T) {
    	check := checker(t)
    
    	dname := t.TempDir()
    	fname := filepath.Join(dname, "foo.txt")
    	err := os.WriteFile(fname, []byte("Bar"), 0644)
    	check("WriteFile", err)
    	defer os.Remove(fname)
    
    	tr := &Transport{}
    	tr.RegisterProtocol("file", NewFileTransport(Dir(dname)))
    	c := &Client{Transport: tr}
    
    	fooURLs := []string{"file:///foo.txt", "file://../foo.txt"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 17:07:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top