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

1 2

  /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-fm-22k/lib_src/
arm-fm-22k_lib.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-hybrid-22k/lib_src/
arm-hybrid-22k_lib.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/sonivox/arm-wt-22k/lib_src/
arm-wt-22k_lib.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 $<
  /sdk/emulator/qtools/tests/
common_head.mk 3 AS := arm-elf-as
  /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) |
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 130 unsigned AS = cast<llvm::PointerType>(allocPtr->getType())->getAddressSpace();
132 CGF.Builder.CreateBitCast(allocPtr, CGF.SizeTy->getPointerTo(AS));
150 unsigned AS = cast<llvm::PointerType>(newPtr->getType())->getAddressSpace();
152 = CGF.Builder.CreateBitCast(cookiePtr, CGF.SizeTy->getPointerTo(AS));
165 // Not sure whether we want thread-safe static local variables as VS
CGCXXABI.cpp 191 // Derive a char* in the same address space as the pointer.
192 unsigned AS = cast<llvm::PointerType>(ptr->getType())->getAddressSpace();
193 llvm::Type *charPtrTy = CGF.Int8Ty->getPointerTo(AS);
CodeGenTypes.cpp 172 // structure as a member.
191 /// point. This boils down to being whether it is complete, as well as whether
315 // LLVM void type can only be used as the result of a function call. Just
316 // map to the same as char.
321 // Note that we always return bool as i1 for use as a scalar type.
347 // type),. or can be represented as a set of native operations.
361 // Model std::nullptr_t as i8*
389 unsigned AS = Context.getTargetAddressSpace(ETy)
    [all...]
ItaniumCXXABI.cpp 302 unsigned AS = cast<llvm::PointerType>(Base->getType())->getAddressSpace();
305 Base = Builder.CreateBitCast(Base, Builder.getInt8Ty()->getPointerTo(AS));
313 = CGF.ConvertTypeForMem(MPT->getPointeeType())->getPointerTo(AS);
449 // A NULL pointer is represented as -1.
463 // the class object containing it, represented as a ptrdiff_t
494 // discrimination as the least significant bit of ptr does for
503 // represented as a ptrdiff_t.
695 /// The ARM ABI does the same as the Itanium ABI, but returns 'this'.
719 /// The ARM ABI does the same as the Itanium ABI, but returns 'this'
740 // Check if we need a VTT parameter as well
    [all...]
  /external/llvm/lib/Analysis/
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);
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...]
ScalarEvolutionExpander.cpp 59 // it is being used as an insert point. Clear its operand
182 // Move the insertion point out of as many loops as we can.
377 /// ScalarEvolution not recognizing inttoptr and ptrtoint operators, as
406 // Split AddRecs up into parts as either of the parts may be usable
555 // Move the insertion point out of as many loops as we can.
580 // Move the insertion point out of as many loops as we can.
726 // Emit instructions to add all the operands. Hoist as much as possibl
    [all...]
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 212 EDDisassembler::AssemblySyntax AS;
220 AS = EDDisassembler::kEDAssemblySyntaxARMUAL;
224 AS = EDDisassembler::kEDAssemblySyntaxX86ATT;
229 disassembler(EDDisassembler::getDisassembler(TS.c_str(), 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/Transforms/Scalar/
LICM.cpp 10 // This pass performs loop invariant code motion, attempting to remove as much
11 // code from the body of a loop as possible. It does this by either hoisting
106 // State that is updated as we process loops.
148 /// this function moves it to the exit blocks and patches up SSA form as
181 void PromoteAliasSet(AliasSet &AS,
397 // in the same alias set as something that ends up being modified.
420 // in the loop, we can hoist or sink the call as appropriate.
424 AliasSet &AS = *I;
425 if (!AS.isForwardingAliasSet() && AS.isMod())
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 37 void Print(AccessSpecifier AS);
209 void DeclPrinter::Print(AccessSpecifier AS) {
210 switch(AS) {
233 // Don't print ObjCIvarDecls, as they are printed when visiting the
707 AccessSpecifier AS = Base->getAccessSpecifierAsWritten();
708 if (AS != AS_none)
709 Print(AS);
    [all...]
RecordLayoutBuilder.cpp 365 // This is the most derived class, traverse virtual bases as well.
476 // This is the most derived class, traverse virtual bases as well.
602 /// pointer, as opposed to inheriting one from a primary base class.
659 /// alignment as the initial alignment. This is used for the
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 306 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
307 if (!definitelyReturnedError(AS->Region, State, C.getSValBuilder())) {
317 unsigned int DIdx = FunctionsToTrack[AS->AllocatorIdx].DeallocatorIdx;
325 Report->markInteresting(AS->Region);
357 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
358 if (!AS && FunctionsToTrack[idx].Kind != ValidAPI) {
361 // If trying to free data which has not been allocated yet, report as a bug.
364 if (!AS || RegionArgIsBad) {
366 // have entered as an enclosing function parameter.
377 if (AS)
    [all...]
  /external/libogg/win32/
Makefile 8 # with or without modifications, as long as this notice is preserved.
70 AS = @AS@
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 450 // such as arguments for implicit member initializers.
925 SymbolRef AS = SV.getAsLocSymbol();
926 if (AS == Sym) {
933 SymbolRef AS = PSV.getAsLocSymbol();
934 if (AS == Sym) {
    [all...]
  /external/webkit/Source/WebKit/android/content/
address_detector.cpp 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
89 // Additional characters used as new line delimiters.
218 // the next house number as no address can hold this word.
259 // Explicitly exclude "et al", as "al" is a valid state code.
361 // Iterations only used as a fail-safe against any buggy infinite loops.
673 AS = 3, // AS American Samoa
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
103 FE, CO, NI, CU, ZN, GA, GE, AS, SE, BR, KR, RB, SR, Y, ZR, NB, MO, TC, RU, RH, PD, AG, CD,

Completed in 953 milliseconds

1 2