Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Ut (0.06 sec)

  1. src/reflect/type.go

    	// TODO(sbinet): Once we allow non-exported methods, we will
    	// need to compute xcount as the number of exported methods.
    	ut.Mcount = uint16(len(methods))
    	ut.Xcount = ut.Mcount
    	ut.Moff = uint32(unsafe.Sizeof(uncommonType{}))
    
    	if len(fs) > 0 {
    		repr = append(repr, ' ')
    	}
    	repr = append(repr, '}')
    	hash = fnv1(hash, '}')
    	str := string(repr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    		return &TemplateParamPack{Param: param}, templateVal
    	default:
    		return nil, nil
    	}
    }
    
    // unnamedTypeName parses:
    //
    //	<unnamed-type-name> ::= Ut [ <nonnegative number> ] _
    func (st *state) unnamedTypeName() AST {
    	st.checkChar('U')
    	st.checkChar('t')
    	num := st.compactNumber()
    	ret := &UnnamedType{Num: num}
    	st.subs.add(ret)
    	return ret
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top