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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/AST/
DeclAccessPair.h 13 // natural access of a declaration when named in a class, as
35 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) {
37 p.set(D, AS);
51 void setAccess(AccessSpecifier AS) {
52 set(getDecl(), AS);
54 void set(NamedDecl *D, AccessSpecifier AS) {
55 Ptr = reinterpret_cast<NamedDecl*>(uintptr_t(AS) |
UnresolvedSet.h 24 /// The iterator over UnresolvedSets. Serves as both the const and
52 void setAccess(AccessSpecifier AS) { ir->setAccess(AS); }
101 // as well use the same implementation twice.
115 void addDecl(NamedDecl *D, AccessSpecifier AS) {
116 decls().push_back(DeclAccessPair::make(D, AS));
135 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) {
136 I.ir->set(New, AS);
149 void setAccess(iterator I, AccessSpecifier AS) {
150 I.ir->setAccess(AS);
    [all...]
  /external/clang/test/SemaCXX/
missing-header.cpp 7 if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {}
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 31 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) {
32 assert(!AS.Forward && "Alias set is already forwarding!");
36 AccessTy |= AS.AccessTy;
37 AliasTy |= AS.AliasTy;
38 Volatile |= AS.Volatile;
46 PointerRec *R = AS.getSomePointer();
60 if (!AS.UnknownInsts.empty())
61 std::swap(UnknownInsts, AS.UnknownInsts);
62 } else if (!AS.UnknownInsts.empty()) {
63 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/llvm/include/llvm/Analysis/
AliasSetTracker.h 42 AliasSet *AS;
47 : Val(V), PrevInList(0), NextInList(0), AS(0), Size(0),
53 bool hasAliasSet() const { return AS != 0; }
84 assert(AS && "No AliasSet yet!");
85 if (AS->Forward) {
86 AliasSet *OldAS = AS;
87 AS = OldAS->getForwardedTarget(AST);
88 AS->addRef();
91 return AS;
94 void setAliasSet(AliasSet *as) {
    [all...]
  /external/llvm/lib/CodeGen/
MachineCopyPropagation.cpp 78 for (const uint16_t *AS = TRI->getAliasSet(Reg); *AS; ++AS) {
79 SI = SrcMap.find(*AS);
194 for (const uint16_t *AS = TRI->getAliasSet(Src); *AS; ++AS) {
195 CI = CopyMap.find(*AS);
214 for (const uint16_t *AS = TRI->getAliasSet(Def); *AS; ++AS)
    [all...]
InterferenceCache.cpp 83 for (const uint16_t *AS = TRI->getOverlaps(PhysReg); *AS; ++AS) {
84 LiveIntervalUnion *LIU = LIUArray + *AS;
99 for (const uint16_t *AS = TRI->getOverlaps(PhysReg); *AS; ++AS, ++i) {
100 LiveIntervalUnion *LIU = LIUArray + *AS;
192 // Model the regmask clobber as a dead def.
  /external/sonivox/jet_tools/JetCreator/
JetSystemInfo.py 17 distributed under the License is distributed on an "AS IS" BASIS,
JetHelp.py 17 distributed under the License is distributed on an "AS IS" BASIS,
JetStatusEvent.py 17 distributed under the License is distributed on an "AS IS" BASIS,
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 10 // This file contains a class to be used as the basis for target specific
39 /// MCAsmInfo - This class is intended to be used as a base class for asm
163 /// zero terminated strings on this target. This is commonly supported as
175 /// [Data|Code]Begin - These magic labels are used to marked a region as
188 /// which should be relocated as a 64-bit GP-relative offset, e.g. .gpdword
193 /// which should be relocated as a 32-bit GP-relative offset, e.g. .gpword
199 virtual const char *getDataASDirective(unsigned Size, unsigned AS) const {
200 assert(AS != 0 && "Don't know the directives for default addr space");
233 /// space created as the result of a alignment directive.
282 /// global as being a weak undefined symbol
    [all...]
  /external/llvm/include/llvm/
Type.h 71 NumTypeIDs, // Must remain as last defined ID
245 /// means it is valid as the first operand of an insertvalue or
376 // types as pointee.
378 static PointerType *getHalfPtrTy(LLVMContext &C, unsigned AS = 0);
379 static PointerType *getFloatPtrTy(LLVMContext &C, unsigned AS = 0);
380 static PointerType *getDoublePtrTy(LLVMContext &C, unsigned AS = 0);
381 static PointerType *getX86_FP80PtrTy(LLVMContext &C, unsigned AS = 0);
382 static PointerType *getFP128PtrTy(LLVMContext &C, unsigned AS = 0);
383 static PointerType *getPPC_FP128PtrTy(LLVMContext &C, unsigned AS = 0);
384 static PointerType *getX86_MMXPtrTy(LLVMContext &C, unsigned AS = 0)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/
build_vc.pl 19 my ($CC, $CC_OPTS, $AS, $AS_OPTS, $LIB, $LIB_OPTS, $LIB_TYPE);
23 $AS = 'armasm';
85 $command = $AS.' '.$AS_OPTS.' '.$hd.' -o '.$objfile.' '.$file;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/
build_vc.pl 19 my ($CC, $CC_OPTS, $AS, $AS_OPTS, $LIB, $LIB_OPTS, $LIB_TYPE);
23 $AS = 'armasm';
87 $command = $AS.' '.$AS_OPTS.' '.$hd.' -o '.$objfile.' '.$file;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/
build_vc.pl 19 my ($CC, $CC_OPTS, $AS, $AS_OPTS, $LIB, $LIB_OPTS, $LIB_TYPE);
23 $AS = 'armasm';
85 $command = $AS.' '.$AS_OPTS.' '.$hd.' -o '.$objfile.' '.$file;
  /external/chromium/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/sonivox/arm-fm-22k/host_src/
arm-fm-22k.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
19 $(AS) -o $@ -EL -mcpu=arm946e-s -mfpu=softfpa $<
  /external/sonivox/arm-hybrid-22k/host_src/
arm-hybrid-22k.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
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/
arm-wt-22k.mak 11 AS = C:\Program Files\GNUARM\bin\arm-elf-as.exe
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/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 302 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
303 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) {
313 unsigned int DIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
321 Report->markInteresting(AS->Region);
353 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
354 if (!AS && FunctionsToTrack[idx].Kind != ValidAPI) {
357 // If trying to free data which has not been allocated yet, report as a bug.
360 if (!AS || RegionArgIsBad) {
362 // have entered as an enclosing function parameter.
373 if (AS)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
coretypes.h 8 the terms of the GNU General Public License as published by the Free
19 3.1, as published by the Free Software Foundation.
84 #define ADDR_SPACE_GENERIC_P(AS) ((AS) == ADDR_SPACE_GENERIC)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
coretypes.h 8 the terms of the GNU General Public License as published by the Free
19 3.1, as published by the Free Software Foundation.
84 #define ADDR_SPACE_GENERIC_P(AS) ((AS) == ADDR_SPACE_GENERIC)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
coretypes.h 8 the terms of the GNU General Public License as published by the Free
19 3.1, as published by the Free Software Foundation.
84 #define ADDR_SPACE_GENERIC_P(AS) ((AS) == ADDR_SPACE_GENERIC)

Completed in 764 milliseconds

1 2 3 4 5 6 7 8 91011>>