Searched refs:AS (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/clang/include/clang/Basic/
H A DAddressSpaces.h72 /// \return whether \p AS is a target-specific address space rather than a
74 inline bool isTargetAddressSpace(LangAS AS) { argument
75 return (unsigned)AS >= (unsigned)LangAS::FirstTargetAddressSpace;
78 inline unsigned toTargetAddressSpace(LangAS AS) { argument
79 assert(isTargetAddressSpace(AS));
80 return (unsigned)AS - (unsigned)LangAS::FirstTargetAddressSpace;
88 inline bool isPtrSizeAddressSpace(LangAS AS) { argument
89 return (AS == LangAS::ptr32_sptr || AS == LangAS::ptr32_uptr ||
90 AS
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DDeclAccessPair.h35 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) { argument
37 p.set(D, AS);
51 void setAccess(AccessSpecifier AS) { argument
52 set(getDecl(), AS); local
54 void set(NamedDecl *D, AccessSpecifier AS) { argument
55 Ptr = uintptr_t(AS) | reinterpret_cast<uintptr_t>(D);
/openbsd-current/regress/usr.sbin/bgpd/integrationtests/
H A Dbgpd.as0.conf0 AS 64500
H A Dbgpd.med.conf0 AS 64500
H A Dbgpd.attr.conf0 AS 64500
H A Dbgpd.md5.rdomain1.conf0 AS 4200000001
H A Dbgpd.md5.rdomain2.conf0 AS 4200000002
H A Dbgpd.ovs.rdomain1.conf0 AS 4200000001
H A Dbgpd.ovs.rdomain2.conf0 AS 4200000002
H A Dbgpd.network_statement.rdomain1.conf0 AS 4200000001
H A Dbgpd.maxprefix.rdomain1.conf0 AS 4200000001
H A Dbgpd.maxprefix.rdomain2.conf0 AS 4200000002
H A Dbgpd.maxprefixout.rdomain1.conf0 AS 4200000001
H A Dbgpd.maxprefixout.rdomain2.conf0 AS 4200000002
H A Dbgpd.pftable.rdomain1.conf0 AS 4200000001
H A Dbgpd.pftable.rdomain2_1.conf0 AS 4200000002
H A Dbgpd.pftable.rdomain2_2.conf0 AS 4200000003
H A Dbgpd.ixp.rdomain2_4.conf0 AS 4
H A Dbgpd.ixp.rdomain2_1.conf0 AS 1
H A Dbgpd.capa.client.conf0 AS 65001
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/
H A Dqualttp20.C8 struct AS struct
34 B1<AS> b1; // { dg-error "instantiated" "" }
35 B2<AS> b2; // { dg-error "instantiated" "" }
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DStatepoint.cpp24 llvm::parseStatepointDirectivesFromAttrs(AttributeList AS) { argument
27 Attribute AttrID = AS.getFnAttr("statepoint-id");
34 Attribute AttrNumPatchBytes = AS.getFnAttr("statepoint-num-patch-bytes");
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DAliasSetTracker.cpp43 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST, argument
45 assert(!AS.Forward && "Alias set is already forwarding!");
50 Access |= AS.Access;
51 Alias |= AS.Alias;
58 PointerRec *R = AS.getSomePointer();
70 if (AS.Alias == SetMustAlias)
71 AST.TotalMayAliasSetSize += AS.size();
74 bool ASHadUnknownInsts = !AS.UnknownInsts.empty();
77 std::swap(UnknownInsts, AS.UnknownInsts);
81 llvm::append_range(UnknownInsts, AS
104 removeAliasSet(AliasSet *AS) argument
550 AliasSet &AS = getAliasSetFor(Loc); local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/WebAssembly/Utils/
H A DWebAssemblyTypeUtilities.h62 inline bool isDefaultAddressSpace(unsigned AS) { argument
63 return AS == WASM_ADDRESS_SPACE_DEFAULT;
65 inline bool isWasmVarAddressSpace(unsigned AS) { argument
66 return AS == WASM_ADDRESS_SPACE_VAR;
68 inline bool isValidAddressSpace(unsigned AS) { argument
69 return isDefaultAddressSpace(AS) || isWasmVarAddressSpace(AS);
/openbsd-current/gnu/llvm/llvm/lib/Target/AVR/
H A DAVR.h69 unsigned AS = PT->getAddressSpace(); local
70 if (AS < NumAddrSpaces)
71 return static_cast<AddressSpace>(AS);
90 AddressSpace AS = getAddressSpace(V);
91 assert(ProgramMemory <= AS && AS <= ProgramMemory5);
92 return static_cast<int>(AS - ProgramMemory);

Completed in 141 milliseconds

1234567891011>>