HomeSort by: relevance | last modified time | path
    Searched defs:alias (Results 1 - 25 of 249) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/gpl3/gcc/dist/libgcc/
unwind-compat.h 28 #define alias(name) \ macro
29 __typeof(name) __libunwind##name __attribute__ ((alias (#name)))
  /src/external/gpl3/gcc.old/dist/libgcc/
unwind-compat.h 28 #define alias(name) \ macro
29 __typeof(name) __libunwind##name __attribute__ ((alias (#name)))
  /src/usr.bin/ypcat/
ypalias_init.h 3 const char *alias, *name; member in struct:ypalias
  /src/bin/sh/
alias.h 1 /* $NetBSD: alias.h,v 1.9 2018/12/03 06:40:26 kre Exp $ */
34 * @(#)alias.h 8.2 (Berkeley) 5/4/95
39 struct alias { struct
40 struct alias *next;
46 struct alias *lookupalias(const char *, int);
  /src/external/gpl3/gdb.old/dist/gdb/
namespace.h 28 been aliased within the IMPORT_DEST namespace, ALIAS is set to a
29 string representing the alias. Otherwise, ALIAS is NULL.
39 alias = NULL
47 alias = NULL
56 alias = "localname"
62 alias = NULL
72 alias = "LOCALNS"
83 alias = "localname"
94 const char *alias; member in struct:using_direct
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
namespace.h 28 been aliased within the IMPORT_DEST namespace, ALIAS is set to a
29 string representing the alias. Otherwise, ALIAS is NULL.
39 alias = NULL
47 alias = NULL
56 alias = "localname"
62 alias = NULL
72 alias = "LOCALNS"
83 alias = "localname"
94 const char *alias; member in struct:using_direct
    [all...]
  /src/sbin/ifconfig/
af_inetany.c 72 bool alias, delete, replace; local
91 else if (!prop_dictionary_get_bool(env, "alias", &alias) || alias ||
116 if (!prop_dictionary_get_bool(env, "alias", &alias)) {
121 delete = !alias;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Weak.h 25 IdentifierInfo *alias; // alias (optional) member in class:clang::WeakInfo
30 : alias(nullptr), loc(SourceLocation()), used(false) {}
31 WeakInfo(IdentifierInfo *Alias, SourceLocation Loc)
32 : alias(Alias), loc(Loc), used(false) {}
33 inline IdentifierInfo * getAlias() const { return alias; }
38 return alias == RHS.getAlias() && loc == RHS.getLocation();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
AliasAnalysis.h 1 //===- llvm/Analysis/AliasAnalysis.h - Alias Analysis Interface -*- C++ -*-===//
10 // common interface used by all clients of alias analysis information, and
11 // implemented by all alias analysis implementations. Mod/Ref information is
27 // alias, regardless of the value of the Size component.
68 /// The possible results of an alias query.
71 /// a query to some alias analysis.
88 unsigned int Alias : AliasBits;
94 /// The two locations do not alias at all.
100 /// The two locations may or may not alias. This is the least precise
103 /// The two locations alias, but only due to a partial overlap
1164 AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB, function
    [all...]
CFLSteensAliasAnalysis.h 1 //==- CFLSteensAliasAnalysis.h - Unification-based Alias Analysis -*- C++-*-==//
9 /// This is the interface for LLVM's unification-based alias analysis
67 /// Get the alias summary for the given function
73 AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB, function in class:llvm::CFLSteensAAResult
84 return AAResultBase::alias(LocA, LocB, AAQI);
88 return AAResultBase::alias(LocA, LocB, AAQI);
107 /// Analysis pass providing a never-invalidated alias analysis result.
139 // alias analysis.
  /src/external/gpl3/gcc/dist/gcc/
symtab-thunks.h 42 alias (NULL),
52 alias (t.alias),
80 alias = other.alias;
98 TARGET_USE_LOCAL_THUNK_ALIAS_P macro, this may have to be a new alias. */
99 tree alias; variable
  /src/external/gpl3/gcc.old/dist/gcc/
symtab-thunks.h 42 alias (NULL),
52 alias (t.alias),
80 alias = other.alias;
98 TARGET_USE_LOCAL_THUNK_ALIAS_P macro, this may have to be a new alias. */
99 tree alias; variable
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-memopt.h 34 sim_memopt *alias; /* linked list */ member in struct:_sim_memopt
  /src/external/gpl3/gdb/dist/sim/common/
sim-memopt.h 34 sim_memopt *alias; /* linked list */ member in struct:_sim_memopt
  /src/sys/arch/next68k/next68k/
autoconf.c 78 const char *alias; member in struct:device_equiv
159 if (device_equiv->alias &&
160 strcmp(name, device_equiv->alias) == 0)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ObjCARCAliasAnalysis.cpp 10 /// of Objective C to enhance other optimization passes which rely on the Alias
39 AliasResult ObjCARCAAResult::alias(const MemoryLocation &LocA, function in class:ObjCARCAAResult
43 return AAResultBase::alias(LocA, LocB, AAQI);
46 // precise alias query.
50 AAResultBase::alias(MemoryLocation(SA, LocA.Size, LocA.AATags),
56 // ObjC-specific no-ops, and try making an imprecise alias query.
60 Result = AAResultBase::alias(MemoryLocation::getBeforeOrAfter(UA),
79 // a precise alias query.
86 // ObjC-specific no-ops, and try making an imprecise alias query.
145 "ObjC-ARC-Based Alias Analysis", false, true
    [all...]
ScalarEvolutionAliasAnalysis.cpp 1 //===- ScalarEvolutionAliasAnalysis.cpp - SCEV-based Alias Analysis -------===//
10 // simple alias analysis implemented in terms of ScalarEvolution queries.
26 AliasResult SCEVAAResult::alias(const MemoryLocation &LocA, function in class:SCEVAAResult
85 if (alias(MemoryLocation(AO ? AO : LocA.Ptr,
97 return AAResultBase::alias(LocA, LocB, AAQI);
136 "ScalarEvolution-based Alias Analysis", false, true)
139 "ScalarEvolution-based Alias Analysis", false, true)
ScopedNoAliasAA.cpp 1 //===- ScopedNoAliasAA.cpp - Scoped No-Alias Alias Analysis ---------------===//
9 // This file defines the ScopedNoAlias alias-analysis pass, which implements
10 // metadata-based scoped no-alias support.
12 // Alias-analysis scopes are defined by an id (which can be a string or some
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
55 AliasResult ScopedNoAliasAAResult::alias(const MemoryLocation &LocA, function in class:ScopedNoAliasAAResult
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAliasAnalysis.cpp 9 /// This is the AMGPU address space based alias analysis pass.
27 "AMDGPU Address space based Alias Analysis", false, true)
30 "AMDGPU Address space based Alias Analysis Wrapper", false, true)
70 AliasResult AMDGPUAAResult::alias(const MemoryLocation &LocA, function in class:AMDGPUAAResult
83 // alias to a LOCAL or PRIVATE pointer.
86 // Canonicalize the location order to simplify the following alias check.
106 // In the kernel function, kernel arguments won't alias to (local)
111 // location B is not captured, that argument pointer won't alias to it
118 // Forward the query to the next alias analysis.
119 return AAResultBase::alias(LocA, LocB, AAQI)
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/src/
Symbol.h 55 return alias ? alias : this;
79 Symbol *alias; member in class:Symbol
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Symbol.h 55 return alias ? alias : this;
79 Symbol *alias; member in class:Symbol
  /src/lib/libc/locale/
nb_lc_template.h 178 const char *aliaspath, *alias; local
182 alias = __unaliasname(aliaspath, key, &buf[0], sizeof(buf)); \
183 if (alias != NULL) { \
184 ret = (force = !__isforcemapping(alias)) \
187 : _PREFIX(load_sub)(alias, name, out_name, out_impl, \
200 /* (2) lookup locname/catname type alias */
209 /* (3) lookup locname type alias */
  /src/usr.bin/sdpquery/
command.c 46 static struct alias { struct
  /src/crypto/external/bsd/heimdal/dist/lib/hdb/
common.c 83 const hdb_entry_alias *alias,
90 alias, &len, ret);
138 hdb_entry_alias alias; local
140 ret = hdb_value2entry_alias(context, &value, &alias);
145 hdb_principal2key(context, alias.principal, &key);
147 free_hdb_entry_alias(&alias);
288 hdb_entry_alias alias; local
301 code = hdb_value2entry_alias(context, &value, &alias);
309 code = krb5_principal_compare(context, alias.principal,
311 free_hdb_entry_alias(&alias);
    [all...]
  /src/crypto/external/bsd/openssl/dist/include/openssl/
objects.h 45 int alias; member in struct:obj_name_st

Completed in 60 milliseconds

1 2 3 4 5 6 7 8 910