Lines Matching refs:maxSize
1219 const int maxSize = 340;
1220 char buf[maxSize];
1224 int len = snprintf(buf, maxSize, format, value);
1225 assert(len < maxSize);
1285 const int maxSize = 300;
1286 char buf[maxSize];
1287 snprintf(buf, maxSize, "%d (%s)", constUnion[i].getI8Const(), "const int8_t");
1294 const int maxSize = 300;
1295 char buf[maxSize];
1296 snprintf(buf, maxSize, "%u (%s)", constUnion[i].getU8Const(), "const uint8_t");
1303 const int maxSize = 300;
1304 char buf[maxSize];
1305 snprintf(buf, maxSize, "%d (%s)", constUnion[i].getI16Const(), "const int16_t");
1312 const int maxSize = 300;
1313 char buf[maxSize];
1314 snprintf(buf, maxSize, "%u (%s)", constUnion[i].getU16Const(), "const uint16_t");
1321 const int maxSize = 300;
1322 char buf[maxSize];
1323 snprintf(buf, maxSize, "%d (%s)", constUnion[i].getIConst(), "const int");
1330 const int maxSize = 300;
1331 char buf[maxSize];
1332 snprintf(buf, maxSize, "%u (%s)", constUnion[i].getUConst(), "const uint");
1339 const int maxSize = 300;
1340 char buf[maxSize];
1341 snprintf(buf, maxSize, "%lld (%s)", constUnion[i].getI64Const(), "const int64_t");
1348 const int maxSize = 300;
1349 char buf[maxSize];
1350 snprintf(buf, maxSize, "%llu (%s)", constUnion[i].getU64Const(), "const uint64_t");