HomeSort by relevance Sort by last modified time
    Searched defs:Depth (Results 1 - 25 of 44) sorted by null

1 2

  /external/expat/examples/
outline.c 46 int Depth;
53 for (i = 0; i < Depth; i++)
63 Depth++;
69 Depth--;
  /external/javassist/src/main/javassist/runtime/
Cflow.java 26 private static class Depth {
27 private int depth; field in class:Cflow.Depth
28 Depth() { depth = 0; }
29 int get() { return depth; }
30 void inc() { ++depth; }
31 void dec() { --depth; }
35 return new Depth();
41 public void enter() { ((Depth)get()).inc(); }
46 public void exit() { ((Depth)get()).dec();
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglvideo.h 40 int Depth;
  /external/chromium/chrome/common/
libxml_utils.h 63 // Return the depth in the tree of the current node.
64 int Depth() { return xmlTextReaderDepth(reader_); }
132 // All following elements will be indented to match their depth.
  /external/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 47 size_t Depth;
51 Scoreboard():Data(NULL), Depth(0), Head(0) { }
56 size_t getDepth() const { return Depth; }
58 // Depth is expected to be a power-of-2.
59 assert(Depth && !(Depth & (Depth - 1)) &&
62 return Data[(Head + idx) & (Depth-1)];
67 Depth = d;
68 Data = new unsigned[Depth];
    [all...]
ScheduleDAG.h 290 bool isDepthCurrent : 1; // True if Depth is current.
292 unsigned Depth; // Node depth.
312 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
326 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
339 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
384 /// getDepth - Return the depth of this node, which is the length of the
389 return Depth;
401 /// depth value, set it to be the new depth value. This als
    [all...]
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 163 // Check if depth resources for MBB are valid and return the TBI.
240 unsigned Depth = PredTBI->InstrDepth + CurCount;
241 if (!Best || Depth < BestDepth)
242 Best = Pred, BestDepth = Depth;
387 // The trace leading to I is now known, compute the depth resources.
444 // Invalidate depth resources of blocks below MBB.
451 << " depth.\n");
490 "Trace is broken, depth should have been invalidated.");
512 // Compute the depth and height of each instruction based on data dependencies
657 /// 1. The maximum height+depth over all instructions in the trace center block
    [all...]
MachineTraceMetrics.h 153 /// Returns true if the depth resources have been computed from the trace
161 /// Invalidate depth resources when some block above this one has changed.
167 // Data-dependency-related information. Per-instruction depth and height
191 /// InstrCycles represents the cycle height and depth of an instruction in a
197 unsigned Depth;
222 /// Return the resource depth of the top/bottom of the trace center block.
224 /// the trace head to the trace center block. The resource depth only
242 /// Return the depth and height of MI. The depth is only valid for
254 /// Return the Depth of a PHI instruction in a trace center block successor
    [all...]
ScheduleDAGInstrs.cpp 357 // TODO: If we knew the total depth of the region here, we could
611 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth,
614 return *Depth;
618 return *Depth;
631 return *Depth;
633 // If we do need an edge, or we have exceeded depth budget,
636 if (*Depth > 200 ||
640 return *Depth;
642 // Track current depth.
643 (*Depth)++
    [all...]
SplitKit.cpp 697 << MBB->getNumber() << " at depth 0\n");
709 unsigned Depth = Loop->getLoopDepth();
710 if (Depth < BestDepth) {
712 BestDepth = Depth;
714 << MBB->getNumber() << " at depth " << Depth << '\n');
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 516 /// \brief Retrieve the depth and index of a parameter pack.
544 // Compute the depth and index for this parameter pack.
545 unsigned Depth = 0, Index = 0;
551 Depth = TTP->getDepth();
559 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
583 // If we don't have a template argument at this depth/index, then we
586 if (Depth >= TemplateArgs.getNumLevels() ||
587 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
593 NewPackSize = TemplateArgs(Depth, Index).pack_size();
605 if (PartialDepth == Depth && PartialIndex == Index
    [all...]
SemaTemplateInstantiate.cpp 655 /// \brief Retrieve the depth and index of a parameter pack.
731 unsigned Depth, Index;
732 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
733 if (TemplateArgs.hasTemplateArgument(Depth, Index)) {
734 Result = TemplateArgs(Depth, Index);
735 TemplateArgs.setArgument(Depth, Index, TemplateArgument());
750 unsigned Depth, Index;
751 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
752 TemplateArgs.setArgument(Depth, Index, Arg);
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
BloomFilter.java 118 preGlowPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth);
142 extractPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, extractMat);
157 horizontalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, hBlurMat);
172 verticalalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, vBlurMat);
CartoonEdgeFilter.java 92 normalPass.init(renderManager.getRenderer(), w, h, Format.RGBA8, Format.Depth);
104 * Return the depth sensitivity<br>
113 * sets the depth sensitivity<br>
114 * defines how much depth will influence edges, default is 10
125 * returns the depth threshold<br>
134 * sets the depth threshold<br>
135 * Defines at what threshold of difference of depth an edge is outlined default is 0.1f
  /external/llvm/include/llvm/
PassManagers.h 266 explicit PMDataManager() : TPM(NULL), Depth(0) {
335 unsigned getDepth() const { return Depth; }
336 void setDepth(unsigned newDepth) { Depth = newDepth; }
399 unsigned Depth;
  /external/clang/include/clang/Sema/
Scope.h 92 /// Depth - This is the depth of this scope. The translation-unit scope has
93 /// depth 0.
94 unsigned short Depth;
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [all...]
  /external/opencv/cxcore/include/
cvwimage.h 204 // Return depth type (e.g. IPL_DEPTH_8U, IPL_DEPTH_32F) which is the number
207 int Depth() const;
243 assert(!img || img->depth == Depth());
247 assert(!image || image->depth == Depth());
290 assert(!image || image->depth == WImage<T>::Depth());
505 // Specializations for depth
507 inline int WImage<uchar>::Depth() const {return IPL_DEPTH_8U;
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 115 // descendants of a traversed node. max_depth is the maximum depth
179 // Used for updating the depth during traversal.
181 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); }
182 ~ScopedIncrement() { --(*Depth); }
185 int *Depth;
226 // maximum depth yet, so recurse.
230 // maximum depth, so don't recurse (but continue the traversa
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 447 unsigned Depth = 0;
450 if (Depth == 0 && *I == Target) return I;
451 if (Depth != 0 && *I == '}') Depth--;
464 Depth++;
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp 42 /// \brief RAII class that manages the template parameter depth.
45 unsigned &Depth;
49 explicit TemplateParameterDepthCounter(unsigned &Depth)
50 : Depth(Depth), AddedLevels(0) { }
53 Depth -= AddedLevels;
57 ++Depth;
61 operator unsigned() const { return Depth; }
120 TemplateParameterDepthCounter Depth(TemplateParameterDepth);
140 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 185 * Arbitrary depth format. The precision is chosen by the video
188 Depth(0,true,false,false),
191 * 16-bit depth.
196 * 24-bit depth.
201 * 32-bit depth.
206 * single-precision floating point depth.
288 * @return True if this format is a depth format, false otherwise.
314 protected int width, height, depth; field in class:Image
377 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data,
390 this.depth = depth
    [all...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 357 unsigned Depth = 0;
360 ++Depth;
362 return Depth;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
replace.h 247 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth() == 0)
307 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth()) {
417 size_t Depth() const {
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]

Completed in 647 milliseconds

1 2