Home
last modified time | relevance | path

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

/external/fio/
Dparse.c273 int is_time);
278 int str_to_float(const char *str, double *val, int is_time) in str_to_float() argument
286 rc = evaluate_arithmetic_expression(str, &ival, &dval, 1.0, is_time); in str_to_float()
300 int is_seconds, int is_time) in str_to_decimal() argument
318 rc = evaluate_arithmetic_expression(str, &ival, &dval, implied_units, is_time); in str_to_decimal()
459 int ret = 0, is_time = 0; in __handle_option() local
500 is_time = 1; in __handle_option()
506 if (!is_time && o->is_time) in __handle_option()
507 is_time = o->is_time; in __handle_option()
515 if (is_time) in __handle_option()
Dparse.h76 int is_time; /* time based value */ member
96 extern int str_to_float(const char *str, double *val, int is_time);
Doptions.c2145 .is_time = 1,
2158 .is_time = 1,
2187 .is_time = 1,
2767 .is_time = 1,
2778 .is_time = 1,
2862 .is_time = 1,
2872 .is_time = 1,
2882 .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);