Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tmpHash64 (0.19 sec)

  1. src/cmd/internal/obj/objfile.go

    	o.SetAlign(align)
    	o.Write(w.Writer)
    }
    
    func (w *writer) Hash64(s *LSym) {
    	if !s.ContentAddressable() || len(s.R) != 0 {
    		panic("Hash of non-content-addressable symbol")
    	}
    	w.tmpHash64 = contentHash64(s)
    	w.Bytes(w.tmpHash64[:])
    }
    
    func (w *writer) Hash(s *LSym) {
    	if !s.ContentAddressable() {
    		panic("Hash of non-content-addressable symbol")
    	}
    	w.tmpHash = w.contentHash(s)
    	w.Bytes(w.tmpHash[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top