Lines Matching refs:has_call
267 int *has_call = user; in set_has_call() local
269 *has_call = 1; in set_has_call()
278 int has_call = 0; in expr_has_call() local
280 if (pet_expr_foreach_call_expr(expr, &set_has_call, &has_call) < 0 && in expr_has_call()
281 !has_call) in expr_has_call()
284 return has_call; in expr_has_call()
293 int *has_call = user; in check_call() local
296 *has_call = 1; in check_call()
298 return *has_call ? -1 : 0; in check_call()
303 static int has_call(struct pet_stmt *stmt) in has_call() function
305 int has_call = 0; in has_call() local
307 if (pet_tree_foreach_expr(stmt->body, &check_call, &has_call) < 0 && in has_call()
308 !has_call) in has_call()
311 return has_call; in has_call()
319 return collect_domains(scop, &has_call); in collect_call_domains()