HomeSort by: relevance | last modified time | path
    Searched defs:combined_fn (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/
gimple-match.h 33 code_helper (combined_fn fn) : rep (-(int) fn) {}
36 explicit operator combined_fn () const { return (combined_fn) -rep; }
55 return as_internal_fn (combined_fn (*this));
60 return as_builtin_fn (combined_fn (*this));
66 return is_fn_code () && internal_fn_p (combined_fn (*this));
72 return is_fn_code () && builtin_fn_p (combined_fn (*this));
genmatch.cc 243 enum combined_fn { enum
3713 fprintf_indent (f, indent, "const combined_fn %s = %s;\n",
3869 fprintf (f, ", const combined_fn ARG_UNUSED (%s)",
tree-core.h 209 enum combined_fn { enum
  /src/external/gpl3/gcc/dist/gcc/
genmatch.cc 365 enum combined_fn { enum
3925 fprintf_indent (f, indent, "const combined_fn %s = %s;\n",
4084 fp_decl (f, ",\n const combined_fn ARG_UNUSED (%s)",
tree-core.h 211 enum combined_fn { enum
tree.h 26 /* Convert a target-independent built-in function code to a combined_fn. */
28 inline combined_fn
31 return combined_fn (int (fn));
34 /* Convert an internal function code to a combined_fn. */
36 inline combined_fn
39 return combined_fn (int (fn) + int (END_BUILTINS));
45 builtin_fn_p (combined_fn code)
54 as_builtin_fn (combined_fn code)
63 internal_fn_p (combined_fn code)
72 as_internal_fn (combined_fn code
    [all...]

Completed in 92 milliseconds