Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fcnCount (0.12 sec)

  1. src/internal/coverage/decodecounter/decodecounterfile.go

    // something went wrong with the read or we hit a premature
    // EOF).
    func (cdr *CounterDataReader) NextFunc(p *FuncPayload) (bool, error) {
    	if cdr.fcnCount >= uint32(cdr.shdr.FcnEntries) {
    		return false, nil
    	}
    	cdr.fcnCount++
    	var rdu32 func() (uint32, error)
    	if cdr.hdr.CFlavor == coverage.CtrULeb128 {
    		rdu32 = func() (uint32, error) {
    			var shift uint
    			var value uint64
    			for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/math/big/ratconv.go

    	if len(z.a.abs) == 0 {
    		return z.norm(), true
    	}
    	// len(z.a.abs) > 0
    
    	// The mantissa may have a radix point (fcount <= 0) and there
    	// may be a nonzero exponent exp. The radix point amounts to a
    	// division by base**(-fcount), which equals a multiplication by
    	// base**fcount. An exponent means multiplication by ebase**exp.
    	// Multiplications are commutative, so we can apply them in any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top