Home
last modified time | relevance | path

Searched refs:label_name (Results 1 – 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DArgs.cpp199 void Args::Dump(Stream &s, const char *label_name) const { in Dump()
200 if (!label_name) in Dump()
206 s.Format("{0}[{1}]=\"{2}\"\n", label_name, i++, entry.ref()); in Dump()
208 s.Format("{0}[{1}]=NULL\n", label_name, i); in Dump()
/freebsd-12-stable/sys/dev/ice/
Dice_flex_pipe.c490 static void ice_add_tunnel_hint(struct ice_hw *hw, char *label_name, u16 val) in ice_add_tunnel_hint() argument
499 if (strncmp(label_name, tnls[i].label_prefix, len)) in ice_add_tunnel_hint()
506 if ((label_name[len] - '0') == hw->pf_id) { in ice_add_tunnel_hint()
533 char *label_name; in ice_init_pkg_hints() local
543 label_name = ice_enum_labels(ice_seg, ICE_SID_LBL_RXPARSER_TMEM, &state, in ice_init_pkg_hints()
546 while (label_name) { in ice_init_pkg_hints()
547 if (!strncmp(label_name, ICE_TNL_PRE, strlen(ICE_TNL_PRE))) in ice_init_pkg_hints()
549 ice_add_tunnel_hint(hw, label_name, val); in ice_init_pkg_hints()
551 label_name = ice_enum_labels(NULL, 0, &state, &val); in ice_init_pkg_hints()
1307 char *label_name; in ice_find_label_value() local
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
DArgs.h93 void Dump(Stream &s, const char *label_name = "argv") const;
/freebsd-12-stable/contrib/libstdc++/scripts/
Dmake_graph.py82 def __get_label(self, tst_dat, label_name): argument
83 label = tst_dat.getElementsByTagName(label_name)[0].firstChild.data
/freebsd-12-stable/contrib/gcc/config/ia64/
Dia64.c9687 const char *label_name; in ia64_profile_hook() local
9689 label_name = (*targetm.strip_name_encoding) (ggc_strdup (buf)); in ia64_profile_hook()
9690 label = gen_rtx_SYMBOL_REF (Pmode, label_name); in ia64_profile_hook()
/freebsd-12-stable/contrib/gcc/config/rs6000/
Drs6000.c16428 const char *label_name; in output_profile_hook() local
16432 label_name = (*targetm.strip_name_encoding) (ggc_strdup (buf)); in output_profile_hook()
16433 fun = gen_rtx_SYMBOL_REF (Pmode, label_name); in output_profile_hook()
17978 add_compiler_branch_island (tree label_name, tree function_name, in add_compiler_branch_island() argument
17981 tree branch_island = build_tree_list (function_name, label_name); in add_compiler_branch_island()
/freebsd-12-stable/contrib/gcc/
DChangeLog-200110700 (output_profile_hook): Declare label_name const.