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

1 2 3 4

  /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/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...]
  /external/llvm/include/llvm/Analysis/
ValueTracking.h 40 const TargetData *TD = 0, unsigned Depth = 0);
46 const TargetData *TD = 0, unsigned Depth = 0);
54 unsigned Depth = 0);
60 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
72 const TargetData *TD = 0, unsigned Depth = 0);
84 unsigned Depth = 0);
93 unsigned Depth = 0);
98 bool CannotBeNegativeZero(const Value *V, unsigned Depth = 0);
  /external/clang/lib/Sema/
Scope.cpp 33 Depth = parent->Depth + 1;
40 Depth = 0;
SemaTemplateVariadic.cpp 477 /// \brief Retrieve the depth and index of a parameter pack.
505 // Compute the depth and index for this parameter pack.
506 unsigned Depth = 0, Index = 0;
512 Depth = TTP->getDepth();
520 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
544 // If we don't have a template argument at this depth/index, then we
547 if (Depth >= TemplateArgs.getNumLevels() ||
548 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
554 NewPackSize = TemplateArgs(Depth, Index).pack_size();
566 if (PartialDepth == Depth && PartialIndex == Index
    [all...]
SemaTemplateDeduction.cpp 294 "Cannot deduce non-type template argument with depth > 0");
322 "Cannot deduce non-type template argument with depth > 0");
353 "Cannot deduce non-type template argument with depth > 0");
513 /// \brief Retrieve the depth and index of a template parameter.
526 /// \brief Retrieve the depth and index of an unexpanded parameter pack.
743 unsigned Depth, Index;
744 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
745 if (Depth == 0 && !SawIndices[Index]) {
    [all...]
  /external/expat/examples/
outline.c 46 int Depth;
53 for (i = 0; i < Depth; i++)
63 Depth++;
69 Depth--;
  /external/llvm/lib/Analysis/
ValueTracking.cpp 49 const TargetData *TD, unsigned Depth) {
60 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
81 llvm::ComputeMaskedBits(Op0, LHSKnownZero, LHSKnownOne, TD, Depth+1);
86 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
135 const TargetData *TD, unsigned Depth) {
137 ComputeMaskedBits(Op1, KnownZero, KnownOne, TD, Depth+1);
138 ComputeMaskedBits(Op0, KnownZero2, KnownOne2, TD, Depth+1);
161 isKnownNonZero(Op0, TD, Depth)) ||
163 isKnownNonZero(Op1, TD, Depth));
229 const TargetData *TD, unsigned Depth) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 70 unsigned Depth) {
72 KnownZero, KnownOne, Depth);
102 unsigned Depth) {
104 assert(Depth <= 6 && "Limit Search Depth");
137 if (Depth == 6) // Limit search depth.
145 ComputeMaskedBits(V, KnownZero, KnownOne, Depth);
152 if (Depth != 0 && !I->hasOneUse()) {
159 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1)
    [all...]
InstCombine.h 295 APInt &KnownOne, unsigned Depth = 0) const {
296 return llvm::ComputeMaskedBits(V, KnownZero, KnownOne, TD, Depth);
300 unsigned Depth = 0) const {
301 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
303 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
304 return llvm::ComputeNumSignBits(Op, TD, Depth);
324 unsigned Depth);
327 unsigned Depth=0);
335 APInt& UndefElts, unsigned Depth = 0);
  /external/llvm/test/MC/COFF/
simple-fixups.s 18 # =>This Inner Loop Header: Depth=1
31 # =>This Inner Loop Header: Depth=1
  /external/llvm/lib/Transforms/Utils/
AddrModeMatcher.cpp 68 unsigned Depth) {
72 return MatchAddr(ScaleReg, Depth);
154 unsigned Depth) {
156 if (Depth >= 5) return false;
161 return MatchAddr(AddrInst->getOperand(0), Depth);
166 return MatchAddr(AddrInst->getOperand(0), Depth);
177 return MatchAddr(AddrInst->getOperand(0), Depth);
183 if (MatchAddr(AddrInst->getOperand(1), Depth+1) &&
184 MatchAddr(AddrInst->getOperand(0), Depth+1))
192 if (MatchAddr(AddrInst->getOperand(0), Depth+1) &
    [all...]
  /external/clang/include/clang/Sema/
Template.h 39 /// list will contain a template argument list (int) at depth 0 and a
40 /// template argument list (17) at depth 1.
64 /// \brief Retrieve the template argument at a given depth and index.
65 const TemplateArgument &operator()(unsigned Depth, unsigned Index) const {
66 assert(Depth < TemplateArgumentLists.size());
67 assert(Index < TemplateArgumentLists[getNumLevels() - Depth - 1].second);
68 return TemplateArgumentLists[getNumLevels() - Depth - 1].first[Index];
72 /// given depth and index.
74 /// There must exist a template argument list at the given depth.
75 bool hasTemplateArgument(unsigned Depth, unsigned Index) const
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
AddrModeMatcher.h 97 bool MatchScaledValue(Value *ScaleReg, int64_t Scale, unsigned Depth);
98 bool MatchAddr(Value *V, unsigned Depth);
99 bool MatchOperationAddr(User *Operation, unsigned Opcode, unsigned Depth);
  /external/qemu/distrib/sdl-1.2.12/src/video/vgl/
SDL_vglvideo.h 40 int Depth;
SDL_vglvideo.c 63 static VGLMode ** VGLListModes(int depth, int mem_model);
176 if (inmode->Depth < 8) { /* Not supported */
179 index = ((inmode->Depth + 7) / 8) - 1;
266 /* Determine the screen depth */
268 vformat->BitsPerPixel = VGLCurMode->Depth;
348 VGLCurMode->Depth = modes[i]->Depth;
382 if (! SDL_ReallocFormat(current, modes[i]->Depth, VGLCurMode->Rmask,
504 VGLListModes(int depth, int mem_model)
529 if ((depth > 1) && (minfo.vi_depth != 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; }
119 TemplateParameterDepthCounter Depth(TemplateParameterDepth);
139 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc
    [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/chromium/chrome/common/
libxml_utils.cc 81 const int start_depth = Depth();
99 while (NodeType() != XML_READER_TYPE_END_ELEMENT || Depth() != start_depth) {
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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderFactory.java 61 case Depth:
  /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);
  /external/llvm/include/llvm/
PassManagers.h 265 explicit PMDataManager() : TPM(NULL), Depth(0) {
334 unsigned getDepth() const { return Depth; }
335 void setDepth(unsigned newDepth) { Depth = newDepth; }
398 unsigned Depth;
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.h 127 unsigned Depth = 0) const;
130 unsigned Depth = 0) const;
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 35 transfer depth and stencil image data. Specifically, we defined new
36 packed pixel formats and types which pack both stencil and depth
50 preceeds depth in the 1_15 and 8_24 formats?
86 DEPTH_COMPONENT Depth Depth component
99 DEPTH_STENCIL Depth, Depth component, stencil index.
182 DEPTH_STENCIL_MESA depth stencil

Completed in 299 milliseconds

1 2 3 4