| /external/harfbuzz_ng/src/ | 
| D | hb-atomic.hh | 59 #define hb_atomic_int_impl_add(AI, V)		__atomic_fetch_add ((AI), (V), __ATOMIC_ACQ_REL)  argument60 #define hb_atomic_int_impl_set_relaxed(AI, V)	__atomic_store_n ((AI), (V), __ATOMIC_RELAXED)  argument
 61 #define hb_atomic_int_impl_set(AI, V)		__atomic_store_n ((AI), (V), __ATOMIC_RELEASE)  argument
 62 #define hb_atomic_int_impl_get_relaxed(AI)	__atomic_load_n ((AI), __ATOMIC_RELAXED)  argument
 63 #define hb_atomic_int_impl_get(AI)		__atomic_load_n ((AI), __ATOMIC_ACQUIRE)  argument
 87 #define hb_atomic_int_impl_add(AI, V)		(reinterpret_cast<std::atomic<int> *> (AI)->fetch_add ((V), …  argument
 88 #define hb_atomic_int_impl_set_relaxed(AI, V)	(reinterpret_cast<std::atomic<int> *> (AI)->store ((V…  argument
 89 #define hb_atomic_int_impl_set(AI, V)		(reinterpret_cast<std::atomic<int> *> (AI)->store ((V), std:…  argument
 90 #define hb_atomic_int_impl_get_relaxed(AI)	(reinterpret_cast<std::atomic<int> const *> (AI)->load (…  argument
 91 #define hb_atomic_int_impl_get(AI)		(reinterpret_cast<std::atomic<int> const *> (AI)->load (std::me…  argument
 [all …]
 
 | 
| /external/llvm/unittests/Transforms/Utils/ | 
| D | IntegerDivision.cpp | 37   Function::arg_iterator AI = F->arg_begin();  in TEST()  local67   Function::arg_iterator AI = F->arg_begin();  in TEST()  local
 97   Function::arg_iterator AI = F->arg_begin();  in TEST()  local
 127   Function::arg_iterator AI = F->arg_begin();  in TEST()  local
 158   Function::arg_iterator AI = F->arg_begin();  in TEST()  local
 188   Function::arg_iterator AI = F->arg_begin();  in TEST()  local
 218   Function::arg_iterator AI = F->arg_begin();  in TEST()  local
 248   Function::arg_iterator AI = F->arg_begin();  in TEST()  local
 
 | 
| /external/clang/include/clang/CodeGen/ | 
| D | CGFunctionInfo.h | 124     auto AI = ABIArgInfo(Direct);  variable132     auto AI = getDirect(T);  variable
 137     auto AI = ABIArgInfo(Extend);  variable
 144     auto AI = getExtend(T);  variable
 154     auto AI = ABIArgInfo(Indirect);  variable
 164     auto AI = getIndirect(Alignment, ByVal, Realign);  variable
 169     auto AI = ABIArgInfo(InAlloca);  in getInAlloca()  local
 174     auto AI = ABIArgInfo(Expand);  in getExpand()  local
 180     auto AI = getExpand();  in getExpandWithPadding()  local
 219     auto AI = ABIArgInfo(CoerceAndExpand);  in getCoerceAndExpand()  local
 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ | 
| D | StackProtector.cpp | 164 bool StackProtector::HasAddressTaken(const Instruction *AI) {  in HasAddressTaken()282       if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {  in RequiresStackProtector()  local
 388                            const TargetLoweringBase *TLI, AllocaInst *&AI) {  in CreatePrologue()
 414   AllocaInst *AI = nullptr;       // Place on stack that stores the stack guard.  in InsertStackProtectors()  local
 561     const AllocaInst *AI = MFI.getObjectAllocation(I);  in copyToMachineFrameInfo()  local
 
 | 
| D | AggressiveAntiDepBreaker.cpp | 164       for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local182     for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local
 314   for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)  in HandleLastUse()  local
 397     for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) {  in PrescanInstruction()  local
 428     for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in PrescanInstruction()  local
 688         for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) {  in FindSuitableFreeRegisters()  local
 927           for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI)  in BreakAntiDependencies()  local
 
 | 
| D | RegUsageInfoCollector.cpp | 149     for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)  in runOnMachineFunction()  local162       for (MCRegAliasIterator AI(PReg, TRI, true); AI.isValid(); ++AI)  in runOnMachineFunction()  local
 
 | 
