15 #ifndef RAPIDJSON_ITOA_ 16 #define RAPIDJSON_ITOA_ 18 #include "../rapidjson.h" 25 static const char cDigitsLut[200] = {
26 '0',
'0',
'0',
'1',
'0',
'2',
'0',
'3',
'0',
'4',
'0',
'5',
'0',
'6',
'0',
'7',
'0',
'8',
'0',
'9',
'1',
'0',
'1',
27 '1',
'1',
'2',
'1',
'3',
'1',
'4',
'1',
'5',
'1',
'6',
'1',
'7',
'1',
'8',
'1',
'9',
'2',
'0',
'2',
'1',
'2',
'2',
28 '2',
'3',
'2',
'4',
'2',
'5',
'2',
'6',
'2',
'7',
'2',
'8',
'2',
'9',
'3',
'0',
'3',
'1',
'3',
'2',
'3',
'3',
'3',
29 '4',
'3',
'5',
'3',
'6',
'3',
'7',
'3',
'8',
'3',
'9',
'4',
'0',
'4',
'1',
'4',
'2',
'4',
'3',
'4',
'4',
'4',
'5',
30 '4',
'6',
'4',
'7',
'4',
'8',
'4',
'9',
'5',
'0',
'5',
'1',
'5',
'2',
'5',
'3',
'5',
'4',
'5',
'5',
'5',
'6',
'5',
31 '7',
'5',
'8',
'5',
'9',
'6',
'0',
'6',
'1',
'6',
'2',
'6',
'3',
'6',
'4',
'6',
'5',
'6',
'6',
'6',
'7',
'6',
'8',
32 '6',
'9',
'7',
'0',
'7',
'1',
'7',
'2',
'7',
'3',
'7',
'4',
'7',
'5',
'7',
'6',
'7',
'7',
'7',
'8',
'7',
'9',
'8',
33 '0',
'8',
'1',
'8',
'2',
'8',
'3',
'8',
'4',
'8',
'5',
'8',
'6',
'8',
'7',
'8',
'8',
'8',
'9',
'9',
'0',
'9',
'1',
34 '9',
'2',
'9',
'3',
'9',
'4',
'9',
'5',
'9',
'6',
'9',
'7',
'9',
'8',
'9',
'9' 47 const uint32_t d1 = (value / 100) << 1;
48 const uint32_t d2 = (value % 100) << 1;
51 *buffer++ = cDigitsLut[d1];
53 *buffer++ = cDigitsLut[d1 + 1];
55 *buffer++ = cDigitsLut[d2];
56 *buffer++ = cDigitsLut[d2 + 1];
58 else if (value < 100000000)
70 if (value >= 10000000)
71 *buffer++ = cDigitsLut[d1];
73 *buffer++ = cDigitsLut[d1 + 1];
75 *buffer++ = cDigitsLut[d2];
76 *buffer++ = cDigitsLut[d2 + 1];
78 *buffer++ = cDigitsLut[d3];
79 *buffer++ = cDigitsLut[d3 + 1];
80 *buffer++ = cDigitsLut[d4];
81 *buffer++ = cDigitsLut[d4 + 1];
92 const unsigned i = a << 1;
93 *buffer++ = cDigitsLut[i];
94 *buffer++ = cDigitsLut[i + 1];
97 *buffer++ =
static_cast<char>(
'0' +
static_cast<char>(
a));
108 *buffer++ = cDigitsLut[d1];
109 *buffer++ = cDigitsLut[d1 + 1];
110 *buffer++ = cDigitsLut[d2];
111 *buffer++ = cDigitsLut[d2 + 1];
112 *buffer++ = cDigitsLut[d3];
113 *buffer++ = cDigitsLut[d3 + 1];
114 *buffer++ = cDigitsLut[d4];
115 *buffer++ = cDigitsLut[d4 + 1];
139 const uint64_t kTen10 = kTen8 * 100;
140 const uint64_t kTen11 = kTen8 * 1000;
141 const uint64_t kTen12 = kTen8 * 10000;
142 const uint64_t kTen13 = kTen8 * 100000;
143 const uint64_t kTen14 = kTen8 * 1000000;
144 const uint64_t kTen15 = kTen8 * 10000000;
145 const uint64_t kTen16 = kTen8 * kTen8;
156 *buffer++ = cDigitsLut[d1];
158 *buffer++ = cDigitsLut[d1 + 1];
160 *buffer++ = cDigitsLut[d2];
161 *buffer++ = cDigitsLut[d2 + 1];
175 if (value >= 10000000)
176 *buffer++ = cDigitsLut[d1];
177 if (value >= 1000000)
178 *buffer++ = cDigitsLut[d1 + 1];
180 *buffer++ = cDigitsLut[d2];
181 *buffer++ = cDigitsLut[d2 + 1];
183 *buffer++ = cDigitsLut[d3];
184 *buffer++ = cDigitsLut[d3 + 1];
185 *buffer++ = cDigitsLut[d4];
186 *buffer++ = cDigitsLut[d4 + 1];
189 else if (value < kTen16)
197 const uint32_t d1 = (b0 / 100) << 1;
198 const uint32_t d2 = (b0 % 100) << 1;
200 const uint32_t d3 = (c0 / 100) << 1;
201 const uint32_t d4 = (c0 % 100) << 1;
206 const uint32_t d5 = (b1 / 100) << 1;
207 const uint32_t d6 = (b1 % 100) << 1;
209 const uint32_t d7 = (c1 / 100) << 1;
210 const uint32_t d8 = (c1 % 100) << 1;
213 *buffer++ = cDigitsLut[d1];
215 *buffer++ = cDigitsLut[d1 + 1];
217 *buffer++ = cDigitsLut[d2];
219 *buffer++ = cDigitsLut[d2 + 1];
221 *buffer++ = cDigitsLut[d3];
223 *buffer++ = cDigitsLut[d3 + 1];
225 *buffer++ = cDigitsLut[d4];
227 *buffer++ = cDigitsLut[d4 + 1];
228 *buffer++ = cDigitsLut[d5];
229 *buffer++ = cDigitsLut[d5 + 1];
230 *buffer++ = cDigitsLut[d6];
231 *buffer++ = cDigitsLut[d6 + 1];
232 *buffer++ = cDigitsLut[d7];
233 *buffer++ = cDigitsLut[d7 + 1];
234 *buffer++ = cDigitsLut[d8];
235 *buffer++ = cDigitsLut[d8 + 1];
243 *buffer++ =
static_cast<char>(
'0' +
static_cast<char>(
a));
247 *buffer++ = cDigitsLut[i];
248 *buffer++ = cDigitsLut[i + 1];
252 *buffer++ =
static_cast<char>(
'0' +
static_cast<char>(a / 100));
255 *buffer++ = cDigitsLut[i];
256 *buffer++ = cDigitsLut[i + 1];
262 *buffer++ = cDigitsLut[i];
263 *buffer++ = cDigitsLut[i + 1];
264 *buffer++ = cDigitsLut[j];
265 *buffer++ = cDigitsLut[j + 1];
274 const uint32_t d1 = (b0 / 100) << 1;
275 const uint32_t d2 = (b0 % 100) << 1;
277 const uint32_t d3 = (c0 / 100) << 1;
278 const uint32_t d4 = (c0 % 100) << 1;
283 const uint32_t d5 = (b1 / 100) << 1;
284 const uint32_t d6 = (b1 % 100) << 1;
286 const uint32_t d7 = (c1 / 100) << 1;
287 const uint32_t d8 = (c1 % 100) << 1;
289 *buffer++ = cDigitsLut[d1];
290 *buffer++ = cDigitsLut[d1 + 1];
291 *buffer++ = cDigitsLut[d2];
292 *buffer++ = cDigitsLut[d2 + 1];
293 *buffer++ = cDigitsLut[d3];
294 *buffer++ = cDigitsLut[d3 + 1];
295 *buffer++ = cDigitsLut[d4];
296 *buffer++ = cDigitsLut[d4 + 1];
297 *buffer++ = cDigitsLut[d5];
298 *buffer++ = cDigitsLut[d5 + 1];
299 *buffer++ = cDigitsLut[d6];
300 *buffer++ = cDigitsLut[d6 + 1];
301 *buffer++ = cDigitsLut[d7];
302 *buffer++ = cDigitsLut[d7 + 1];
303 *buffer++ = cDigitsLut[d8];
304 *buffer++ = cDigitsLut[d8 + 1];
326 #endif // RAPIDJSON_ITOA_ char * u64toa(uint64_t value, char *buffer)
#define RAPIDJSON_ASSERT(x)
Assertion.
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
const char * GetDigitsLut()
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
unsigned __int64 uint64_t
char * u32toa(uint32_t value, char *buffer)
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
const GenericPointer< typename T::ValueType > T2 value
char * i64toa(int64_t value, char *buffer)
char * i32toa(int32_t value, char *buffer)