| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| DWARFVerifier.cpp | 984 for (const DWARFDebugNames::NameIndex &NI : AccelTable) { 985 if (NI.getCUCount() == 0) { 987 NI.getUnitOffset()); 991 for (uint32_t CU = 0, End = NI.getCUCount(); CU < End; ++CU) { 992 uint64_t Offset = NI.getCUOffset(CU); 998 NI.getUnitOffset(), Offset); 1006 NI.getUnitOffset(), Offset, Iter->second); 1009 Iter->second = NI.getUnitOffset(); 1022 DWARFVerifier::verifyNameIndexBuckets(const DWARFDebugNames::NameIndex &NI, 1034 if (NI.getBucketCount() == 0) [all...] |
| DWARFAcceleratorTable.cpp | 793 for (const NameIndex &NI : NameIndices) 794 NI.dump(W); 883 const DWARFDebugNames::NameIndex &NI, StringRef Key) 884 : CurrentIndex(&NI), IsLocal(true), Key(std::string(Key)) { 899 for (const auto &NI : *this) { 900 for (uint32_t CU = 0; CU < NI.getCUCount(); ++CU) 901 CUToNameIndex.try_emplace(NI.getCUOffset(CU), &NI);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCInstrInfo.h | 47 void InitMCInstrInfo(const MCInstrDesc *D, const unsigned *NI, const char *ND, 51 InstrNameIndices = NI;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFVerifier.h | 258 unsigned verifyNameIndexBuckets(const DWARFDebugNames::NameIndex &NI, 260 unsigned verifyNameIndexAbbrevs(const DWARFDebugNames::NameIndex &NI); 261 unsigned verifyNameIndexAttribute(const DWARFDebugNames::NameIndex &NI, 264 unsigned verifyNameIndexEntries(const DWARFDebugNames::NameIndex &NI, 267 const DWARFDebugNames::NameIndex &NI);
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_ccm_hw_aesni.inc | 11 * AES-NI support for AES CCM.
|
| cipher_aes_gcm_hw_aesni.inc | 11 * AES-NI support for AES GCM.
|
| cipher_aes_hw_aesni.inc | 11 * AES-NI support for AES modes ecb, cbc, ofb, cfb, ctr.
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_ccm_hw_aesni.inc | 11 * AES-NI support for AES CCM.
|
| cipher_aes_gcm_hw_aesni.inc | 11 * AES-NI support for AES GCM.
|
| cipher_aes_hw_aesni.inc | 11 * AES-NI support for AES modes ecb, cbc, ofb, cfb, ctr.
|
| /src/external/bsd/ntp/dist/sntp/scripts/ |
| genLocInfo | 177 *,bin,*) DB=bin ; DL= ; DS= ; NI= ;; 178 *,libexec,*) DB= ; DL=libexec ; DS= ; NI= ;; 179 *,noinst,*) DB= ; DL= ; DS= ; NI=noinst ;; 180 *,sbin,*) DB= ; DL= ; DS=sbin ; NI= ;;
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| AttrImpl.cpp | 104 alignments_iterator NI = alignments_begin(); 108 if (*NI) { 110 (*NI)->printPretty(OS, nullptr, Policy); 113 ++NI;
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| ThreadSafetyTIL.cpp | 296 unsigned NI = I - NumUnreachableBlocks; 297 Blocks[NI] = Blocks[I]; 298 Blocks[NI]->BlockID = NI;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| SetVector.h | 179 auto NI = vector_.begin(); 180 std::advance(NI, std::distance<iterator>(NI, I)); 182 return vector_.erase(NI);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| DominanceFrontierImpl.h | 195 for (typename DomTreeNodeT::const_iterator NI = currentNode->begin(), 197 NI != NE; ++NI) { 198 DomTreeNodeT *IDominee = *NI;
|
| /src/external/gpl2/groff/font/devps/ |
| Makefile | 11 NB NBI NI NR PB PBI PI PR TB TBI TI TR ZCMI \
|
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| ClangSyntaxEmitter.cpp | 69 auto NI = ByName.find(Name); 70 assert(NI != ByName.end() && "no such node"); 71 return *NI->second;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| ScheduleDAGSDNodes.cpp | 312 for (SDNode &NI : DAG->allnodes()) { 313 SDNode *Node = &NI; 330 for (SDNode &NI : DAG->allnodes()) { 331 NI.setNodeId(-1); 350 SDNode *NI = Worklist.pop_back_val(); 353 for (const SDValue &Op : NI->op_values()) 357 if (isPassiveNode(NI)) // Leaf node, e.g. a TargetImmediate. 361 if (NI->getNodeId() != -1) continue; 363 SUnit *NodeSUnit = newSUnit(NI); 370 SDNode *N = NI; [all...] |
| SelectionDAGPrinter.cpp | 67 SDNodeIterator NI = SDNodeIterator::begin(TargetNode); 68 std::advance(NI, I.getNode()->getOperand(I.getOperand()).getResNo()); 69 return NI;
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| DeadStoreElimination.cpp | 1681 // Check for any extra throws between SI and NI that block DSE. This only 1684 bool mayThrowBetween(Instruction *SI, Instruction *NI, 1692 if (SI->getParent() == NI->getParent()) 1697 // Check if \p NI acts as a DSE barrier for \p SI. The following instructions 1702 bool isDSEBarrier(const Value *SILocUnd, Instruction *NI) { 1703 // If NI may throw it acts as a barrier, unless we are to an alloca/alloca 1705 if (NI->mayThrow() && !isInvisibleToCallerBeforeRet(SILocUnd)) 1708 // If NI is an atomic load/store stronger than monotonic, do not try to 1710 if (NI->isAtomic()) { 1711 if (auto *LI = dyn_cast<LoadInst>(NI)) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
| DbiModuleDescriptorBuilder.h | 77 void setPdbFilePathNI(uint32_t NI);
|
| DbiStream.h | 91 Expected<StringRef> getECName(uint32_t NI) const;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| ModuloSchedule.cpp | 1584 for (auto I = BB->begin(), NI = NewBB->begin(); !I->isTerminator(); 1585 ++I, ++NI) { 1587 CanonicalMIs[&*NI] = &*I; 1588 BlockMIs[{NewBB, &*I}] = &*NI; 1638 MachineInstr *NI = BuildMI(*DestBB, DestBB->getFirstNonPHI(), 1642 BlockMIs[{DestBB, CanonicalMIs[MI]}] = NI; 1643 CanonicalMIs[NI] = CanonicalMIs[MI]; 1863 MachineInstr *NI = BuildMI(NewBB, DebugLoc(), TII->get(TargetOpcode::PHI), R) 1866 BlockMIs[{NewBB, &MI}] = NI; 1867 CanonicalMIs[NI] = &MI [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| DbiModuleDescriptorBuilder.cpp | 57 void DbiModuleDescriptorBuilder::setPdbFilePathNI(uint32_t NI) { 58 PdbFilePathNI = NI;
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| DDG.cpp | 238 for (DDGNode *NI : Pi->getNodes()) 239 PiBlockMap.insert(std::make_pair(NI, Pi));
|