Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nw (0.02 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	             ::= cv <type> _ <expression>* E
    //	             ::= tl <type> <braced-expression>* E
    //	             ::= il <braced-expression>* E
    //	             ::= [gs] nw <expression>* _ <type> E
    //	             ::= [gs] nw <expression>* _ <type> <initializer>
    //	             ::= [gs] na <expression>* _ <type> E
    //	             ::= [gs] na <expression>* _ <type> <initializer>
    //	             ::= [gs] dl <expression>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/time/time.go

    // tail of buf, omitting trailing zeros. It omits the decimal
    // point too when the fraction is 0. It returns the index where the
    // output bytes begin and the value v/10**prec.
    func fmtFrac(buf []byte, v uint64, prec int) (nw int, nv uint64) {
    	// Omit trailing zeros up to and including decimal point.
    	w := len(buf)
    	print := false
    	for i := 0; i < prec; i++ {
    		digit := v % 10
    		print = print || digit != 0
    		if print {
    			w--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top