Searched defs:AS (Results 1 - 25 of 93) sorted by relevance

1234

/external/clang/test/SemaCXX/
H A Dattr-aligned.cpp8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS; typedef in typeref:struct:S2
/external/sonivox/arm-fm-22k/host_src/
H A Darm-fm-22k.mak11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe macro
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
/external/sonivox/arm-fm-22k/lib_src/
H A Darm-fm-22k_lib.mak11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe macro
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
/external/sonivox/arm-hybrid-22k/host_src/
H A Darm-hybrid-22k.mak11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe macro
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/sonivox/arm-hybrid-22k/lib_src/
H A Darm-hybrid-22k_lib.mak11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe macro
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/sonivox/arm-wt-22k/host_src/
H A Darm-wt-22k.mak11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe macro
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/sonivox/arm-wt-22k/lib_src/
H A Darm-wt-22k_lib.mak11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe macro
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa -I lib_src --defsym CHECK_STACK=0 --defsym REVERB=0 --defsym CHORUS=0 --defsym STEREO_OUTPUT=1 --defsym SAMPLE_RATE_22050=1 --defsym SAMPLES_8_BIT=1 --defsym FILTER_ENABLED=1 $<
/external/llvm/unittests/IR/
H A DVerifierTest.cpp52 AttributeSet AS = F->getAttributes(); local
53 F->setAttributes(AS.addAttribute(C, AttributeSet::ReturnIndex,
/external/clang/include/clang/AST/
H A DDeclAccessPair.h36 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) { argument
38 p.set(D, AS);
52 void setAccess(AccessSpecifier AS) { argument
53 set(getDecl(), AS); local
55 void set(NamedDecl *D, AccessSpecifier AS) { argument
56 Ptr = uintptr_t(AS) | reinterpret_cast<uintptr_t>(D);
H A DASTUnresolvedSet.h50 void addDecl(ASTContext &C, NamedDecl *D, AccessSpecifier AS) { argument
51 Decls.push_back(DeclAccessPair::make(D, AS), C);
57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) { argument
60 I->set(New, AS);
101 void addLazyDecl(ASTContext &C, uintptr_t ID, AccessSpecifier AS) { argument
104 Impl.addDecl(C, reinterpret_cast<NamedDecl*>(ID << 2), AS);
H A DDependentDiagnostic.h43 AccessSpecifier AS,
51 DD->AccessData.Access = AS;
38 Create(ASTContext &Context, DeclContext *Parent, AccessNonce _, SourceLocation Loc, bool IsMemberAccess, AccessSpecifier AS, NamedDecl *TargetDecl, CXXRecordDecl *NamingClass, QualType BaseObjectType, const PartialDiagnostic &PDiag) argument
H A DUnresolvedSet.h56 void setAccess(AccessSpecifier AS) { ir->setAccess(AS); } argument
119 void addDecl(NamedDecl *D, AccessSpecifier AS) { argument
120 decls().push_back(DeclAccessPair::make(D, AS));
139 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { argument
140 I.ir->set(New, AS);
147 void setAccess(iterator I, AccessSpecifier AS) { argument
148 I.ir->setAccess(AS);
/external/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp118 const SCEV *AS = SE->getSCEV(const_cast<Value *>(LocA.Ptr)); local
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);
H A DAliasSetTracker.cpp30 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) { argument
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
81 removeAliasSet(AliasSet *AS) argument
302 AliasSet &AS = addPointer(LI->getOperand(0), local
315 AliasSet &AS = addPointer(SI->getOperand(1), local
375 AliasSet &AS = const_cast<AliasSet&>(*I); local
394 remove(AliasSet &AS) argument
423 AliasSet *AS = findAliasSetForPointer(Ptr, Size, TBAAInfo); local
432 AliasSet *AS = findAliasSetForPointer(LI->getOperand(0), Size, TBAAInfo); local
441 AliasSet *AS = findAliasSetForPointer(SI->getOperand(1), Size, TBAAInfo); local
448 AliasSet *AS = findAliasSetForPointer(VAAI->getOperand(0), local
506 AliasSet *AS = PtrValEnt->getAliasSet(*this); local
537 AliasSet *AS = I->second->getAliasSet(*this); local
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAnnotationDictionary_autogen.cpp155 SkString SkPdfAnnotationDictionary::AS(SkPdfNativeDoc* doc) { function in class:SkPdfAnnotationDictionary
156 SkPdfNativeObject* ret = get("AS", "");
164 return get("AS", "") != NULL;
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp410 unsigned AS = Context.getTargetAddressSpace(ETy); local
411 ResultType = llvm::PointerType::get(PointeeType, AS);
420 unsigned AS = Context.getTargetAddressSpace(ETy); local
421 ResultType = llvm::PointerType::get(PointeeType, AS);
578 unsigned AS = Context.getTargetAddressSpace(FTy); local
579 ResultType = llvm::PointerType::get(PointeeType, AS);
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp435 AttributeSet AS = PAL.getSlotAttributes(i); local
436 unsigned &Entry = AttributeGroupMap[AS];
438 AttributeGroups.push_back(AS);
/external/llvm/lib/Target/
H A DTarget.cpp73 unsigned LLVMPointerSizeForAS(LLVMTargetDataRef TD, unsigned AS) { argument
74 return unwrap(TD)->getPointerSize(AS);
81 LLVMTypeRef LLVMIntPtrTypeForAS(LLVMTargetDataRef TD, unsigned AS) { argument
82 return wrap(unwrap(TD)->getIntPtrType(getGlobalContext(), AS));
89 LLVMTypeRef LLVMIntPtrTypeForASInContext(LLVMContextRef C, LLVMTargetDataRef TD, unsigned AS) { argument
90 return wrap(unwrap(TD)->getIntPtrType(*unwrap(C), AS));
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAnnotationDictionary_autogen.cpp155 SkString SkPdfAnnotationDictionary::AS(SkPdfNativeDoc* doc) { function in class:SkPdfAnnotationDictionary
156 SkPdfNativeObject* ret = get("AS", "");
164 return get("AS", "") != NULL;
/external/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp25 NamedDecl *Parser::ParseCXXInlineMethodDef(AccessSpecifier AS, argument
48 FnD = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, D,
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h41 AliasSet *AS; member in class:llvm::AliasSet::PointerRec
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;
94 assert(!AS
275 operator <<(raw_ostream &OS, const AliasSet &AS) argument
421 AliasSet &AS = getAliasSetForPointer(P, Size, TBAAInfo, &NewSet); local
[all...]
/external/llvm/lib/IR/
H A DFunction.cpp167 void Argument::addAttr(AttributeSet AS) { argument
168 assert(AS.getNumSlots() <= 1 &&
170 AttrBuilder B(AS, AS.getSlotIndex(0));
177 void Argument::removeAttr(AttributeSet AS) { argument
178 assert(AS.getNumSlots() <= 1 &&
180 AttrBuilder B(AS, AS.getSlotIndex(0));
/external/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp30 unsigned AS = V->getType()->getPointerAddressSpace(); local
31 return B.CreateBitCast(V, B.getInt8PtrTy(AS), "cstr");
42 AttributeSet AS[2]; local
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]; local
72 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture);
74 AS[1] = AttributeSet::get(M->getContext(), AttributeSet::FunctionIndex,
80 AS),
102 AttributeSet AS = local
127 AttributeSet AS[3]; local
160 AttributeSet AS[2]; local
184 AttributeSet AS[2]; local
211 AttributeSet AS; local
239 AttributeSet AS; local
267 AttributeSet AS[3]; local
376 AttributeSet AS[2]; local
400 AttributeSet AS[2]; local
433 AttributeSet AS[3]; local
466 AttributeSet AS[3]; local
[all...]
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp168 AttributeSet AS = AttributeSet::get(context, 0, AK); local
170 A->addAttr(AS);
/external/clang/lib/AST/
H A DDeclPrinter.cpp38 void Print(AccessSpecifier AS);
208 void DeclPrinter::Print(AccessSpecifier AS) { argument
209 switch(AS) {
775 AccessSpecifier AS = Base->getAccessSpecifierAsWritten(); local
776 if (AS != AS_none)
777 Print(AS);

Completed in 763 milliseconds

1234