16#ifndef RAPIDJSON_ITOA_
17#define RAPIDJSON_ITOA_
19#include "../rapidjson.h"
24inline const char* GetDigitsLut() {
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',
27 '1',
'0',
'1',
'1',
'1',
'2',
'1',
'3',
'1',
'4',
'1',
'5',
'1',
'6',
'1',
'7',
'1',
'8',
'1',
'9',
28 '2',
'0',
'2',
'1',
'2',
'2',
'2',
'3',
'2',
'4',
'2',
'5',
'2',
'6',
'2',
'7',
'2',
'8',
'2',
'9',
29 '3',
'0',
'3',
'1',
'3',
'2',
'3',
'3',
'3',
'4',
'3',
'5',
'3',
'6',
'3',
'7',
'3',
'8',
'3',
'9',
30 '4',
'0',
'4',
'1',
'4',
'2',
'4',
'3',
'4',
'4',
'4',
'5',
'4',
'6',
'4',
'7',
'4',
'8',
'4',
'9',
31 '5',
'0',
'5',
'1',
'5',
'2',
'5',
'3',
'5',
'4',
'5',
'5',
'5',
'6',
'5',
'7',
'5',
'8',
'5',
'9',
32 '6',
'0',
'6',
'1',
'6',
'2',
'6',
'3',
'6',
'4',
'6',
'5',
'6',
'6',
'6',
'7',
'6',
'8',
'6',
'9',
33 '7',
'0',
'7',
'1',
'7',
'2',
'7',
'3',
'7',
'4',
'7',
'5',
'7',
'6',
'7',
'7',
'7',
'8',
'7',
'9',
34 '8',
'0',
'8',
'1',
'8',
'2',
'8',
'3',
'8',
'4',
'8',
'5',
'8',
'6',
'8',
'7',
'8',
'8',
'8',
'9',
35 '9',
'0',
'9',
'1',
'9',
'2',
'9',
'3',
'9',
'4',
'9',
'5',
'9',
'6',
'9',
'7',
'9',
'8',
'9',
'9'
40inline char* u32toa(
uint32_t value,
char* buffer) {
43 const char* cDigitsLut = GetDigitsLut();
46 const uint32_t d1 = (value / 100) << 1;
47 const uint32_t d2 = (value % 100) << 1;
50 *buffer++ = cDigitsLut[d1];
52 *buffer++ = cDigitsLut[d1 + 1];
54 *buffer++ = cDigitsLut[d2];
55 *buffer++ = cDigitsLut[d2 + 1];
57 else if (value < 100000000) {
68 if (value >= 10000000)
69 *buffer++ = cDigitsLut[d1];
71 *buffer++ = cDigitsLut[d1 + 1];
73 *buffer++ = cDigitsLut[d2];
74 *buffer++ = cDigitsLut[d2 + 1];
76 *buffer++ = cDigitsLut[d3];
77 *buffer++ = cDigitsLut[d3 + 1];
78 *buffer++ = cDigitsLut[d4];
79 *buffer++ = cDigitsLut[d4 + 1];
84 const uint32_t a = value / 100000000;
88 const unsigned i = a << 1;
89 *buffer++ = cDigitsLut[i];
90 *buffer++ = cDigitsLut[i + 1];
93 *buffer++ =
static_cast<char>(
'0' +
static_cast<char>(a));
104 *buffer++ = cDigitsLut[d1];
105 *buffer++ = cDigitsLut[d1 + 1];
106 *buffer++ = cDigitsLut[d2];
107 *buffer++ = cDigitsLut[d2 + 1];
108 *buffer++ = cDigitsLut[d3];
109 *buffer++ = cDigitsLut[d3 + 1];
110 *buffer++ = cDigitsLut[d4];
111 *buffer++ = cDigitsLut[d4 + 1];
116inline char* i32toa(int32_t value,
char* buffer) {
124 return u32toa(u, buffer);
127inline char* u64toa(
uint64_t value,
char* buffer) {
129 const char* cDigitsLut = GetDigitsLut();
132 const uint64_t kTen10 = kTen8 * 100;
133 const uint64_t kTen11 = kTen8 * 1000;
134 const uint64_t kTen12 = kTen8 * 10000;
135 const uint64_t kTen13 = kTen8 * 100000;
136 const uint64_t kTen14 = kTen8 * 1000000;
137 const uint64_t kTen15 = kTen8 * 10000000;
138 const uint64_t kTen16 = kTen8 * kTen8;
147 *buffer++ = cDigitsLut[d1];
149 *buffer++ = cDigitsLut[d1 + 1];
151 *buffer++ = cDigitsLut[d2];
152 *buffer++ = cDigitsLut[d2 + 1];
165 if (value >= 10000000)
166 *buffer++ = cDigitsLut[d1];
167 if (value >= 1000000)
168 *buffer++ = cDigitsLut[d1 + 1];
170 *buffer++ = cDigitsLut[d2];
171 *buffer++ = cDigitsLut[d2 + 1];
173 *buffer++ = cDigitsLut[d3];
174 *buffer++ = cDigitsLut[d3 + 1];
175 *buffer++ = cDigitsLut[d4];
176 *buffer++ = cDigitsLut[d4 + 1];
179 else if (value < kTen16) {
186 const uint32_t d1 = (b0 / 100) << 1;
187 const uint32_t d2 = (b0 % 100) << 1;
189 const uint32_t d3 = (c0 / 100) << 1;
190 const uint32_t d4 = (c0 % 100) << 1;
195 const uint32_t d5 = (b1 / 100) << 1;
196 const uint32_t d6 = (b1 % 100) << 1;
198 const uint32_t d7 = (c1 / 100) << 1;
199 const uint32_t d8 = (c1 % 100) << 1;
202 *buffer++ = cDigitsLut[d1];
204 *buffer++ = cDigitsLut[d1 + 1];
206 *buffer++ = cDigitsLut[d2];
208 *buffer++ = cDigitsLut[d2 + 1];
210 *buffer++ = cDigitsLut[d3];
212 *buffer++ = cDigitsLut[d3 + 1];
214 *buffer++ = cDigitsLut[d4];
216 *buffer++ = cDigitsLut[d4 + 1];
217 *buffer++ = cDigitsLut[d5];
218 *buffer++ = cDigitsLut[d5 + 1];
219 *buffer++ = cDigitsLut[d6];
220 *buffer++ = cDigitsLut[d6 + 1];
221 *buffer++ = cDigitsLut[d7];
222 *buffer++ = cDigitsLut[d7 + 1];
223 *buffer++ = cDigitsLut[d8];
224 *buffer++ = cDigitsLut[d8 + 1];
231 *buffer++ =
static_cast<char>(
'0' +
static_cast<char>(a));
234 *buffer++ = cDigitsLut[i];
235 *buffer++ = cDigitsLut[i + 1];
238 *buffer++ =
static_cast<char>(
'0' +
static_cast<char>(a / 100));
241 *buffer++ = cDigitsLut[i];
242 *buffer++ = cDigitsLut[i + 1];
247 *buffer++ = cDigitsLut[i];
248 *buffer++ = cDigitsLut[i + 1];
249 *buffer++ = cDigitsLut[j];
250 *buffer++ = cDigitsLut[j + 1];
259 const uint32_t d1 = (b0 / 100) << 1;
260 const uint32_t d2 = (b0 % 100) << 1;
262 const uint32_t d3 = (c0 / 100) << 1;
263 const uint32_t d4 = (c0 % 100) << 1;
268 const uint32_t d5 = (b1 / 100) << 1;
269 const uint32_t d6 = (b1 % 100) << 1;
271 const uint32_t d7 = (c1 / 100) << 1;
272 const uint32_t d8 = (c1 % 100) << 1;
274 *buffer++ = cDigitsLut[d1];
275 *buffer++ = cDigitsLut[d1 + 1];
276 *buffer++ = cDigitsLut[d2];
277 *buffer++ = cDigitsLut[d2 + 1];
278 *buffer++ = cDigitsLut[d3];
279 *buffer++ = cDigitsLut[d3 + 1];
280 *buffer++ = cDigitsLut[d4];
281 *buffer++ = cDigitsLut[d4 + 1];
282 *buffer++ = cDigitsLut[d5];
283 *buffer++ = cDigitsLut[d5 + 1];
284 *buffer++ = cDigitsLut[d6];
285 *buffer++ = cDigitsLut[d6 + 1];
286 *buffer++ = cDigitsLut[d7];
287 *buffer++ = cDigitsLut[d7 + 1];
288 *buffer++ = cDigitsLut[d8];
289 *buffer++ = cDigitsLut[d8 + 1];
295inline char* i64toa(int64_t value,
char* buffer) {
303 return u64toa(u, buffer);
Lecteur des fichiers de maillage via la bibliothèque LIMA.
#define RAPIDJSON_ASSERT(x)
Assertion.
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)