HomeSort by: relevance | last modified time | path
    Searched defs:Existing (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
aslexternal.c 93 ACPI_PARSE_OBJECT *Existing;
167 Existing = AslGbl_ExternalsListHead;
168 while (Existing && NewPath)
170 ExistingNameOp = Existing->Asl.Child->Asl.Child;
185 ExistingArgCount = Existing->Asl.Child->Asl.Child->Asl.Next->Asl.Next;
198 Existing = Existing->Asl.Next;
445 * Process any existing external list. (Support for
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
BasicBlockSections.cpp 331 auto *Existing = MF.getFunction().getMetadata(LLVMContext::MD_annotation);
332 if (Existing) {
333 MDTuple *Tuple = cast<MDTuple>(Existing);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCTargetDesc.cpp 413 auto Existing = ArchSubtarget.find(std::string(STI->getCPU()));
414 if (Existing == ArchSubtarget.end())
416 return Existing->second.get();
422 // turns on hvxvNN, corresponding to the existing ArchVNN.
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclTemplate.cpp 326 EntryType *Existing = Specializations.GetOrInsertNode(Entry);
327 (void)Existing;
328 assert(SETraits::getDecl(Existing)->isCanonicalDecl() &&
545 ClassTemplatePartialSpecializationDecl *Existing
547 (void)Existing;
548 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
1219 VarTemplatePartialSpecializationDecl *Existing =
1221 (void)Existing;
1222 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
ASTContext.cpp 3670 // Look for an existing type with these properties.
3727 IncompleteArrayType *existing = local
3729 assert(!existing && "Shouldn't be in the map!"); (void) existing;
4262 QualType Existing = QualType(FPT, 0);
4264 // If we find a pre-existing equivalent FunctionProtoType, we can just reuse
4271 return Existing;
4276 Canonical = getCanonicalType(Existing);
4446 if (DependentExtIntType *Existing =
4448 return QualType(Existing, 0)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Pragma.cpp 904 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
905 InsertNS = Existing->getIfNamespace();
932 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
933 assert(Existing && "Namespace containing handler does not exist!");
935 NS = Existing->getIfNamespace();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 1256 auto *Existing = F.getMetadata(LLVMContext::MD_annotation);
1257 if (Existing) {
1258 MDTuple *Tuple = cast<MDTuple>(Existing);
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 265 /// Compare the given set of language options against an existing set of
369 /// Compare the given set of target options against an existing set of
421 // a strict subset of the existing feature set, there is nothing to diagnose.
428 << /* is-existing-feature */ false << Feature;
431 << /* is-existing-feature */ true << Feature;
625 /// against the preprocessor options in an existing preprocessor.
646 // Dig out the macro definition in the existing preprocessor options.
648 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
658 if (Existing.second) {
666 SuggestedPredefines += Existing.first.str()
    [all...]
ASTReaderDecl.cpp 200 /// Class used to capture the result of searching for an existing
208 NamedDecl *Existing = nullptr;
216 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing,
219 : Reader(Reader), New(New), Existing(Existing), AddResult(true),
224 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
238 operator NamedDecl*() const { return Existing; }
241 operator T*() const { return dyn_cast_or_null<T>(Existing); }
418 void mergeRedeclarable(Redeclarable<T> *D, T *Existing,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 1862 // check for an existing decl?
2323 // If there is an existing availability attribute for this platform that
2324 // has a lower priority use the existing one and discard the new
2329 // If there is an existing attribute for this platform that has a higher
2926 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>();
2927 if (Existing && !(Existing->getXDim() == WGSize[0] &&
2928 Existing->getYDim() == WGSize[1] &&
2929 Existing->getZDim() == WGSize[2]))
2948 OpenCLIntelReqdSubGroupSizeAttr *Existing
    [all...]

Completed in 63 milliseconds