Lines Matching refs:call

30 static int implied_err_cast_return(struct expression *call, void *unused, struct range_list **rl)  in implied_err_cast_return()  argument
34 arg = get_argument_from_call_expr(call->args, 0); in implied_err_cast_return()
38 *rl = cast_rl(get_type(call), *rl); in implied_err_cast_return()
205 static int match_next_bit(struct expression *call, void *unused, struct range_list **rl) in match_next_bit() argument
212 size_arg = get_argument_from_call_expr(call->args, 1); in match_next_bit()
214 start_arg = get_argument_from_call_expr(call->args, 2); in match_next_bit()
216 type = get_type(call); in match_next_bit()
232 static int match_fls(struct expression *call, void *unused, struct range_list **rl) in match_fls() argument
244 arg = get_argument_from_call_expr(call->args, 0); in match_fls()
352 static void match__write_once_size(const char *fn, struct expression *call, in match__write_once_size() argument
358 dest = get_argument_from_call_expr(call->args, 0); in match__write_once_size()
363 data = get_argument_from_call_expr(call->args, 1); in match__write_once_size()
375 static void match__read_once_size(const char *fn, struct expression *call, in match__read_once_size() argument
389 data = get_argument_from_call_expr(call->args, 0); in match__read_once_size()
394 dest = get_argument_from_call_expr(call->args, 1); in match__read_once_size()
412 static void match_closure_call(const char *name, struct expression *call, in match_closure_call() argument
418 cl = get_argument_from_call_expr(call->args, 0); in match_closure_call()
419 fn = get_argument_from_call_expr(call->args, 1); in match_closure_call()