Source file src/pkg/strconv/itoa.go
1
2
3
4
5 package strconv
6
7
8
9
10 func FormatUint(i uint64, base int) string {
11 _, s := formatBits(nil, i, base, false, false)
12 return s
13 }
14
15
16
17
18 func FormatInt(i int64, base int) string {
19 _, s := formatBits(nil, uint64(i), base, i < 0, false)
20 return s
21 }
22
23
24 func Itoa(i int) string {
25 return FormatInt(int64(i), 10)
26 }
27
28
29
30 func AppendInt(dst []byte, i int64, base int) []byte {
31 dst, _ = formatBits(dst, uint64(i), base, i < 0, true)
32 return dst
33 }
34
35
36
37 func AppendUint(dst []byte, i uint64, base int) []byte {
38 dst, _ = formatBits(dst, i, base, false, true)
39 return dst
40 }
41
42 const (
43 digits = "0123456789abcdefghijklmnopqrstuvwxyz"
44 digits01 = "0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"
45 digits10 = "0000000000111111111122222222223333333333444444444455555555556666666666777777777788888888889999999999"
46 )
47
48 var shifts = [len(digits) + 1]uint{
49 1 << 1: 1,
50 1 << 2: 2,
51 1 << 3: 3,
52 1 << 4: 4,
53 1 << 5: 5,
54 }
55
56
57
58
59
60
61
62 func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {
63 if base < 2 || base > len(digits) {
64 panic("strconv: illegal AppendInt/FormatInt base")
65 }
66
67
68 var a [64 + 1]byte
69 i := len(a)
70
71 if neg {
72 u = -u
73 }
74
75
76 if base == 10 {
77
78
79
80 for u >= 100 {
81 i -= 2
82 q := u / 100
83 j := uintptr(u - q*100)
84 a[i+1] = digits01[j]
85 a[i+0] = digits10[j]
86 u = q
87 }
88 if u >= 10 {
89 i--
90 q := u / 10
91 a[i] = digits[uintptr(u-q*10)]
92 u = q
93 }
94
95 } else if s := shifts[base]; s > 0 {
96
97 b := uint64(base)
98 m := uintptr(b) - 1
99 for u >= b {
100 i--
101 a[i] = digits[uintptr(u)&m]
102 u >>= s
103 }
104
105 } else {
106
107 b := uint64(base)
108 for u >= b {
109 i--
110 a[i] = digits[uintptr(u%b)]
111 u /= b
112 }
113 }
114
115
116 i--
117 a[i] = digits[uintptr(u)]
118
119
120 if neg {
121 i--
122 a[i] = '-'
123 }
124
125 if append_ {
126 d = append(dst, a[i:]...)
127 return
128 }
129 s = string(a[i:])
130 return
131 }
View as plain text