HomeSort by: relevance | last modified time | path
    Searched refs:Names (Results 1 - 25 of 108) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
PseudoProbePrinter.cpp 42 Names[Name] = GUID;
63 assert(Names.count(Name) && "Pseudo probe descriptor missing for function");
64 uint64_t CallerGuid = Names[Name];
81 for (const auto &Item : Names)
PseudoProbePrinter.h 30 DenseMap<StringRef, uint64_t> Names;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeTableCollection.cpp 20 Names.resize(Records.size());
47 if (Names[I].data() == nullptr) {
49 Names[I] = Result;
51 return Names[I];
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyAsmPrinter.h 27 std::vector<std::unique_ptr<std::string>> Names;
31 Names.push_back(std::move(N));
32 return *Names.back();
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstraintSystem.cpp 110 void ConstraintSystem::dump(ArrayRef<std::string> Names) const {
122 Parts.push_back(Coefficient + Names[I - 1]);
131 SmallVector<std::string, 16> Names;
133 Names.push_back("x" + std::to_string(i));
135 dump(Names);
StackLifetime.cpp 352 SmallVector<StringRef, 16> Names;
355 Names.push_back(KV.getFirst()->getName());
357 llvm::sort(Names);
358 OS << " ; Alive: <" << llvm::join(Names, " ") << ">\n";
374 SmallVector<StringRef, 16> Names;
377 Names.push_back(KV.getFirst()->getName());
379 llvm::sort(Names);
380 OS << "\n ; Alive: <" << llvm::join(Names, " ") << ">\n";
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeTableCollection.h 37 std::vector<StringRef> Names;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
SubtargetFeatureInfo.cpp 73 std::vector<std::string> Names;
75 Names.resize(IndexUB);
77 Names[SF.second.Index] = SF.second.getEnumName();
81 OS << " \"" << Names[I] << "\",\n";
DAGISelMatcherGen.cpp 62 /// VariableMap - A map from variable names ('$dst') to the recorded operand
122 bool recordUniqueNode(ArrayRef<std::string> Names);
269 OS << "We expect complex pattern uses to have names: " << *N;
468 bool MatcherGen::recordUniqueNode(ArrayRef<std::string> Names) {
470 for (const std::string &Name : Names) {
481 for (const std::string &Name : Names) {
497 for (const std::string &Name : Names)
520 SmallVector<std::string, 4> Names;
522 Names.push_back(N->getName());
525 Names.push_back(("pred:" + Twine(Name.getScope()) + ":" + Name.getIdentifier()).str())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
TargetInfo.cpp 499 ArrayRef<const char *> Names = getGCCRegNames();
505 return n < Names.size();
508 // Check register names.
509 if (llvm::is_contained(Names, Name))
512 // Check any additional names that we have.
514 for (const char *AN : ARN.Names) {
518 // the bounds of the register names from above.
519 if (AN == Name && ARN.RegNum < Names.size())
542 ArrayRef<const char *> Names = getGCCRegNames();
548 assert(n < Names.size() && "Out of bounds register number!")
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfilingBuffer.c 34 const uint64_t NamesSize = PROFILE_RANGE_SIZE(Names) * sizeof(char);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ConstraintSystem.h 33 /// Print the constraints in the system, using x0...xn as variable names.
83 /// Print the constraints in the system, using \p Names as variable names.
84 void dump(ArrayRef<std::string> Names) const;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAsm.cpp 243 unsigned NumInputs, IdentifierInfo **Names,
268 if (Names[i])
269 OutputName = Names[i]->getName();
278 NumInputs, Names, Constraints, Exprs.data(), AsmString,
347 NumInputs, Names, Constraints, Exprs.data(), AsmString,
359 if (Names[i])
360 InputName = Names[i]->getName();
369 NumInputs, Names, Constraints, Exprs.data(), AsmString,
470 NumInputs, Names, Constraints, Exprs.data(), AsmString,
484 Names, Constraints, Exprs.data(), AsmString, NumClobbers
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/recipes/
04-test_pem.t 87 my @match = grep /The Great State of Long-Winded Certificate Field Names Whereby to Increase the Output Size/, @data;
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
function.bench.cpp 32 static constexpr const char* Names[] = {"Null",
45 static constexpr const char* Names[] = {"Opaque", "Transparent"};
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
DbiModuleList.cpp 215 // is the authority on where each filename begins in the names buffer.
269 BinaryStreamReader Names(NamesBuffer);
274 Names.setOffset(FileOffset);
276 if (auto EC = Names.readCString(Name))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 323 static bool filterByName(const StringSet<> &Names, DWARFDie Die,
330 for (auto Pattern : Names.keys()) {
342 } else if (Names.count(Name)) {
351 static void filterByName(const StringSet<> &Names,
358 if (filterByName(Names, Die, Name, OS))
361 filterByName(Names, Die, Name, OS);
405 static void filterByAccelName(ArrayRef<std::string> Names, DWARFContext &DICtx,
408 for (const auto &Name : Names) {
467 StringSet<> Names;
469 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InterfaceStubFunctionsConsumer.cpp 31 std::vector<std::string> Names;
35 std::vector<std::string> Names)
36 : ParentName(ParentName), Type(Type), Binding(Binding), Names(Names) {}
109 // - Currently have not figured out how to produce the names for FieldDecls.
301 for (auto Name : Symbol.Names) {
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmtAsm.cpp 757 SmallVector<IdentifierInfo *, 4> Names;
778 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
782 unsigned NumOutputs = Names.size();
794 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
798 assert(Names.size() == Constraints.size() &&
801 unsigned NumInputs = Names.size() - NumOutputs;
846 Names.push_back(Tok.getIdentifierInfo());
866 NumInputs, Names.data(), Constraints, Exprs,
884 bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names,
906 Names.push_back(II)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
Core.h 102 /// A set of symbol names (represented by SymbolStringPtrs for
106 /// A vector of symbol names.
109 /// A map from symbol names (as SymbolStringPtrs) to JITSymbols
113 /// A map from symbol names (as SymbolStringPtrs) to JITSymbolFlags.
190 std::initializer_list<SymbolStringPtr> Names,
192 Symbols.reserve(Names.size());
193 for (auto &Name : Names)
200 const SymbolNameSet &Names,
202 Symbols.reserve(Names.size());
203 for (const auto &Name : Names)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 444 std::vector<std::string> Names;
445 Names.reserve(NameRefs.size());
447 Names.emplace_back(*Name);
448 return Names;
473 Names(std::move(N)) {
475 for (StringRef Name : Names)
529 PatternSet(ArrayRef<std::string> Names) {
530 Patterns.reserve(Names.size());
531 for (StringRef Name : Names)
576 return llvm::any_of(Names, [&](StringRef Name)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContext.cpp 270 void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const {
271 Names.resize(pImpl->CustomMDKindNames.size());
274 Names[I->second] = I->first();
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangOpenCLBuiltinEmitter.cpp 79 SmallVector<StringRef, 4> Names;
137 // function names.
206 // List of OpenCL type names in the same order as in enum OpenCLTypeID.
214 // and to a list of function names that share these signatures.
266 // Save the type names in the same order as their enum value. Note that
277 // Enum of scalar type names (float, int, ...) and generic type sets.
521 for (const auto &Name : SLM.second.Names) {
593 SignatureListMap.find(Candidate)->second.Names.push_back(Fct.first);
623 for (const auto &FctName : SLM.second.Names) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 2343 // Name stack, this is used by the parser to hold temporary names that were
2344 // parsed. The parser collapses multiple names into new nodes to construct
2345 // the AST. Once the parser is finished, names.size() == 1.
2346 PODSmallVector<Node *, 32> Names;
2373 // This has a smaller size compared to Subs and Names because it can be
2404 Names.clear();
2428 assert(FromPosition <= Names.size());
2430 makeNodeArray(Names.begin() + (long)FromPosition, Names.end());
2431 Names.dropBack(FromPosition)
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/recipes/
04-test_pem_reading.t 88 my @match = grep /The Great State of Long-Winded Certificate Field Names Whereby to Increase the Output Size/, @data;

Completed in 107 milliseconds

1 2 3 4 5