Lines Matching defs:inValue
124 // to 2. If value includes a "+", adds low and subtracts 1; if inValue
126 // Returns final sector value. In case inValue is invalid, returns 0 (a
128 // inValue works out to something outside the range low-high, returns the
131 // If inValue contains a decimal number (e.g., "9.5G"), quietly truncate it
139 uint64_t IeeeToInt(string inValue, uint64_t sSize, uint64_t low, uint64_t high, uint32_t sectorAlignment, uint64_t def) {
152 while (inValue[0] == ' ')
153 inValue.erase(0, 1);
156 if ((inValue[0] == '+') || (inValue[0] == '-')) {
157 plusFlag = inValue[0];
158 inValue.erase(0, 1);
162 istringstream inString(inValue);
177 if ((inValue.length() == 0) || (response == 0)) {