Lines Matching refs:value_p
161 IntType* value_p) { in safe_parse_positive_int() argument
174 *value_p = value; in safe_parse_positive_int()
178 *value_p = vmax; in safe_parse_positive_int()
183 *value_p = vmax; in safe_parse_positive_int()
188 *value_p = value; in safe_parse_positive_int()
194 IntType* value_p) { in safe_parse_negative_int() argument
215 *value_p = value; in safe_parse_negative_int()
219 *value_p = vmin; in safe_parse_negative_int()
224 *value_p = vmin; in safe_parse_negative_int()
229 *value_p = value; in safe_parse_negative_int()
236 inline bool safe_int_internal(const string& text, IntType* value_p, int base) { in safe_int_internal() argument
237 *value_p = 0; in safe_int_internal()
244 return safe_parse_positive_int(text_copy, base, value_p); in safe_int_internal()
246 return safe_parse_negative_int(text_copy, base, value_p); in safe_int_internal()
251 inline bool safe_uint_internal(const string& text, IntType* value_p, int base) { in safe_uint_internal() argument
252 *value_p = 0; in safe_uint_internal()
258 return safe_parse_positive_int(text_copy, base, value_p); in safe_uint_internal()