HomeSort by relevance Sort by last modified time
    Searched refs:Depth (Results 1 - 25 of 78) 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 41 unsigned Depth = 0);
46 const TargetData *TD = 0, unsigned Depth = 0);
52 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
58 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
70 const TargetData *TD = 0, unsigned Depth = 0);
82 unsigned Depth = 0);
91 unsigned Depth = 0);
96 bool CannotBeNegativeZero(const Value *V, unsigned Depth = 0);
RegionPass.h 91 explicit RGPassManager(int Depth);
LoopPass.h 87 explicit LPPassManager(int Depth);
  /external/clang/lib/Sema/
Scope.cpp 24 Depth = parent->Depth + 1;
34 Depth = 0;
SemaTemplateVariadic.cpp 450 /// \brief Retrieve the depth and index of a parameter pack.
477 // Compute the depth and index for this parameter pack.
478 unsigned Depth = 0, Index = 0;
484 Depth = TTP->getDepth();
492 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
516 // If we don't have a template argument at this depth/index, then we
519 if (Depth >= TemplateArgs.getNumLevels() ||
520 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
526 NewPackSize = TemplateArgs(Depth, Index).pack_size();
538 if (PartialDepth == Depth && PartialIndex == Index
    [all...]
SemaTemplateDeduction.cpp 293 "Cannot deduce non-type template argument with depth > 0");
321 "Cannot deduce non-type template argument with depth > 0");
352 "Cannot deduce non-type template argument with depth > 0");
512 /// \brief Retrieve the depth and index of a template parameter.
525 /// \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 62 const TargetData *TD, unsigned Depth) {
64 assert(Depth <= MaxDepth && "Limit Search Depth");
96 TD, Depth);
130 TD, Depth+1);
147 if (Depth == MaxDepth || Mask == 0)
148 return; // Limit search depth.
158 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1);
161 Depth+1);
172 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1)
    [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, DemandedMask, KnownZero, KnownOne, Depth);
152 if (Depth != 0 && !I->hasOneUse()) {
160 RHSKnownZero, RHSKnownOne, Depth+1)
    [all...]
InstCombine.h 288 APInt &KnownOne, unsigned Depth = 0) const {
289 return llvm::ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD, Depth);
293 unsigned Depth = 0) const {
294 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
296 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
297 return llvm::ComputeNumSignBits(Op, TD, Depth);
317 unsigned Depth);
320 unsigned Depth=0);
328 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/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/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/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/llvm/include/llvm/
PassManagers.h 266 explicit PMDataManager(int Depth) : TPM(NULL), Depth(Depth) {
335 unsigned getDepth() const { return Depth; }
398 unsigned Depth;
411 explicit FPPassManager(int Depth)
412 : ModulePass(ID), PMDataManager(Depth) { }
  /external/clang/lib/Parse/
ParseTemplate.cpp 37 /// \brief RAII class that manages the template parameter depth.
40 unsigned &Depth;
44 explicit TemplateParameterDepthCounter(unsigned &Depth)
45 : Depth(Depth), AddedLevels(0) { }
48 Depth -= AddedLevels;
52 ++Depth;
56 operator unsigned() const { return Depth; }
113 TemplateParameterDepthCounter Depth(TemplateParameterDepth);
133 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/llvm/lib/Target/CellSPU/
SPUISelLowering.h 128 unsigned Depth = 0) const;
131 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 3257 milliseconds

1 2 3 4