Lines Matching refs:base
264 constexpr int base {16};
265 ehdrIdent_[count] = static_cast<unsigned char>(std::stoul(valStr, nullptr, base));
331 constexpr int base {16};
332 prgEntryVaddr_ = static_cast<uint64_t>(std::stoull(entryStr, nullptr, base));
551 int base = 16; // 16:HEX
552 uint64_t offset = std::stoull(strVec[INDEX_I1], nullptr, base);
553 uint64_t vAddr = std::stoull(strVec[INDEX_I2], nullptr, base);
554 uint64_t memSize = std::stoull(strVec[INDEX_I5], nullptr, base);
615 constexpr int base {16};
618 uint64_t secAddr = std::stoull(strVec[2], nullptr, base);
619 uint64_t secOffset = std::stoull(strVec[3], nullptr, base);
620 uint64_t secSize = std::stoull(strVec[4], nullptr, base);
621 uint64_t secEntSize = std::stoull(strVec[5], nullptr, base);
622 uint64_t secLink = std::stoull(strVec[strVec.size() - 3], nullptr, base);
623 uint64_t secInfo = std::stoull(strVec[strVec.size() - 2], nullptr, base);
624 uint64_t secAddrAlign = std::stoull(strVec[strVec.size() - 1], nullptr, base);
746 constexpr int base {16}; // 16:HEX
748 elfSymbol.value = std::stoull(strVec[INDEX_I1], nullptr, base);