Lines Matching defs:value
189 class = typename std::enable_if<std::is_integral<Tp>::value>::type>
515 std::string value;
520 value = ln.substr(Key.size() + 1, split_idx - Key.size() - 1);
522 if (split_idx != std::string::npos) value = ln.substr(split_idx + 1);
526 if (!value.empty()) {
527 const int cur_id = benchmark::stoi(value);
652 // The value is in kHz (as the file name suggests). For example, on a
653 // 2GHz warpstation, the file contains the value "2000000".
678 std::string value;
679 if (split_idx != std::string::npos) value = ln.substr(split_idx + 1);
684 if (!value.empty()) {
685 double cycles_per_second = benchmark::stod(value) * 1000000.0;
689 if (!value.empty()) {
690 bogo_clock = benchmark::stod(value) * 1000000.0;
770 double clock_hz = knp->value.ui64;