Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fileStringSym (0.15 sec)

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

    		return
    	}
    
    	files := embedFileList(v, kind)
    	switch kind {
    	case embedString, embedBytes:
    		file := files[0]
    		fsym, size, err := fileStringSym(v.Pos(), base.Flag.Cfg.Embed.Files[file], kind == embedString, nil)
    		if err != nil {
    			base.ErrorfAt(v.Pos(), 0, "embed %s: %v", file, err)
    		}
    		sym := v.Linksym()
    		off := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 18:22:02 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticdata/data.go

    		// Huge strings are hashed to avoid long names in object files.
    		// Indulge in some paranoia by writing the length of s, too,
    		// as protection against length extension attacks.
    		// Same pattern is known to fileStringSym below.
    		h := notsha256.New()
    		io.WriteString(h, s)
    		symname = fmt.Sprintf(stringSymPattern, len(s), shortHashString(h.Sum(nil)))
    	} else {
    		// Small strings get named directly by their contents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top