Searched refs:MaxDepth (Results 1 - 18 of 18) sorted by relevance

/freebsd-9.3-release/sys/contrib/dev/acpica/utilities/
H A Dutcache.c60 * MaxDepth - Maximum depth of the cache (in objects)
73 UINT16 MaxDepth,
101 Cache->MaxDepth = MaxDepth;
231 if (Cache->CurrentDepth >= Cache->MaxDepth)
70 AcpiOsCreateCache( char *CacheName, UINT16 ObjectSize, UINT16 MaxDepth, ACPI_MEMORY_LIST **ReturnCache) argument
/freebsd-9.3-release/sys/contrib/dev/acpica/namespace/
H A Dnswalk.c165 * MaxDepth - Depth to which search is to reach
196 UINT32 MaxDepth,
335 (Level < MaxDepth) &&
193 AcpiNsWalkNamespace( ACPI_OBJECT_TYPE Type, ACPI_HANDLE StartNode, UINT32 MaxDepth, UINT32 Flags, ACPI_WALK_CALLBACK PreOrderVisit, ACPI_WALK_CALLBACK PostOrderVisit, void *Context, void **ReturnValue) argument
H A Dnsdump.c633 * MaxDepth - Maximum depth of dump. Use ACPI_UINT32_MAX
650 UINT32 MaxDepth,
678 (void) AcpiNsWalkNamespace (Type, StartHandle, MaxDepth,
725 * MaxDepth - Maximum depth of dump. Use INT_MAX
737 UINT32 MaxDepth)
763 AcpiNsDumpObjects (ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, MaxDepth,
647 AcpiNsDumpObjects( ACPI_OBJECT_TYPE Type, UINT8 DisplayType, UINT32 MaxDepth, ACPI_OWNER_ID OwnerId, ACPI_HANDLE StartHandle) argument
735 AcpiNsDumpTables( ACPI_HANDLE SearchBase, UINT32 MaxDepth) argument
H A Dnsxfeval.c474 * MaxDepth - Depth to which search is to reach
505 UINT32 MaxDepth,
520 (!MaxDepth) ||
555 Status = AcpiNsWalkNamespace (Type, StartObject, MaxDepth,
502 AcpiWalkNamespace( ACPI_OBJECT_TYPE Type, ACPI_HANDLE StartObject, UINT32 MaxDepth, ACPI_WALK_CALLBACK PreOrderVisit, ACPI_WALK_CALLBACK PostOrderVisit, void *Context, void **ReturnValue) argument
/freebsd-9.3-release/sys/contrib/dev/acpica/debugger/
H A Ddbstats.c126 /* MaxDepth > 0 indicates a cache object */
128 if (List->MaxDepth > 0)
133 List->MaxDepth,
134 List->MaxDepth - List->CurrentDepth,
139 if (List->MaxDepth > 0)
H A Ddbnames.c222 UINT32 MaxDepth = ACPI_UINT32_MAX; local
239 MaxDepth = ACPI_STRTOUL (DepthArg, NULL, 0);
250 AcpiNsDumpObjects (ACPI_TYPE_ANY, ACPI_DISPLAY_SUMMARY, MaxDepth,
275 UINT32 MaxDepth = ACPI_UINT32_MAX; local
285 MaxDepth = ACPI_STRTOUL (DepthArg, NULL, 0);
294 AcpiNsDumpObjects (ACPI_TYPE_ANY, ACPI_DISPLAY_SUMMARY, MaxDepth, OwnerId,
/freebsd-9.3-release/sys/contrib/dev/acpica/include/
H A Dacnamesp.h118 UINT32 MaxDepth,
212 UINT32 MaxDepth);
242 UINT32 MaxDepth,
H A Dacpiosxf.h221 UINT16 MaxDepth,
H A Dacpixf.h212 UINT32 MaxDepth,
H A Dactypes.h1168 UINT16 MaxDepth; member in struct:acpi_memory_list
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp720 unsigned MaxDepth = Slack + TailTrace.getInstrCycles(PI.PHI).Depth; local
725 if (CondDepth > MaxDepth) {
726 unsigned Extra = CondDepth - MaxDepth;
736 if (TDepth > MaxDepth) {
737 unsigned Extra = TDepth - MaxDepth;
747 if (FDepth > MaxDepth) {
748 unsigned Extra = FDepth - MaxDepth;
H A DScheduleDAG.cpp303 unsigned MaxDepth = BestI->getSUnit()->getDepth();
306 if (I->getKind() == SDep::Data && I->getSUnit()->getDepth() > MaxDepth)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp89 int MaxDepth,
96 MaxDepth(MaxDepth),
242 // 0 < CurrentDepth <= MaxDepth.
248 if (CurrentDepth == 0 || CurrentDepth > MaxDepth) {
287 const int MaxDepth; member in class:clang::ast_matchers::internal::__anon3031::MatchChildASTVisitor
375 BoundNodesTreeBuilder *Builder, int MaxDepth,
379 return matchesRecursively(Node, Matcher, Builder, MaxDepth, Traversal,
397 MaxDepth, Traversal, Bind);
406 BoundNodesTreeBuilder *Builder, int MaxDepth,
86 MatchChildASTVisitor(const DynTypedMatcher *Matcher, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder, int MaxDepth, ASTMatchFinder::TraversalKind Traversal, ASTMatchFinder::BindKind Bind) argument
373 memoizedMatchesRecursively(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, int MaxDepth, TraversalKind Traversal, BindKind Bind) argument
404 matchesRecursively(const ast_type_traits::DynTypedNode &Node, const DynTypedMatcher &Matcher, BoundNodesTreeBuilder *Builder, int MaxDepth, TraversalKind Traversal, BindKind Bind) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DValueTracking.cpp36 const unsigned MaxDepth = 6; variable
232 assert(Depth <= MaxDepth && "Limit Search Depth");
332 if (Depth == MaxDepth)
718 if (Depth < MaxDepth - 1 && !KnownZero && !KnownOne) {
734 MaxDepth-1);
841 if (Depth++ == MaxDepth)
966 if (Depth++ >= MaxDepth)
992 if (Depth++ >= MaxDepth)
1306 const unsigned MaxDepth = 6; local
1309 assert(Depth <= MaxDepth
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DRAIIObjectsForParser.h374 enum { MaxDepth = 256 }; enumerator in enum:clang::BalancedDelimiterTracker::__anon3196
H A DParser.cpp2005 if (getDepth() < MaxDepth)
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1775 size_t MaxDepth = DAG.lookup(IJ); local
1779 MaxDepth << " and size " << DAG.size() << "\n");
2094 MaxDepth << " and size " << PrunedDAG.size() <<
2097 MaxDepth >= Config.ReqChainDepth) &&
2099 BestMaxDepth = MaxDepth;
/freebsd-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp739 const unsigned MaxDepth = 6; member in namespace:__anon2594
833 if (Depth++ == MaxDepth)

Completed in 222 milliseconds