Lines Matching refs:tmpVal
277 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
278 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
285 *val = static_cast<int8_t>(tmpVal);
292 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
293 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
300 *val = static_cast<int16_t>(tmpVal);
307 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
308 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
315 *val = static_cast<int32_t>(tmpVal);
322 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
323 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
330 *val = static_cast<int64_t>(tmpVal);
337 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
338 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
345 *val = static_cast<uint8_t>(tmpVal);
352 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
353 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
360 *val = static_cast<uint16_t>(tmpVal);
367 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
368 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
375 *val = static_cast<uint32_t>(tmpVal);
382 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
383 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
390 *val = static_cast<uint64_t>(tmpVal);
397 double tmpVal = strtod(valStr.c_str(), &pos);
398 if (tmpVal == 0.0 || tmpVal == HUGE_VAL) {
405 *val = tmpVal;
454 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
455 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
462 val->push_back(static_cast<int8_t>(tmpVal));
480 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
481 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
488 val->push_back(static_cast<int16_t>(tmpVal));
506 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
507 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
514 val->push_back(static_cast<int32_t>(tmpVal));
532 long int tmpVal = strtol(valStr.c_str(), &pos, 10);
533 if (tmpVal == 0L || tmpVal == LONG_MAX || tmpVal == LONG_MIN) {
540 val->push_back(static_cast<int64_t>(tmpVal));
558 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
559 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
566 val->push_back(static_cast<uint8_t>(tmpVal));
584 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
585 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
592 val->push_back(static_cast<uint16_t>(tmpVal));
610 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
611 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
618 val->push_back(static_cast<uint32_t>(tmpVal));
636 unsigned long long int tmpVal = strtoull(valStr.c_str(), &pos, 10);
637 if (tmpVal == 0ULL || tmpVal == ULONG_MAX) {
644 val->push_back(static_cast<uint64_t>(tmpVal));
662 double tmpVal = strtod(valStr.c_str(), &pos);
663 if (tmpVal == 0.0 || tmpVal == HUGE_VAL) {
670 val->push_back(tmpVal);