HomeSort by relevance Sort by last modified time
    Searched refs:AS (Results 1 - 25 of 2665) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
license.py 15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  /external/mesa3d/src/mapi/glapi/gen/
license.py 15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  /external/clang/include/clang/AST/
DeclAccessPair.h 13 // natural access of a declaration when named in a class, as
36 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) {
38 p.set(D, AS);
52 void setAccess(AccessSpecifier AS) {
53 set(getDecl(), AS);
55 void set(NamedDecl *D, AccessSpecifier AS) {
56 Ptr = uintptr_t(AS) | reinterpret_cast<uintptr_t>(D);
ASTUnresolvedSet.h 50 void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS) {
51 Decls.push_back(DeclAccessPair::make(D, AS), C);
57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) {
60 I->set(New, AS);
101 void addLazyDecl(ASTContext &C, uintptr_t ID, AccessSpecifier AS) {
104 Impl.addDecl(C, reinterpret_cast<NamedDecl*>(ID << 2), AS);
UnresolvedSet.h 26 /// The iterator over UnresolvedSets. Serves as both the const and
56 void setAccess(AccessSpecifier AS) { ir->setAccess(AS); }
105 // as well use the same implementation twice.
119 void addDecl(NamedDecl *D, AccessSpecifier AS) {
120 decls().push_back(DeclAccessPair::make(D, AS));
139 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) {
140 I.ir->set(New, AS);
147 void setAccess(iterator I, AccessSpecifier AS) {
148 I.ir->setAccess(AS);
    [all...]
  /external/clang/test/SemaCXX/
missing-header.cpp 7 if (const GCCAsmStmt *AS = dyn_cast<GCCAsmStmt>(S)) {}
attr-aligned.cpp 8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS;
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 30 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) {
31 assert(!AS.Forward && "Alias set is already forwarding!");
35 AccessTy |= AS.AccessTy;
36 AliasTy |= AS.AliasTy;
37 Volatile |= AS.Volatile;
45 PointerRec *R = AS.getSomePointer();
59 if (!AS.UnknownInsts.empty())
60 std::swap(UnknownInsts, AS.UnknownInsts);
61 } else if (!AS.UnknownInsts.empty()) {
62 UnknownInsts.insert(UnknownInsts.end(), AS.UnknownInsts.begin(), AS.UnknownInsts.end())
    [all...]
ScalarEvolutionAliasAnalysis.cpp 44 /// should override this to adjust the this pointer as needed for the
118 const SCEV *AS = SE->getSCEV(const_cast<Value *>(LocA.Ptr));
122 if (AS == BS) return MustAlias;
126 if (SE->getEffectiveSCEVType(AS->getType()) ==
128 unsigned BitWidth = SE->getTypeSizeInBits(AS->getType());
133 const SCEV *BA = SE->getMinusSCEV(BS, AS);
143 // (because of INT_MIN, etc.); if the prior test failed, swap AS and BS
147 const SCEV *AB = SE->getMinusSCEV(AS, BS);
160 Value *AO = GetBaseValue(AS);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.h 26 getDataASDirective(unsigned int Size, unsigned int AS) const;
AMDGPUMCAsmInfo.cpp 81 AMDGPUMCAsmInfo::getDataASDirective(unsigned int Size, unsigned int AS) const
83 switch (AS) {
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.h 26 getDataASDirective(unsigned int Size, unsigned int AS) const;
AMDGPUMCAsmInfo.cpp 81 AMDGPUMCAsmInfo::getDataASDirective(unsigned int Size, unsigned int AS) const
83 switch (AS) {
  /external/eigen/test/
unalignedcount.cpp 20 #define VERIFY_ALIGNED_UNALIGNED_COUNT(XPR,AL,UL,AS,US) {\
23 if(!(nb_load==AL && nb_loadu==UL && nb_store==AS && nb_storeu==US)) \
25 VERIFY( (#XPR) && nb_load==AL && nb_loadu==UL && nb_store==AS && nb_storeu==US ); \
  /external/chromium_org/third_party/sqlite/src/test/
collate8.test 53 SELECT a AS x FROM t1 ORDER BY "x";
58 SELECT a AS x FROM t1 WHERE x<'ccc' ORDER BY 1
63 SELECT a AS x FROM t1 WHERE x<'ccc' COLLATE binary ORDER BY [x]
68 SELECT a AS x FROM t1 WHERE +x<'ccc' ORDER BY 1
73 SELECT a AS x FROM t1 ORDER BY +x
86 SELECT a AS x FROM t2 WHERE x='abc';
91 SELECT a AS x FROM t2 WHERE x='abc' COLLATE nocase;
96 SELECT a AS x FROM t2 WHERE (x COLLATE nocase)='abc';
101 SELECT a COLLATE nocase AS x FROM t2 WHERE x='abc';
106 SELECT a COLLATE nocase AS x FROM t2 WHERE (x COLLATE binary)='abc'
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 41 AliasSet *AS;
46 : Val(V), PrevInList(nullptr), NextInList(nullptr), AS(nullptr), Size(0),
52 bool hasAliasSet() const { return AS != nullptr; }
83 assert(AS && "No AliasSet yet!");
84 if (AS->Forward) {
85 AliasSet *OldAS = AS;
86 AS = OldAS->getForwardedTarget(AST);
87 AS->addRef();
90 return AS;
93 void setAliasSet(AliasSet *as) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 30 unsigned AS = V->getType()->getPointerAddressSpace();
31 return B.CreateBitCast(V, B.getInt8PtrTy(AS), "cstr");
42 AttributeSet AS[2];
43 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
45 AS[1] = AttributeSet::get(M->getContext(), AttributeSet::FunctionIndex,
51 AS),
71 AttributeSet AS[2];
72 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
74 AS[1] = AttributeSet::get(M->getContext(), AttributeSet::FunctionIndex,
80 AS),
    [all...]
  /external/llvm/include/llvm/IR/
Argument.h 103 void addAttr(AttributeSet AS);
106 void removeAttr(AttributeSet AS);
Type.h 256 /// means it is valid as the first operand of an insertvalue or
398 // types as pointee.
400 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0);
401 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0);
402 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0);
403 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
404 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
405 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
406 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0);
407 static PointerType *getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS = 0)
    [all...]
  /cts/tools/selinux/
SELinuxNeverallowTestFrame.py 13 * distributed under the License is distributed on an "AS IS" BASIS,
  /external/llvm/lib/Target/
Target.cpp 73 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) {
74 return unwrap(TD)->getPointerSize(AS);
81 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS) {
82 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext(), AS));
89 LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef C, LLVMTargetDataRef TD, unsigned AS) {
90 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS));
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/
imap.py 16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
smtp.py 16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  /external/llvm/unittests/IR/
VerifierTest.cpp 52 AttributeSet AS = F->getAttributes();
53 F->setAttributes(AS.addAttribute(C, AttributeSet::ReturnIndex,
  /external/llvm/include/llvm-c/
Target.h 218 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS);
220 /** Returns the integer type that is the same size as a pointer on a target.
224 /** Returns the integer type that is the same size as a pointer on a target.
227 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS);
229 /** Returns the integer type that is the same size as a pointer on a target.
233 /** Returns the integer type that is the same size as a pointer on a target.
237 unsigned AS);

Completed in 600 milliseconds

1 2 3 4 5 6 7 8 91011>>