Searched refs:alias (Results 76 - 100 of 392) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/weak/
H A Dweak-5.c107 extern int vfoo1l __attribute__((weak, alias ("vfoox1l")));
/openbsd-current/gnu/usr.bin/binutils-2.17/include/opcode/
H A Dm68k.h76 /* The structure used to hold information for an opcode alias. */
80 /* The alias name. */
81 const char *alias; member in struct:m68k_opcode_alias
82 /* The instruction for which this is an alias. */
/openbsd-current/usr.bin/tmux/
H A Dcmd-rename-window.c34 .alias = "renamew",
H A Dcmd-kill-pane.c33 .alias = "killp",
H A Dcmd-kill-session.c27 * Note this deliberately has no alias to make it hard to hit by accident.
34 .alias = NULL,
H A Dcmd-show-prompt-history.c32 .alias = "showphist",
43 .alias = "clearphist",
H A Dcmd-move-window.c33 .alias = "movew",
47 .alias = "linkw",
H A Dcmd-kill-window.c31 .alias = "killw",
44 .alias = "unlinkw",
H A Dcmd-save-buffer.c39 .alias = "saveb",
50 .alias = "showb",
H A Dcmd-set-buffer.c34 .alias = "setb",
46 .alias = "deleteb",
/openbsd-current/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-graph-diff.cpp44 static cl::alias GraphDiffKeepGoingA("k", cl::aliasopt(GraphDiffKeepGoing),
50 static cl::alias GraphDiffKeepGoing1A("k1", cl::aliasopt(GraphDiffKeepGoing1),
56 static cl::alias GraphDiffKeepGoing2A("k2", cl::aliasopt(GraphDiffKeepGoing2),
65 static cl::alias GraphDiffInstrMapA("m", cl::aliasopt(GraphDiffInstrMap),
73 static cl::alias GraphDiffInstrMap1A("m1", cl::aliasopt(GraphDiffInstrMap1),
81 static cl::alias GraphDiffInstrMap2A("m2", cl::aliasopt(GraphDiffInstrMap2),
88 static cl::alias
95 static cl::alias GraphDiffDeduceSiblingCalls1A(
102 static cl::alias GraphDiffDeduceSiblingCalls2A(
126 static cl::alias GraphDiffEdgeLabel
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-pj.c187 alias (const char *new, const char *old) function
211 alias ("ifeq_s", "ifeq");
212 alias ("ifne_s", "ifne");
213 alias ("if_icmpge_s", "if_icmpge");
214 alias ("if_icmpne_s", "if_icmpne");
215 alias ("if_icmpeq_s", "if_icmpeq");
216 alias ("if_icmpgt_s", "if_icmpgt");
217 alias ("goto_s", "goto");
/openbsd-current/gnu/llvm/clang/lib/Basic/
H A DLangStandards.cpp34 #define LANGSTANDARD_ALIAS(id, alias) .Case(alias, lang_##id)
/openbsd-current/gnu/usr.bin/binutils/ld/
H A Dmri.c40 const char *alias; member in struct:section_name_struct
51 struct section_name_struct *alias; variable in typeref:struct:section_name_struct
89 (*ptr)->alias = zalias;
232 /* If there is an alias for this section, add it too. */
233 for (aptr = alias; aptr; aptr = aptr->next)
234 if (strcmp (aptr->alias, p->name) == 0)
285 mri_add_to_list (&alias, is, 0, want, 0, 0);
/openbsd-current/gnu/usr.bin/binutils-2.17/ld/
H A Dmri.c40 const char *alias; member in struct:section_name_struct
51 static struct section_name_struct *alias; variable in typeref:struct:section_name_struct
89 (*ptr)->alias = zalias;
219 /* If there is an alias for this section, add it too. */
220 for (aptr = alias; aptr; aptr = aptr->next)
221 if (strcmp (aptr->alias, p->name) == 0)
269 mri_add_to_list (&alias, is, 0, want, 0, 0);
/openbsd-current/sys/arch/mips64/include/
H A Dasm.h279 * Create a strong or weak alias.
281 #define STRONG_ALIAS(alias,sym) \
282 .global alias; alias = sym
283 #define WEAK_ALIAS(alias,sym) \
284 .weak alias; alias = sym
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dmaint.c537 struct cmd_list_element *alias = NULL; local
549 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
576 /* If they used an alias, we only want to deprecate the alias.
581 if (alias)
584 if (alias->flags & MALLOCED_REPLACEMENT)
585 xfree (alias->replacement);
588 alias->flags |= (DEPRECATED_WARN_USER | CMD_DEPRECATED);
590 alias->flags &= ~(DEPRECATED_WARN_USER | CMD_DEPRECATED);
591 alias
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DScopedNoAliasAA.cpp9 // This file defines the ScopedNoAlias alias-analysis pass, which implements
10 // metadata-based scoped no-alias support.
21 // Loads and stores can be tagged with an alias-analysis scope, and also, with
24 // ... = load %ptr1, !alias.scope !{ !scope1 }
25 // ... = load %ptr2, !alias.scope !{ !scope1, !scope2 }, !noalias !{ !scope1 }
28 // has a set of noalias scopes in some domain that is a superset of the alias
30 // accesses are assumed not to alias.
48 // A handy option for disabling scoped no-alias functionality. The same effect
54 AliasResult ScopedNoAliasAAResult::alias(const MemoryLocation &LocA, function in class:ScopedNoAliasAAResult
59 return AAResultBase::alias(Loc
[all...]
H A DScalarEvolutionAliasAnalysis.cpp10 // simple alias analysis implemented in terms of ScalarEvolution queries.
36 AliasResult SCEVAAResult::alias(const MemoryLocation &LocA, function in class:SCEVAAResult
97 if (alias(MemoryLocation(AO ? AO : LocA.Ptr,
109 return AAResultBase::alias(LocA, LocB, AAQI, nullptr);
/openbsd-current/sys/arch/hppa/include/
H A Dasm.h268 #define STRONG_ALIAS(alias,sym) ! .global alias ! .set alias, sym
269 #define WEAK_ALIAS(alias,sym) ! .weak alias ! .set alias, sym
/openbsd-current/sys/arch/alpha/include/
H A Dasm.h200 * If you need to alias a leaf function, or to provide multiple entry points
315 * Global alias for a leaf function, or alternate entry point
327 * Local alias for a leaf function, or alternate entry point
601 * Create a strong or weak alias.
603 #define STRONG_ALIAS(alias,sym) \
604 .global alias; \
605 alias = sym
606 #define WEAK_ALIAS(alias,sym) \
607 .weak alias; \
608 alias
[all...]
/openbsd-current/sys/dev/pci/
H A Dtgavar.h148 #define TGAWALREG(dc,reg,alias,val) bus_space_write_4( \
150 ((alias) * TGA_CREGS_ALIAS) + ((reg) << 2), \
/openbsd-current/lib/libm/hidden/
H A Dnamespace.h35 * DEF_STD(x) or DEF_NONSTD(x) to create the external alias.
51 * This defines x as a strong alias for _libm_x; this must only
58 * This defines x as a alias for _libm_x, weak in the static version
67 * This defines xl as an alias for _libm_x.
78 * _libm_dst a strong, hidden alias for _libm_src. You still need to
79 * DEF_STD(dst) or DEF_NONSTD(dst) to alias dst itself
108 __attribute__((alias (HIDDEN_STRING(x))))
111 __attribute__((alias (HIDDEN_STRING(x))))
/openbsd-current/usr.sbin/map-mbone/
H A Dmapper.c74 struct node *alias; /* If alias, to what? */ member in union:node::__anon4
276 else if (node->tries == -1) /* follow alias link */
277 node = node->u.alias;
325 /* Fix up any alias information */
329 ifc_node->u.alias = node;
331 && (ifc_node->tries > 0 || ifc_node->u.alias != node)) {
336 Node *tmp = ifc_node->u.alias;
338 ifc_node->u.alias = node;
377 ifc_node->u.alias
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Target/
H A DUnixSignals.h83 const char *description, const char *alias = nullptr);
123 bool default_notify, const char *description, const char *alias);

Completed in 286 milliseconds

1234567891011>>