Searched refs:alias (Results 101 - 125 of 249) sorted by relevance

12345678910

/freebsd-current/contrib/libarchive/tar/
H A Dcreation_set.c113 static const struct suffix_code_t alias[] = { local
128 return get_suffix_code(alias, suffix);
283 /* Suppose it indicates alias such as ".tgz". */
/freebsd-current/crypto/heimdal/kadmin/
H A Dget.c295 HDB_Ext_Aliases alias; local
302 &alias,
305 snprintf(buf, buf_len, "failed to decode alias");
309 for (i = 0; i < alias.aliases.len; i++) {
311 ret = krb5_unparse_name(context, &alias.aliases.val[i], &p);
319 free_HDB_Ext_Aliases(&alias);
/freebsd-current/sys/geom/part/
H A Dg_part_bsd.c117 int alias; member in struct:g_part_bsd_alias
131 const char *alias; local
144 alias = g_part_alias_name(bsd_alias_match[i].alias);
145 if (strcasecmp(type, alias) == 0) {
H A Dg_part_ebr.c134 int alias; member in struct:g_part_ebr_alias
183 const char *alias; local
196 alias = g_part_alias_name(ebr_alias_match[i].alias);
197 if (strcasecmp(type, alias) == 0) {
626 return (g_part_alias_name(ebr_alias_match[i].alias));
/freebsd-current/usr.bin/netstat/
H A Dmain.c884 char **alias; /* alias from p->aliases */ local
889 * fails, check if name is an alias for an Internet protocol.
897 for (alias = p->p_aliases; *alias; alias++)
898 if (strcmp(name, *alias) == 0) {
/freebsd-current/crypto/openssl/util/perl/OpenSSL/
H A DOrdinals.pm494 # If an alias was defined beforehand, add an item for it now
495 my $alias = $self->{aliases}->{$name};
500 push @returns, $self->add_alias($source, $alias->{name}, $name, @{$alias->{defs}})
501 if defined $alias;
507 Adds an alias ALIAS for the symbol NAME from file SOURCE, and a set of C macros
520 my $alias = shift; # This is the alias being added
522 my @defs = @_; # Platform attributes for the alias
526 "add_alias('$source' , '$alias' , '
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp11 // globals cannot alias, etc), but does no stateful analysis.
76 /// of basic alias analysis.
163 /// location size and the fact that null pointers cannot alias here.
460 /// that rely on two's complement wrap-arounds for precise alias information
863 AliasResult BasicAAResult::alias(const MemoryLocation &LocA, function in class:BasicAAResult
906 // call arguments alias the object below.
926 // is impossible to alias the pointer we're checking.
928 AAQI.AAR.alias(MemoryLocation::getBeforeOrAfter(*CI),
930 // Operand doesn't alias 'Object', continue looking for other aliases
963 // Be conservative if the accessed pointer may alias th
[all...]
H A DAliasAnalysisEvaluator.cpp21 static cl::opt<bool> PrintAll("print-all-alias-modref-info", cl::ReallyHidden);
134 AliasResult AR = AA.alias(I1->first, Size1, I2->first, Size2);
160 AliasResult AR = AA.alias(MemoryLocation::get(cast<LoadInst>(Load)),
187 AliasResult AR = AA.alias(MemoryLocation::get(cast<StoreInst>(*I1)),
211 // Mod/ref alias analysis: compare all pairs of calls and values
239 // Mod/ref alias analysis: compare all pairs of calls
284 errs() << " " << NoAliasCount << " no alias responses ";
286 errs() << " " << MayAliasCount << " may alias responses ";
288 errs() << " " << PartialAliasCount << " partial alias responses ";
290 errs() << " " << MustAliasCount << " must alias response
[all...]
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
129 // We alias unles
[all...]
/freebsd-current/contrib/bsnmp/snmp_mibII/
H A DmibII.c555 if ((ifp->alias = malloc(alias_maxlen)) == NULL) {
561 irr.ifr_buffer.buffer = ifp->alias;
564 free(ifp->alias);
565 ifp->alias = NULL;
569 free(ifp->alias);
570 ifp->alias = NULL;
574 ifp->alias_size = strnlen(ifp->alias, alias_maxlen) + 1;
580 ifp->alias = realloc(ifp->alias, ifp->alias_size);
763 if (ifp->alias !
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dinternal_defs.h35 #define ALIAS(X) __attribute__((alias(X)))
51 // This check is only available on Clang. This is essentially an alias of
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DGlobalsModRef.h9 /// This is the interface for a simple mod/ref and alias analysis over globals.
26 /// An alias analysis result set for globals.
96 AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB,
126 /// Analysis pass providing a never-invalidated alias analysis result.
160 // createGlobalsAAWrapperPass - This pass provides alias and mod/ref info for
/freebsd-current/sbin/dhclient/
H A Ddhclient.c215 if (_ifi->client->alias)
217 _ifi->client->alias);
346 if (ifi->client->alias)
347 script_write_params("alias_", ifi->client->alias);
493 if (ifi->client->alias)
494 priv_script_write_params("alias_", ifi->client->alias);
901 if (ip->client->alias)
902 script_write_params("alias_", ip->client->alias);
1396 if (ip->client->alias)
1398 ip->client->alias);
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCTargetOptionsCommandFlags.cpp109 static cl::alias NoWarnW("W", cl::desc("Alias for --no-warn"),
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp114 switch (AA->alias(A, B)) {
127 // An ObjC-Identified object can't alias a load if it is never locally stored.
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Diterator.inc186 // [const.iterators.alias], alias templates
H A Datomic.inc58 // [atomics.alias], type aliases
/freebsd-current/contrib/ofed/infiniband-diags/src/
H A Dibccquery.c389 r->alias ? r->alias : "",
/freebsd-current/sys/contrib/openzfs/udev/
H A Dvdev_id8 # create an alias that reflects the physical location of the drive.
20 # The alias keyword provides a simple way to map already-existing
111 # # Example vdev_id.conf - alias
116 # alias d1 /dev/disk/by-id/wwn-0x5000c5002de3b9ca
117 # alias d2 wwn-0x5000c5002def789e
648 # and the following alias in vdev_id.conf.
650 # alias A0 dm-name-isw_dibgbfcije_ARRAY0
661 # digits as partitions, causing alias creation to fail. This
682 alias=$(awk -v var="$l" '($1 == "alias")
[all...]
/freebsd-current/contrib/ntp/sntp/libevent/include/event2/
H A Dhttp.h339 Add a server alias to an http object. The http object can be a virtual
343 @param alias the alias to add
347 int evhttp_add_server_alias(struct evhttp *http, const char *alias);
350 Remove a server alias from an http object.
353 @param alias the alias to remove
357 int evhttp_remove_server_alias(struct evhttp *http, const char *alias);
/freebsd-current/lib/libc/gen/
H A Dsem.c99 #define WEAK_REF(sym, alias) __weak_reference(sym, alias)
/freebsd-current/contrib/libevent/include/event2/
H A Dhttp.h339 Add a server alias to an http object. The http object can be a virtual
343 @param alias the alias to add
347 int evhttp_add_server_alias(struct evhttp *http, const char *alias);
350 Remove a server alias from an http object.
353 @param alias the alias to remove
357 int evhttp_remove_server_alias(struct evhttp *http, const char *alias);
/freebsd-current/bin/sh/
H A Dinput.c52 #include "alias.h"
66 struct alias *ap; /* if push was associated with an alias */
195 * Add a space to the end of an alias to ensure that the
196 * alias remains in use while parsing its last word.
197 * This avoids alias recursions.
301 pushstring(const char *s, int len, struct alias *ap)
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dmath_config.h85 extern __typeof (f) a __attribute__ ((alias (#f))) attribute_copy (f);
87 extern __typeof (f) a __attribute__ ((alias (#f), visibility ("hidden"))) \
/freebsd-current/contrib/arm-optimized-routines/math/
H A Dmath_config.h83 extern __typeof (f) a __attribute__ ((alias (#f))) attribute_copy (f);
85 extern __typeof (f) a __attribute__ ((alias (#f), visibility ("hidden"))) \

Completed in 338 milliseconds

12345678910