Searched refs:Depth (Results 1 - 25 of 69) sorted by relevance

123

/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/llvm/include/llvm/CodeGen/
H A DScoreboardHazardRecognizer.h47 size_t Depth; member in class:llvm::ScoreboardHazardRecognizer::Scoreboard
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/
H A DValueTracking.h41 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);
/external/clang/lib/Sema/
H A DScope.cpp24 Depth = parent->Depth + 1;
34 Depth = 0;
H A DSemaTemplateVariadic.cpp479 unsigned Depth = 0, Index = 0; local
485 Depth = TTP->getDepth();
493 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
520 if (Depth >= TemplateArgs.getNumLevels() ||
521 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
527 NewPackSize = TemplateArgs(Depth, Index).pack_size();
539 if (PartialDepth == Depth && PartialIndex == Index)
581 unsigned Depth; local
586 Depth = TTP->getDepth();
603 llvm::tie(Depth, Inde
[all...]
H A DSemaTemplateDeduction.cpp743 unsigned Depth, Index; local
744 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
745 if (Depth == 0 && !SawIndices[Index]) {
1753 unsigned Depth, Index; local
1754 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
1755 if (Depth == 0 && !SawIndices[Index]) {
3009 unsigned Depth, Index; local
3010 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
3011 if (Depth == 0 && !SawIndices[Index]) {
3927 unsigned Depth,
3933 MarkUsedTemplateParameters(Sema &SemaRef, const Expr *E, bool OnlyDeduced, unsigned Depth, SmallVectorImpl<bool> &Used) argument
3964 MarkUsedTemplateParameters(Sema &SemaRef, NestedNameSpecifier *NNS, bool OnlyDeduced, unsigned Depth, SmallVectorImpl<bool> &Used) argument
3981 MarkUsedTemplateParameters(Sema &SemaRef, TemplateName Name, bool OnlyDeduced, unsigned Depth, SmallVectorImpl<bool> &Used) argument
4006 MarkUsedTemplateParameters(Sema &SemaRef, QualType T, bool OnlyDeduced, unsigned Depth, SmallVectorImpl<bool> &Used) argument
4238 MarkUsedTemplateParameters(Sema &SemaRef, const TemplateArgument &TemplateArg, bool OnlyDeduced, unsigned Depth, SmallVectorImpl<bool> &Used) argument
4285 MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs, bool OnlyDeduced, unsigned Depth, SmallVectorImpl<bool> &Used) argument
[all...]
/external/expat/examples/
H A Doutline.c46 int Depth; variable
53 for (i = 0; i < Depth; i++)
63 Depth++;
69 Depth--;
/external/llvm/lib/Analysis/
H A DValueTracking.cpp62 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)
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);
175 Depth
60 ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero, APInt &KnownOne, const TargetData *TD, unsigned Depth) argument
695 ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne, const TargetData *TD, unsigned Depth) argument
715 isPowerOfTwo(Value *V, const TargetData *TD, unsigned Depth) argument
758 isKnownNonZero(Value *V, const TargetData *TD, unsigned Depth) argument
878 MaskedValueIsZero(Value *V, const APInt &Mask, const TargetData *TD, unsigned Depth) argument
896 ComputeNumSignBits(Value *V, const TargetData *TD, unsigned Depth) argument
1073 ComputeMultiple(Value *V, unsigned Base, Value *&Multiple, bool LookThroughSExt, unsigned Depth) argument
1195 CannotBeNegativeZero(const Value *V, unsigned Depth) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp70 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);
162 LHSKnownZero, LHSKnownOne, Depth
68 SimplifyDemandedBits(Use &U, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
100 SimplifyDemandedUseBits(Value *V, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
806 SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, APInt &UndefElts, unsigned Depth) argument
[all...]
H A DInstCombine.h291 APInt &KnownOne, unsigned Depth = 0) const {
292 return llvm::ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD, Depth);
296 unsigned Depth = 0) const {
297 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
299 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
300 return llvm::ComputeNumSignBits(Op, TD, Depth);
320 unsigned Depth);
323 unsigned Depth=0);
331 APInt& UndefElts, unsigned Depth = 0);
/external/llvm/test/MC/COFF/
H A Dsimple-fixups.s18 # =>This Inner Loop Header: Depth=1
31 # =>This Inner Loop Header: Depth=1
/external/llvm/lib/Transforms/Utils/
H A DAddrModeMatcher.cpp68 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
67 MatchScaledValue(Value *ScaleReg, int64_t Scale, unsigned Depth) argument
153 MatchOperationAddr(User *AddrInst, unsigned Opcode, unsigned Depth) argument
310 MatchAddr(Value *Addr, unsigned Depth) argument
[all...]
/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].second);
68 return TemplateArgumentLists[getNumLevels() - Depth - 1].first[Index];
75 bool hasTemplateArgument(unsigned Depth, unsigned Index) const {
76 assert(Depth < TemplateArgumentLists.size());
78 if (Index >= TemplateArgumentLists[getNumLevels() - Depth - 1].second)
81 return !(*this)(Depth, Index).isNull();
85 void setArgument(unsigned Depth, unsigned Index,
87 assert(Depth < TemplateArgumentList
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DAddrModeMatcher.h97 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/clang/lib/Parse/
H A DParseTemplate.cpp44 unsigned &Depth; member in class:__anon2908::TemplateParameterDepthCounter
48 explicit TemplateParameterDepthCounter(unsigned &Depth) argument
49 : Depth(Depth), AddedLevels(0) { }
52 Depth -= AddedLevels;
56 ++Depth;
60 operator unsigned() const { return Depth; }
118 TemplateParameterDepthCounter Depth(TemplateParameterDepth);
138 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc,
148 Actions.ActOnTemplateParameterList(Depth, ExportLo
298 ParseTemplateParameters(unsigned Depth, SmallVectorImpl<Decl*> &TemplateParams, SourceLocation &LAngleLoc, SourceLocation &RAngleLoc) argument
331 ParseTemplateParameterList(unsigned Depth, SmallVectorImpl<Decl*> &TemplateParams) argument
441 ParseTemplateParameter(unsigned Depth, unsigned Position) argument
463 ParseTypeParameter(unsigned Depth, unsigned Position) argument
523 ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) argument
610 ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) argument
[all...]
/external/opencv/cxcore/include/
H A Dcvwimage.h207 int Depth() const;
243 assert(!img || img->depth == Depth());
247 assert(!image || image->depth == Depth());
290 assert(!image || image->depth == WImage<T>::Depth());
507 inline int WImage<uchar>::Depth() const {return IPL_DEPTH_8U; } function in class:cv::WImage
509 inline int WImage<schar>::Depth() const {return IPL_DEPTH_8S; } function in class:cv::WImage
511 inline int WImage<short>::Depth() const {return IPL_DEPTH_16S; } function in class:cv::WImage
513 inline int WImage<ushort>::Depth() const {return IPL_DEPTH_16U; } function in class:cv::WImage
515 inline int WImage<int>::Depth() const {return IPL_DEPTH_32S; } function in class:cv::WImage
517 inline int WImage<float>::Depth() cons function in class:cv::WImage
519 inline int WImage<double>::Depth() const {return IPL_DEPTH_64F; } function in class:cv::WImage
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/vgl/
H A DSDL_vglvideo.h40 int Depth; member in struct:__anon8351
H A DSDL_vglvideo.c176 if (inmode->Depth < 8) { /* Not supported */
179 index = ((inmode->Depth + 7) / 8) - 1;
268 vformat->BitsPerPixel = VGLCurMode->Depth;
348 VGLCurMode->Depth = modes[i]->Depth;
382 if (! SDL_ReallocFormat(current, modes[i]->Depth, VGLCurMode->Rmask,
600 modescp->Depth = minfo.vi_depth;
615 (modes[i]->Depth >= modescp->Depth))
/external/chromium/chrome/common/
H A Dlibxml_utils.cc81 const int start_depth = Depth();
99 while (NodeType() != XML_READER_TYPE_END_ELEMENT || Depth() != start_depth) {
H A Dlibxml_utils.h64 int Depth() { return xmlTextReaderDepth(reader_); } function in class:XmlReader
/external/llvm/include/llvm/
H A DPassManagers.h266 explicit PMDataManager() : TPM(NULL), Depth(0) {
335 unsigned getDepth() const { return Depth; }
336 void setDepth(unsigned newDepth) { Depth = newDepth; }
399 unsigned Depth; member in class:llvm::PMDataManager
/external/llvm/lib/Target/CellSPU/
H A DSPUISelLowering.h128 unsigned Depth = 0) const;
131 unsigned Depth = 0) const;
/external/mesa3d/docs/OLD/
H A DMESA_packed_depth_stencil.spec86 DEPTH_COMPONENT Depth Depth component
99 DEPTH_STENCIL Depth, Depth component, stencil index.
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.h57 unsigned Depth = 0) const;
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp142 bool is12Bit, unsigned Depth = 0);
183 bool is12Bit, unsigned Depth) {
187 if (Depth > 5)
227 if (MatchAddress(N.getNode()->getOperand(0), AM, is12Bit, Depth+1)) {
267 if (!MatchAddress(N.getNode()->getOperand(0), AM, is12Bit, Depth+1) &&
268 !MatchAddress(N.getNode()->getOperand(1), AM, is12Bit, Depth+1))
271 if (!MatchAddress(N.getNode()->getOperand(1), AM, is12Bit, Depth+1) &&
272 !MatchAddress(N.getNode()->getOperand(0), AM, is12Bit, Depth+1))
301 !MatchAddress(N.getOperand(0), AM, is12Bit, Depth+1) &&
182 MatchAddress(SDValue N, SystemZRRIAddressMode &AM, bool is12Bit, unsigned Depth) argument

Completed in 566 milliseconds

123