| D | CriticalAntiDepBreaker.cpp | 74       for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local92     for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local
 205     for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) {  in PrescanInstruction()  local
 335     for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in ScanInstruction()  local
 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ | 
| D | AArch64StackTagging.cpp | 271     AllocaInst *AI;  member393 bool AArch64StackTagging::isInterestingAlloca(const AllocaInst &AI) {  in isInterestingAlloca()
 407 void AArch64StackTagging::tagAlloca(AllocaInst *AI, Instruction *InsertBefore,  in tagAlloca()
 428 void AArch64StackTagging::untagAlloca(AllocaInst *AI, Instruction *InsertBefore,  in untagAlloca()
 442     AllocaInst *AI = Info.AI;  in insertBaseTaggedPointer()  local
 532       if (auto *AI = dyn_cast<AllocaInst>(I)) {  in runOnFunction()  local
 538         if (auto *AI =  in runOnFunction()  local
 548         AllocaInst *AI =  in runOnFunction()  local
 616     AllocaInst *AI = Info.AI;  in runOnFunction()  local
 
 | 
| /external/llvm/lib/CodeGen/ | 
| D | StackProtector.cpp | 166 bool StackProtector::HasAddressTaken(const Instruction *AI) {  in HasAddressTaken()237       if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) {  in RequiresStackProtector()  local
 319                            const TargetLoweringBase *TLI, AllocaInst *&AI) {  in CreatePrologue()
 340   AllocaInst *AI = nullptr;       // Place on stack that stores the stack guard.  in InsertStackProtectors()  local
 
 | 
| D | MachineCopyPropagation.cpp | 111   for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in ClobberRegister()  local215       for (MCRegAliasIterator AI(Src, TRI, true); AI.isValid(); ++AI) {  in CopyPropagateBlock()  local
 276       for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in CopyPropagateBlock()  local
 
 | 
| D | AggressiveAntiDepBreaker.cpp | 153       for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local169     for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local
 301   for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)  in HandleLastUse()  local
 379     for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) {  in PrescanInstruction()  local
 410     for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in PrescanInstruction()  local
 670         for (MCRegAliasIterator AI(NewReg, TRI, false); AI.isValid(); ++AI) {  in FindSuitableFreeRegisters()  local
 910           for (MCRegAliasIterator AI(AntiDepReg, TRI, true); AI.isValid(); ++AI)  in BreakAntiDependencies()  local
 
 | 
| D | CriticalAntiDepBreaker.cpp | 61       for (MCRegAliasIterator AI(LI.PhysReg, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local76     for (MCRegAliasIterator AI(*I, TRI, true); AI.isValid(); ++AI) {  in StartBlock()  local
 189     for (MCRegAliasIterator AI(Reg, TRI, false); AI.isValid(); ++AI) {  in PrescanInstruction()  local
 309     for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {  in ScanInstruction()  local
 
 | 
| /external/llvm/tools/sancov/ | 
| D | sancov.cc | 257   bool isBlacklisted(const AddrInfo &AI) {  in isBlacklisted()685         group_by(AllAddrInfo, [](const AddrInfo &AI) { return AI.FileName; });  in computeFileCoverage()
 687         group_by(CovAddrInfo, [](const AddrInfo &AI) { return AI.FileName; });  in computeFileCoverage()
 708     auto AllLocs = group_by(AllAddrInfo, [](const AddrInfo &AI) {  in computeLineStatusMap()
 711     auto CovLocs = group_by(CovAddrInfo, [](const AddrInfo &AI) {  in computeLineStatusMap()
 731     for (const auto &AI : AllAddrInfo) {  in computeAllFunctions()  local
 739     auto CovFns = group_by(CovAddrInfo, [](const AddrInfo &AI) {  in computeCoveredFunctions()
 752     auto AllFns = group_by(AllAddrInfo, [](const AddrInfo &AI) {  in computeNotCoveredFunctions()
 755     auto CovFns = group_by(CovAddrInfo, [](const AddrInfo &AI) {  in computeNotCoveredFunctions()
 770     auto AllFns = group_by(AllAddrInfo, [](const AddrInfo &AI) {  in computeFunctionsCoverage()
 [all …]
 
 | 
| /external/llvm/lib/DebugInfo/DWARF/ | 
| D | DWARFFormValue.cpp | 152       RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr);  in extractValue()  local191       RelocAddrMap::const_iterator AI = cu->getRelocMap()->find(*offset_ptr-4);  in extractValue()  local
 222       RelocAddrMap::const_iterator AI =  in extractValue()  local
 
 | 
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ | 
| D | PromoteMemoryToRegister.cpp | 64 bool llvm::isAllocaPromotable(const AllocaInst *AI) {  in isAllocaPromotable()315 static void removeLifetimeIntrinsicUsers(AllocaInst *AI) {  in removeLifetimeIntrinsicUsers()
 347 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info,  in rewriteSingleStoreAlloca()
 444 static bool promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info,  in promoteSingleBlockAlloca()
 541     AllocaInst *AI = Allocas[AllocaNum];  in run()  local
 774     AllocaInst *AI, AllocaInfo &Info,  in ComputeLiveInBlocks()
 940       DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src);  in RenamePass()  local
 
 | 
| D | MetaRenamer.cpp | 96       for (auto AI = M.alias_begin(), AE = M.alias_end(); AI != AE; ++AI) {  in runOnModule()  local146       for (auto AI = F.arg_begin(), AE = F.arg_end(); AI != AE; ++AI)  in runOnFunction()  local
 
 | 
| /external/llvm/lib/Transforms/Utils/ | 
| D | PromoteMemoryToRegister.cpp | 51 bool llvm::isAllocaPromotable(const AllocaInst *AI) {  in isAllocaPromotable()304 static void removeLifetimeIntrinsicUsers(AllocaInst *AI) {  in removeLifetimeIntrinsicUsers()
 336 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info,  in rewriteSingleStoreAlloca()
 436 static bool promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info,  in promoteSingleBlockAlloca()
 529     AllocaInst *AI = Allocas[AllocaNum];  in run()  local
 776     AllocaInst *AI, AllocaInfo &Info,  in ComputeLiveInBlocks()
 935       DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src);  in RenamePass()  local
 
 | 
| D | MetaRenamer.cpp | 84       for (auto AI = M.alias_begin(), AE = M.alias_end(); AI != AE; ++AI) {  in runOnModule()  local125       for (auto AI = F.arg_begin(), AE = F.arg_end(); AI != AE; ++AI)  in runOnFunction()  local
 
 | 
| D | InstructionNamer.cpp | 35       for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();  in runOnFunction()  local
 | 
| /external/clang/test/Modules/Inputs/merge-template-members/ | 
| D | a2.h | 8   typedef A<int> AI;  typedef
 | 
| D | a1.h | 8   typedef A<int> AI;  typedef
 | 
| /external/llvm/lib/Transforms/IPO/ | 
| D | IPConstantPropagation.cpp | 76     CallSite::arg_iterator AI = CS.arg_begin();  in PropagateConstantsIntoArguments()  local105   Function::arg_iterator AI = F.arg_begin();  in PropagateConstantsIntoArguments()  local
 
 | 
| /external/llvm/lib/Target/X86/ | 
| D | X86RegisterInfo.cpp | 491       for (MCRegAliasIterator AI(X86::R8 + n, this, true); AI.isValid(); ++AI)  in getReservedRegs()  local495       for (MCRegAliasIterator AI(X86::XMM8 + n, this, true); AI.isValid(); ++AI)  in getReservedRegs()  local
 501       for (MCRegAliasIterator AI(X86::XMM0 + n, this, true); AI.isValid(); ++AI)  in getReservedRegs()  local
 
 | 
| /external/compiler-rt/lib/ubsan/ | 
| D | ubsan_diag.cc | 77       AddressInfo AI;  in MaybeReportErrorSummary()  local87     const AddressInfo &AI = Loc.getSymbolizedStack()->info;  in MaybeReportErrorSummary()  local
 423   const AddressInfo &AI = Stack.get()->info;  in IsPCSuppressed()  local
 
 | 
| /external/llvm/lib/Transforms/Instrumentation/ | 
| D | BoundsChecking.cpp | 197     } else if (AtomicCmpXchgInst *AI = dyn_cast<AtomicCmpXchgInst>(Inst)) {  in runOnFunction()  local200     } else if (AtomicRMWInst *AI = dyn_cast<AtomicRMWInst>(Inst)) {  in runOnFunction()  local
 
 |