Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for AppendUint (0.18 sec)

  1. src/crypto/x509/oid.go

    		if valEnd {
    			if start == 0 {
    				if val < 80 {
    					b.Write(strconv.AppendUint(numBuf, val/40, 10))
    					b.WriteByte('.')
    					b.Write(strconv.AppendUint(numBuf, val%40, 10))
    				} else {
    					b.WriteString("2.")
    					b.Write(strconv.AppendUint(numBuf, val-80, 10))
    				}
    			} else {
    				b.Write(strconv.AppendUint(numBuf, val, 10))
    			}
    			val = 0
    			start = i + 1
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/strconv/itoa.go

    	return dst
    }
    
    // AppendUint appends the string form of the unsigned integer i,
    // as generated by [FormatUint], to dst and returns the extended buffer.
    func AppendUint(dst []byte, i uint64, base int) []byte {
    	if fastSmalls && i < nSmalls && base == 10 {
    		return append(dst, small(int(i))...)
    	}
    	dst, _ = formatBits(dst, i, base, false, true)
    	return dst
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/strconv/doc.go

    //
    //	s := strconv.FormatBool(true)
    //	s := strconv.FormatFloat(3.1415, 'E', -1, 64)
    //	s := strconv.FormatInt(-42, 16)
    //	s := strconv.FormatUint(42, 16)
    //
    // [AppendBool], [AppendFloat], [AppendInt], and [AppendUint] are similar but
    // append the formatted value to a destination slice.
    //
    // # String Conversions
    //
    // [Quote] and [QuoteToASCII] convert strings to quoted Go string literals.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    const digits = "0123456789abcdef"
    
    // appendDecimal appends the decimal string representation of x to b.
    func appendDecimal(b []byte, x uint8) []byte {
    	// Using this function rather than strconv.AppendUint makes IPv4
    	// string building 2x faster.
    
    	if x >= 100 {
    		b = append(b, digits[x/100])
    	}
    	if x >= 10 {
    		b = append(b, digits[x/10%10])
    	}
    	return append(b, digits[x%10])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    func (v Value) append(dst []byte) []byte {
    	switch v.Kind() {
    	case KindString:
    		return append(dst, v.str()...)
    	case KindInt64:
    		return strconv.AppendInt(dst, int64(v.num), 10)
    	case KindUint64:
    		return strconv.AppendUint(dst, v.num, 10)
    	case KindFloat64:
    		return strconv.AppendFloat(dst, v.float(), 'g', -1, 64)
    	case KindBool:
    		return strconv.AppendBool(dst, v.bool())
    	case KindDuration:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/database/sql/convert.go

    	switch rv.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return strconv.AppendInt(buf, rv.Int(), 10), true
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    		return strconv.AppendUint(buf, rv.Uint(), 10), true
    	case reflect.Float32:
    		return strconv.AppendFloat(buf, rv.Float(), 'g', -1, 32), true
    	case reflect.Float64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    	// We will fill out the correct size when we know it.
    	dst = append(dst, 0xc6, 0, 0, 0, 0)
    	dataOffset := len(dst)
    
    	dst = msgp.AppendUint(dst, xlHeaderVersion)
    	dst = msgp.AppendUint(dst, xlMetaVersion)
    	dst = msgp.AppendInt(dst, len(x.versions))
    
    	tmp := metaDataPoolGet()
    	defer metaDataPoolPut(tmp)
    	for _, ver := range x.versions {
    		var err error
    
    		// Add header
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. src/encoding/json/encode.go

    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	b = strconv.AppendInt(b, v.Int(), 10)
    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    func uintEncoder(e *encodeState, v reflect.Value, opts encOpts) {
    	b := e.AvailableBuffer()
    	b = mayAppendQuote(b, opts.quoted)
    	b = strconv.AppendUint(b, v.Uint(), 10)
    	b = mayAppendQuote(b, opts.quoted)
    	e.Write(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  9. src/time/format.go

    	buf = append(buf, ", "...)
    	buf = appendInt(buf, hour, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, minute, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, second, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, t.Nanosecond(), 0)
    	buf = append(buf, ", "...)
    	switch loc := t.Location(); loc {
    	case UTC, nil:
    		buf = append(buf, "time.UTC"...)
    	case Local:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. utils/utils.go

    		frame, _ := frames.Next()
    		if (!strings.HasPrefix(frame.File, gormSourceDir) ||
    			strings.HasSuffix(frame.File, "_test.go")) && !strings.HasSuffix(frame.File, ".gen.go") {
    			return string(strconv.AppendInt(append([]byte(frame.File), ':'), int64(frame.Line), 10))
    		}
    	}
    
    	return ""
    }
    
    func IsValidDBNameChar(c rune) bool {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top