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

1 2 3 4

  /src/sys/rump/dev/lib/libhdaudio_hdafg/
Makefile 10 COMMENT=High Definition Audio (hdaudio) driver
  /src/external/gpl3/binutils/dist/gprofng/src/
BaseMetric.h 35 class Definition;
133 BaseMetric (const char *_cmd, const char *_username, Definition *def); // derived metrics
154 Definition *get_definition () { return definition; };
196 Hwcentry *hw_ctr; // HWC definition
202 Definition *definition; member in class:BaseMetric
215 class Definition
226 Definition (opType _op);
227 ~Definition ();
    [all...]
BaseMetric.cc 48 definition = NULL;
204 Definition *def)
210 definition = def;
270 definition = NULL;
271 if (m.definition)
272 definition = Definition::add_definition (m.definition->def);
288 delete definition;
872 Definition::Definition (opType _op
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
BaseMetric.h 35 class Definition;
133 BaseMetric (const char *_cmd, const char *_username, Definition *def); // derived metrics
154 Definition *get_definition () { return definition; };
196 Hwcentry *hw_ctr; // HWC definition
202 Definition *definition; member in class:BaseMetric
215 class Definition
226 Definition (opType _op);
227 ~Definition ();
    [all...]
BaseMetric.cc 48 definition = NULL;
204 Definition *def)
210 definition = def;
270 definition = NULL;
271 if (m.definition)
272 definition = Definition::add_definition (m.definition->def);
288 delete definition;
872 Definition::Definition (opType _op
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
Macros.h 65 /// Definition: A(x, y)=x + y
69 /// Expansion does not check arity of the definition.
85 /// Definition: A(x)=x+x
97 /// macro-definition language:
98 /// <definition> ::= <id> <expansion> | <id> "(" <params> ")" <expansion>
125 struct Definition;
135 llvm::StringMap<Definition> Definitions;
MacroExpander.cpp 35 struct MacroExpander::Definition {
56 // Parse the token stream and return the corresonding Definition object.
57 // Returns an empty definition object with a null-Name on error.
58 MacroExpander::Definition parse() {
118 Definition Def;
145 auto Definition = Parser.parse();
146 Definitions[Definition.Name] = std::move(Definition);
162 const Definition &Def = Definitions.find(ID->TokenText)->second;
202 // Expand the definition into Result
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSAUpdater.h 70 /// Insert a definition into the MemorySSA IR. RenameUses will rename any use
72 /// to true if the definition may cause new aliases for loads below it. This
180 /// with a specified clobbering definition.
185 /// nodes, or verify the clobbering definition. The insertion place is used
192 MemoryAccess *createMemoryAccessInBB(Instruction *I, MemoryAccess *Definition,
202 /// nodes, or verify the clobbering definition.
207 MemoryAccess *Definition,
210 MemoryAccess *Definition,
273 // instructions and blocks cloned, and a map of MemoryPhi : Definition
  /src/external/apache2/llvm/dist/llvm/tools/yaml2obj/
yaml2obj.cpp 40 "definition. The syntax is <macro>=<definition>"));
61 StringRef Macro, Definition;
62 std::tie(Macro, Definition) = Define.split('=');
67 if (!Defines.try_emplace(Macro, Definition).second) {
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexSymbol.h 101 Definition = 1 << 1,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 331 Argument *Definition;
351 ArgumentGraph() { SyntheticRoot.Definition = nullptr; }
361 Node.Definition = A;
590 // definition we'll get at link time is *exactly* the definition we see now.
705 // definition we'll get at link time is *exactly* the definition we see now.
773 // made. If the definition doesn't have a 'nocapture' attribute by now, it
779 if (!ArgumentSCC[0]->Definition)
785 Argument *A = ArgumentSCC[0]->Definition;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 1019 // type's visibility unless it's a definition.
2133 // A declaration is a definition unless [...] it contains the 'extern'
2136 // it declares a static data member outside a class definition and the variable
2140 // specialization of a static data member template is a definition if the
2158 return Definition;
2160 return Definition;
2164 // A definition of an identifier is a declaration for that identifier that
2169 // initializer, the declaration is an external definition for the identifier
2171 return Definition;
2174 return Definition;
    [all...]
DeclBase.cpp 481 const Decl *Definition = nullptr;
483 Definition = ID->getDefinition();
485 Definition = PD->getDefinition();
487 Definition = TD->getDefinition();
489 if (!Definition)
490 Definition = this;
492 if (auto *attr = Definition->getAttr<ExternalSourceSymbolAttr>())
951 const FunctionDecl *Definition;
952 if (FD->hasBody(Definition))
953 return Definition->getSourceRange().getEnd()
    [all...]
  /src/external/mit/isl/dist/doc/
manual.tex 44 \newtheorem{definition}[def]{Definition}
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 369 : SExpr(COP_Variable), Name(s), Definition(D) {
375 Definition(D), Cvdecl(Cvd) {
380 : SExpr(Vd), Name(Vd.Name), Definition(D), Cvdecl(Vd.Cvdecl) {
395 /// Return the definition of the variable.
398 SExpr *definition() { return Definition; } function in class:clang::threadSafety::Variable
399 const SExpr *definition() const { return Definition; } function in class:clang::threadSafety::Variable
403 void setDefinition(SExpr *E) { Definition = E; }
426 // The TIL type or definition
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexingContext.cpp 331 case SymbolRole::Definition:
410 Roles |= (unsigned)SymbolRole::Definition;
462 SymbolRoleSet Roles = (unsigned)SymbolRole::Definition;
IndexSymbol.cpp 415 APPLY_FOR_ROLE(Definition);
458 case SymbolRole::Definition: OS << "Def"; break;
IndexingAction.cpp 208 ? SymbolRole::Definition
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSAUpdater.cpp 58 // Single predecessor case, just recurse, we can only have one definition.
141 // previous definition. If a definition is not found the block of the access,
143 // definition.
152 // the previous definition. If the definition is not found in the block of the
588 // previous definition must exist, otherwise NewDefMUDI would not
883 // If BB has multiple predecessors, get last definition from IDom.
905 llvm_unreachable("Unable to get last definition.");
1025 assert(DefPn != nullptr && "Unable to find last definition.")
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PreprocessingRecord.h 73 /// A macro definition.
147 /// Record the location of a macro definition.
160 /// Retrieve the location of the macro name in the definition.
171 /// The definition of this macro or the name of the macro if it is
180 MacroExpansion(MacroDefinitionRecord *Definition, SourceRange Range)
181 : PreprocessedEntity(MacroExpansionKind, Range), NameOrDef(Definition) {
194 /// The definition of the macro being expanded. May return null if
395 /// Register a new macro definition.
512 /// Retrieve the macro definition that corresponds to the given
  /src/crypto/external/apache2/openssl/dist/util/
mkdef.pl 61 # For example, with a target definition that includes:
300 ; Definition file for the DLL version of the $libname library from OpenSSL
  /src/crypto/external/bsd/openssl/dist/util/
mkdef.pl 61 # For example, with a target definition that includes:
299 ; Definition file for the DLL version of the $libname library from OpenSSL
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 756 // If this is a definition subject to the ODR, and we already have a
757 // definition, merge this one into it.
763 // This is the first time we've seen an imported definition. Look for a
764 // local definition before deciding that we are the first definition.
873 // definition (which is required for `setPure`).
1161 // Read the definition.
1167 // If we already have a definition, keep the definition invariant and
1172 // Set the definition data of the canonical declaration, so othe
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 847 /// Represents a variable declaration or definition.
965 /// Whether this variable is a definition which was demoted due to
1186 /// This declaration is a tentative definition.
1189 /// This declaration is definitely a definition.
1190 Definition
1193 /// Check whether this declaration is a definition. If this could be
1194 /// a tentative definition (in C), don't check whether there's an overriding
1195 /// definition.
1207 /// Get the tentative definition that acts as the real definition in a TU
    [all...]
  /src/external/bsd/flex/dist/src/
scan.l 218 synerr( _("Definition name too long\n"));
320 {WS} /* separates name and definition */
329 format_synerr( _("Definition value for {%s} too long\n"), nmstr);
346 synerr( _( "incomplete name definition" ) );
713 _( "undefined definition {%s}" ),

Completed in 67 milliseconds

1 2 3 4