Home
last modified time | relevance | path

Searched refs:is_time (Results 1 – 5 of 5) sorted by relevance

/external/fio/
Dparse.c295 int is_time);
300 int str_to_float(const char *str, double *val, int is_time) in str_to_float() argument
308 rc = evaluate_arithmetic_expression(str, &ival, &dval, 1.0, is_time); in str_to_float()
322 int is_seconds, int is_time) in str_to_decimal() argument
340 rc = evaluate_arithmetic_expression(str, &ival, &dval, implied_units, is_time); in str_to_decimal()
481 int ret = 0, is_time = 0; in __handle_option() local
524 is_time = 1; in __handle_option()
530 if (!is_time && o->is_time) in __handle_option()
531 is_time = o->is_time; in __handle_option()
539 if (is_time) in __handle_option()
Dparse.h78 int is_time; /* time based value */ member
97 extern int str_to_float(const char *str, double *val, int is_time);
Doptions.c2498 .is_time = 1,
2511 .is_time = 1,
2540 .is_time = 1,
3236 .is_time = 1,
3247 .is_time = 1,
3356 .is_time = 1,
3366 .is_time = 1,
3376 .is_time = 1,
4387 .is_time = 1,
4401 .is_time = 1,
/external/fio/exp/
Dexpression-parser.y218 double implied_units, int is_time) in evaluate_arithmetic_expression() argument
222 lexer_value_is_time = is_time; in evaluate_arithmetic_expression()
Dtest-expression-parser.c28 double *dval, double implied_units, int is_time);