HomeSort by: relevance | last modified time | path
    Searched refs:decl1 (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/tests/usr.bin/indent/
opt_badp.c 220 int decl1[2][2] = { local
233 int decl1[2][2] = { local
251 int decl1; local
262 int decl1; local
opt_bad.c 170 int decl1[2][2] = { variable
  /src/external/gpl3/gcc/dist/gcc/cp/
decl.cc 17805 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
17807 in this translation unit. On exit, DECL_INITIAL (decl1) will be
17812 start_preparsed_function (tree decl1, tree attrs, int flags)
17821 tree fntype = TREE_TYPE (decl1);
17822 if (DECL_CLASS_SCOPE_P (decl1))
17823 ctype = DECL_CONTEXT (decl1);
17826 ctype = DECL_FRIEND_CONTEXT (decl1);
17832 if (DECL_DECLARED_INLINE_P (decl1)
17834 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
17835 "inline function %qD given attribute %qs", decl1, "noinline")
17815 "inline function %qD given attribute %qs", decl1, "noinline"); local
17956 "no previous declaration for %qD", decl1); local
18198 tree decl1; local
    [all...]
contracts.cc 1527 /* Do we need to mess with contracts for DECL1? */
1530 handle_contracts_p (tree decl1)
1534 && DECL_ABSTRACT_ORIGIN (decl1) == NULL_TREE
1535 && contract_any_active_p (DECL_CONTRACTS (decl1)));
1538 /* Should we break out DECL1's pre/post contracts into separate functions?
1543 outline_contracts_p (tree decl1)
1545 return (!DECL_CONSTRUCTOR_P (decl1)
1546 && !DECL_DESTRUCTOR_P (decl1));
1975 start_function_contracts (tree decl1)
1977 if (!handle_contracts_p (decl1))
    [all...]
pt.cc 3379 tree decl1 = TREE_VALUE (parm1); local
3384 if (error_operand_p (decl1) || error_operand_p (decl2))
3388 if (TREE_CODE (decl1) != TREE_CODE (decl2))
3394 if (DECL_IMPLICIT_TEMPLATE_PARM_P (decl1)
3399 if (template_parameter_pack_p (decl1) != template_parameter_pack_p (decl2))
3402 if (TREE_CODE (decl1) == PARM_DECL)
3405 if (!same_type_p (TREE_TYPE (decl1), TREE_TYPE (decl2)))
3412 if (!template_heads_equivalent_p (decl1, decl2))
25653 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
25659 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
25651 tree decl1 = DECL_TEMPLATE_RESULT (pat1); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
decl.cc 17057 On entry, DECL_INITIAL (decl1) should be NULL_TREE or error_mark_node,
17059 in this translation unit. On exit, DECL_INITIAL (decl1) will be
17064 start_preparsed_function (tree decl1, tree attrs, int flags)
17073 tree fntype = TREE_TYPE (decl1);
17078 ctype = DECL_FRIEND_CONTEXT (decl1);
17084 if (DECL_DECLARED_INLINE_P (decl1)
17086 warning_at (DECL_SOURCE_LOCATION (decl1), 0,
17087 "inline function %qD given attribute %qs", decl1, "noinline");
17090 if (GNU_INLINE_P (decl1))
17092 DECL_EXTERNAL (decl1) = 1
17067 "inline function %qD given attribute %qs", decl1, "noinline"); local
17202 "no previous declaration for %qD", decl1); local
17450 tree decl1; local
    [all...]
pt.cc 3405 tree decl1 = TREE_VALUE (parm1); local
3410 if (error_operand_p (decl1) || error_operand_p (decl2))
3414 if (TREE_CODE (decl1) != TREE_CODE (decl2))
3420 if (DECL_VIRTUAL_P (decl1) != DECL_VIRTUAL_P (decl2))
3424 if (template_parameter_pack_p (decl1) != template_parameter_pack_p (decl2))
3427 if (TREE_CODE (decl1) == PARM_DECL)
3430 if (!same_type_p (TREE_TYPE (decl1), TREE_TYPE (decl2)))
3437 if (!template_heads_equivalent_p (decl1, decl2))
25108 tree decl1 = DECL_TEMPLATE_RESULT (pat1);
25114 tree args1 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386-features.h 210 int ix86_compare_version_priority (tree decl1, tree decl2);
i386-features.cc 3447 /* This compares the priority of target features in function DECL1
3448 and DECL2. It returns positive value if DECL1 is higher priority,
3453 ix86_compare_version_priority (tree decl1, tree decl2)
3455 unsigned int priority1 = get_builtin_code_for_version (decl1, NULL);
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386-features.h 207 int ix86_compare_version_priority (tree decl1, tree decl2);
i386-features.cc 2464 /* This compares the priority of target features in function DECL1
2465 and DECL2. It returns positive value if DECL1 is higher priority,
2470 ix86_compare_version_priority (tree decl1, tree decl2)
2472 unsigned int priority1 = get_builtin_code_for_version (decl1, NULL);
  /src/external/gpl3/gcc/dist/gcc/c/
c-decl.cc 10467 tree decl1, old_decl;
10482 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
10484 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
10488 if (decl1 == NULL_TREE
10489 || TREE_CODE (decl1) != FUNCTION_DECL)
10497 loc = DECL_SOURCE_LOCATION (decl1);
10501 TREE_PUBLIC (decl1) = 0;
10503 c_decl_attributes (&decl1, attributes, 0);
10505 if (DECL_DECLARED_INLINE_P (decl1)
10506 && DECL_UNINLINABLE (decl1)
10435 tree decl1, old_decl; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-decl.cc 9537 tree decl1, old_decl;
9550 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
9552 invoke_plugin_callbacks (PLUGIN_START_PARSE_FUNCTION, decl1);
9556 if (decl1 == NULL_TREE
9557 || TREE_CODE (decl1) != FUNCTION_DECL)
9560 loc = DECL_SOURCE_LOCATION (decl1);
9564 TREE_PUBLIC (decl1) = 0;
9566 c_decl_attributes (&decl1, attributes, 0);
9568 if (DECL_DECLARED_INLINE_P (decl1)
9569 && DECL_UNINLINABLE (decl1)
9505 tree decl1, old_decl; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
svga3d_cmd.h 1473 SVGAGBVertexElement decl1[4]; member in struct:__anon5634
  /src/external/gpl3/gcc/dist/gcc/
genautomata.cc 1793 const_decl_t const decl1 = (const_decl_t) automaton_decl_1;
1796 gcc_assert (decl1->mode == dm_automaton
1797 && DECL_AUTOMATON (decl1)->name
1800 return strcmp (DECL_AUTOMATON (decl1)->name,
1893 const_decl_t const decl1 = (const_decl_t) insn_decl_1;
1896 gcc_assert (decl1->mode == dm_insn_reserv
1897 && DECL_INSN_RESERV (decl1)->name
1900 return strcmp (DECL_INSN_RESERV (decl1)->name,
1787 const_decl_t const decl1 = (const_decl_t) automaton_decl_1; local
1886 const_decl_t const decl1 = (const_decl_t) insn_decl_1; local
target.def 2536 is checked for dispatching earlier. DECL1 and DECL2 are
2538 if DECL1 is higher priority, negative value if DECL2 is higher priority
2546 is checked for dispatching earlier. @var{decl1} and @var{decl2} are\n\
2548 int, (tree decl1, tree decl2), NULL)
6748 /* This function returns true if DECL1 and DECL2 are versions of the same
6749 function. DECL1 and DECL2 are function versions if and only if they
6754 "This target hook returns @code{true} if @var{DECL1} and @var{DECL2} are\n\
6755 versions of the same function. @var{DECL1} and @var{DECL2} are function\n\
6759 bool, (tree decl1, tree decl2),
ipa-devirt.cc 635 /* Return true if DECL1 and DECL2 are identical methods. Consider
639 methods_equal_p (tree decl1, tree decl2)
641 if (DECL_ASSEMBLER_NAME (decl1) == DECL_ASSEMBLER_NAME (decl2))
645 const char *name1 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl1));
cgraph.h 1316 /* Record that DECL1 and DECL2 are semantically identical function
1318 static void record_function_versions (tree decl1, tree decl2);
cgraph.cc 234 /* Record that DECL1 and DECL2 are semantically identical function
237 cgraph_node::record_function_versions (tree decl1, tree decl2)
239 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
  /src/external/gpl3/gcc.old/dist/gcc/
genautomata.cc 1793 const_decl_t const decl1 = (const_decl_t) automaton_decl_1;
1796 gcc_assert (decl1->mode == dm_automaton
1797 && DECL_AUTOMATON (decl1)->name
1800 return strcmp (DECL_AUTOMATON (decl1)->name,
1893 const_decl_t const decl1 = (const_decl_t) insn_decl_1;
1896 gcc_assert (decl1->mode == dm_insn_reserv
1897 && DECL_INSN_RESERV (decl1)->name
1900 return strcmp (DECL_INSN_RESERV (decl1)->name,
1787 const_decl_t const decl1 = (const_decl_t) automaton_decl_1; local
1886 const_decl_t const decl1 = (const_decl_t) insn_decl_1; local
target.def 2496 is checked for dispatching earlier. DECL1 and DECL2 are
2498 if DECL1 is higher priority, negative value if DECL2 is higher priority
2506 is checked for dispatching earlier. @var{decl1} and @var{decl2} are\n\
2508 int, (tree decl1, tree decl2), NULL)
6533 /* This function returns true if DECL1 and DECL2 are versions of the same
6534 function. DECL1 and DECL2 are function versions if and only if they
6539 "This target hook returns @code{true} if @var{DECL1} and @var{DECL2} are\n\
6540 versions of the same function. @var{DECL1} and @var{DECL2} are function\n\
6544 bool, (tree decl1, tree decl2),
ipa-devirt.cc 632 /* Return true if DECL1 and DECL2 are identical methods. Consider
636 methods_equal_p (tree decl1, tree decl2)
638 if (DECL_ASSEMBLER_NAME (decl1) == DECL_ASSEMBLER_NAME (decl2))
642 const char *name1 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl1));
cgraph.h 1317 /* Record that DECL1 and DECL2 are semantically identical function
1319 static void record_function_versions (tree decl1, tree decl2);
cgraph.cc 232 /* Record that DECL1 and DECL2 are semantically identical function
235 cgraph_node::record_function_versions (tree decl1, tree decl2)
237 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000.cc 25338 /* This compares the priority of target features in function DECL1 and DECL2.
25339 It returns positive value if DECL1 is higher priority, negative value if
25344 rs6000_compare_version_priority (tree decl1, tree decl2)
25346 int priority1 = rs6000_clone_priority (decl1);
25352 get_decl_name (decl1), get_decl_name (decl2), ret);

Completed in 239 milliseconds

1 2