Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stringFrom (0.13 sec)

  1. src/debug/gosym/pclntab.go

    		return s
    	}
    	i := bytes.IndexByte(t.funcnametab[off:], 0)
    	s := string(t.funcnametab[off : off+uint32(i)])
    	t.funcNames[off] = s
    	return s
    }
    
    // stringFrom returns a Go string found at off from a position.
    func (t *LineTable) stringFrom(arr []byte, off uint32) string {
    	if s, ok := t.strings[off]; ok {
    		return s
    	}
    	i := bytes.IndexByte(arr[off:], 0)
    	s := string(arr[off : off+uint32(i)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top