Searched defs:Depth (Results 1 - 25 of 71) sorted by relevance

123

/external/clang/lib/Sema/
H A DScope.cpp35 Depth = parent->Depth + 1;
47 Depth = 0;
208 OS << "Depth: " << Depth << '\n'; local
H A DSemaTemplateVariadic.cpp543 unsigned Depth = 0, Index = 0; local
549 Depth = TTP->getDepth();
557 std::tie(Depth, Index) = getDepthAndIndex(ND);
584 if (Depth >= TemplateArgs.getNumLevels() ||
585 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
591 NewPackSize = TemplateArgs(Depth, Index).pack_size();
603 if (PartialDepth == Depth && PartialIndex == Index)
646 unsigned Depth; local
651 Depth = TTP->getDepth();
673 std::tie(Depth, Inde
[all...]
/external/expat/examples/
H A Doutline.c46 int Depth; variable
53 for (i = 0; i < Depth; i++)
63 Depth++;
69 Depth--;
/external/javassist/src/main/javassist/runtime/
H A DCflow.java26 private static class Depth { class in class:Cflow
28 Depth() { depth = 0; } method in class:Cflow.Depth
35 return new Depth();
41 public void enter() { ((Depth)get()).inc(); }
46 public void exit() { ((Depth)get()).dec(); }
51 public int value() { return ((Depth)get()).get(); }
/external/libcxxabi/test/
H A Ddynamic_cast_stress.cpp15 template <std::size_t Indx, std::size_t Depth>
17 : public virtual C<Indx, Depth-1>,
18 public virtual C<Indx+1, Depth-1>
29 template <std::size_t Indx, std::size_t Depth>
31 : public virtual C<Indx, Depth-1>,
32 public virtual C<Indx+1, Depth-1>
36 template <class Indx, std::size_t Depth>
39 template <std::size_t ...Indx, std::size_t Depth>
40 struct makeB<std::__tuple_indices<Indx...>, Depth>
41 : public B<Indx, Depth>
56 const std::size_t Depth = 5; local
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp44 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
71 bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) { argument
83 if (Depth < 3 &&
85 MayAutorelease(JCS, Depth + 1))
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
H A DSDL_vglvideo.h40 int Depth; member in struct:__anon29599
/external/clang/include/clang/Sema/
H A DTemplate.h65 const TemplateArgument &operator()(unsigned Depth, unsigned Index) const { argument
66 assert(Depth < TemplateArgumentLists.size());
67 assert(Index < TemplateArgumentLists[getNumLevels() - Depth - 1].size());
68 return TemplateArgumentLists[getNumLevels() - Depth - 1][Index];
75 bool hasTemplateArgument(unsigned Depth, unsigned Index) const {
76 assert(Depth < TemplateArgumentLists.size());
78 if (Index >= TemplateArgumentLists[getNumLevels() - Depth - 1].size())
81 return !(*this)(Depth, Index).isNull();
85 void setArgument(unsigned Depth, unsigned Index,
87 assert(Depth < TemplateArgumentList
[all...]
H A DScope.h130 /// Depth - This is the depth of this scope. The translation-unit scope has
132 unsigned short Depth; member in class:clang::Scope
/external/lldb/include/lldb/Core/
H A DSearchFilter.h49 } Depth; typedef in class:lldb_private::Searcher
61 virtual Depth
/external/llvm/include/llvm/CodeGen/
H A DScoreboardHazardRecognizer.h46 size_t Depth; member in class:llvm::ScoreboardHazardRecognizer::Scoreboard
50 Scoreboard():Data(nullptr), Depth(0), Head(0) { }
55 size_t getDepth() const { return Depth; }
57 // Depth is expected to be a power-of-2.
58 assert(Depth && !(Depth & (Depth - 1)) &&
61 return Data[(Head + idx) & (Depth-1)];
66 Depth = d;
67 Data = new unsigned[Depth];
[all...]
H A DMachineTraceMetrics.h226 unsigned Depth; member in struct:llvm::MachineTraceMetrics::InstrCycles
286 /// Return the Depth of a PHI instruction in a trace center block successor.
/external/chromium_org/third_party/libxml/chromium/
H A Dlibxml_utils.h62 int Depth() { return xmlTextReaderDepth(reader_); } function in class:XmlReader
/external/clang/tools/libclang/
H A DCXComment.cpp336 unsigned clang_TParamCommandComment_getIndex(CXComment CXC, unsigned Depth) { argument
338 if (!TPCC || !TPCC->isPositionValid() || Depth >= TPCC->getDepth())
341 return TPCC->getIndex(Depth);
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp336 unsigned Depth = PredTBI->InstrDepth + CurCount; local
337 if (!Best || Depth < BestDepth)
338 Best = Pred, BestDepth = Depth;
774 unsigned Len = LIR.Height + Cycles[DefMI].Depth;
848 unsigned DepCycle = Cycles.lookup(Dep.DefMI).Depth;
857 MICycles.Depth = Cycle;
1107 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth);
1154 return getCriticalPath() - (Cyc.Depth + Cyc.Height);
1164 unsigned DepCycle = getInstrCycles(Dep.DefMI).Depth;
/external/llvm/lib/Target/R600/
H A DSILowerControlFlow.cpp450 unsigned Depth = 0; local
469 ++Depth;
490 ++Depth;
495 if (--Depth == 0 && HaveKill) {
503 if (Depth == 0)
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmalloc_extension.cc253 uintptr_t Depth(void** entry) { function in namespace:__anon15563
277 for (void** entry = entries; Count(entry) != 0; entry += 3 + Depth(entry)) {
293 for (int i = 0; i < Depth(entry); i++) {
319 for (void** entry = entries; Count(entry) != 0; entry += 3 + Depth(entry)) {
343 for (void** entry = entries; Count(entry) != 0; entry += 3 + Depth(entry)) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmalloc_extension.cc236 uintptr_t Depth(void** entry) { function in namespace:__anon15606
260 for (void** entry = entries; Count(entry) != 0; entry += 3 + Depth(entry)) {
276 for (int i = 0; i < Depth(entry); i++) {
302 for (void** entry = entries; Count(entry) != 0; entry += 3 + Depth(entry)) {
326 for (void** entry = entries; Count(entry) != 0; entry += 3 + Depth(entry)) {
/external/llvm/include/llvm/IR/
H A DLegacyPassManagers.h266 explicit PMDataManager() : TPM(nullptr), Depth(0) {
335 unsigned getDepth() const { return Depth; }
336 void setDepth(unsigned newDepth) { Depth = newDepth; }
398 unsigned Depth; member in class:llvm::PMDataManager
/external/llvm/lib/DebugInfo/
H A DDWARFUnit.cpp168 uint32_t Depth = 0; local
190 ++Depth;
193 if (Depth > 0)
194 --Depth;
195 if (Depth == 0)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp72 unsigned Depth) {
74 KnownZero, KnownOne, Depth);
104 unsigned Depth) {
106 assert(Depth <= 6 && "Limit Search Depth");
139 if (Depth == 6) // Limit search depth.
147 computeKnownBits(V, KnownZero, KnownOne, Depth);
154 if (Depth != 0 && !I->hasOneUse()) {
161 computeKnownBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1);
162 computeKnownBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth
70 SimplifyDemandedBits(Use &U, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
102 SimplifyDemandedUseBits(Value *V, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
917 SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, APInt &UndefElts, unsigned Depth) argument
[all...]
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp203 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } argument
204 ~ScopedIncrement() { --(*Depth); }
207 int *Depth; member in struct:clang::ast_matchers::internal::__anon17765::MatchChildASTVisitor::ScopedIncrement
/external/clang/lib/Parse/
H A DParseTemplate.cpp287 /// angle brackets. Depth is the depth of this template-parameter-list, which
295 bool Parser::ParseTemplateParameters(unsigned Depth, argument
308 Failed = ParseTemplateParameterList(Depth, TemplateParams);
335 Parser::ParseTemplateParameterList(unsigned Depth, argument
339 = ParseTemplateParameter(Depth, TemplateParams.size())) {
445 Decl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position) { argument
447 return ParseTypeParameter(Depth, Position);
450 return ParseTemplateTemplateParameter(Depth, Position);
455 return ParseNonTypeTemplateParameter(Depth, Position);
467 Decl *Parser::ParseTypeParameter(unsigned Depth, unsigne argument
530 ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) argument
637 ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DGeneralProduct.h45 template<int Rows, int Cols, int Depth> struct product_type_selector;
68 Depth = EIGEN_SIZE_MIN_PREFER_FIXED(_Lhs::ColsAtCompileTime, enumerator in enum:Eigen::internal::product_type::__anon20614
79 depth_select = product_size_category<Depth,MaxDepth>::value
92 EIGEN_DEBUG_VAR(Depth);
107 template<int Depth> struct product_type_selector<1, 1, Depth> { enum { ret = InnerProduct }; };
/external/llvm/lib/Analysis/
H A DRegionInfo.cpp391 unsigned Depth = 0; local
394 ++Depth;
396 return Depth;

Completed in 838 milliseconds

123