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

12

/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...]
H A DScope.h92 /// Depth - This is the depth of this scope. The translation-unit scope has
94 unsigned short Depth; member in class:clang::Scope
/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/qemu/distrib/sdl-1.2.12/src/video/vgl/
H A DSDL_vglvideo.h40 int Depth; member in struct:__anon9375
/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...]
H A DScheduleDAG.h270 bool isDepthCurrent : 1; // True if Depth is current.
272 unsigned Depth; // Node depth. member in class:llvm::SUnit
289 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
303 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
316 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
366 return Depth;
388 /// stored Depth value will require recomputation the next time
/external/chromium/chrome/common/
H A Dlibxml_utils.h64 int Depth() { return xmlTextReaderDepth(reader_); } function in class:XmlReader
/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/lib/Sema/
H A DSemaTemplateVariadic.cpp506 unsigned Depth = 0, Index = 0; local
512 Depth = TTP->getDepth();
520 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
547 if (Depth >= TemplateArgs.getNumLevels() ||
548 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
554 NewPackSize = TemplateArgs(Depth, Index).pack_size();
566 if (PartialDepth == Depth && PartialIndex == Index)
608 unsigned Depth; local
613 Depth = TTP->getDepth();
630 llvm::tie(Depth, Inde
[all...]
/external/llvm/include/llvm/
H A DPassManagers.h265 explicit PMDataManager() : TPM(NULL), Depth(0) {
334 unsigned getDepth() const { return Depth; }
335 void setDepth(unsigned newDepth) { Depth = newDepth; }
398 unsigned Depth; member in class:llvm::PMDataManager
/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, KnownZero, KnownOne, Depth);
152 if (Depth != 0 && !I->hasOneUse()) {
159 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1);
160 ComputeMaskedBits(I->getOperand(0), 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
812 SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, APInt &UndefElts, unsigned Depth) argument
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp428 unsigned Depth = 0; local
431 if (Depth == 0 && *I == Target) return I;
432 if (Depth != 0 && *I == '}') Depth--;
445 Depth++;
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp980 unsigned Depth = 0; local
985 for (; PLoc.isValid(); ++Depth)
990 OS << Depth; local
/external/clang/lib/Parse/
H A DParseTemplate.cpp45 unsigned &Depth; member in class:__anon3240::TemplateParameterDepthCounter
49 explicit TemplateParameterDepthCounter(unsigned &Depth) argument
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,
149 Actions.ActOnTemplateParameterList(Depth, ExportLo
300 ParseTemplateParameters(unsigned Depth, SmallVectorImpl<Decl*> &TemplateParams, SourceLocation &LAngleLoc, SourceLocation &RAngleLoc) argument
338 ParseTemplateParameterList(unsigned Depth, SmallVectorImpl<Decl*> &TemplateParams) argument
446 ParseTemplateParameter(unsigned Depth, unsigned Position) argument
468 ParseTypeParameter(unsigned Depth, unsigned Position) argument
529 ParseTemplateTemplateParameter(unsigned Depth, unsigned Position) argument
626 ParseNonTypeTemplateParameter(unsigned Depth, unsigned Position) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DImage.java188 Depth(0,true,false,false), enum constant in enum:Image.Format
/external/llvm/lib/Analysis/
H A DRegionInfo.cpp373 unsigned Depth = 0; local
376 ++Depth;
378 return Depth;
H A DBasicAliasAnalysis.cpp180 const TargetData &TD, unsigned Depth) {
184 if (Depth == 6) {
202 TD, Depth+1);
207 TD, Depth+1);
213 TD, Depth+1);
234 TD, Depth+1);
178 GetLinearExpression(Value *V, APInt &Scale, APInt &Offset, ExtensionKind &Extension, const TargetData &TD, unsigned Depth) argument
H A DValueTracking.cpp49 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) {
46 ComputeMaskedBitsAddSub(bool Add, Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const TargetData *TD, unsigned Depth) argument
132 ComputeMaskedBitsMul(Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const TargetData *TD, unsigned Depth) argument
228 ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne, const TargetData *TD, unsigned Depth) argument
780 ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne, const TargetData *TD, unsigned Depth) argument
799 isPowerOfTwo(Value *V, const TargetData *TD, bool OrZero, unsigned Depth) argument
862 isKnownNonZero(Value *V, const TargetData *TD, unsigned Depth) argument
988 MaskedValueIsZero(Value *V, const APInt &Mask, const TargetData *TD, unsigned Depth) argument
1006 ComputeNumSignBits(Value *V, const TargetData *TD, unsigned Depth) argument
1177 ComputeMultiple(Value *V, unsigned Base, Value *&Multiple, bool LookThroughSExt, unsigned Depth) argument
1299 CannotBeNegativeZero(const Value *V, unsigned Depth) 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/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dreplace.h247 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 { function in class:fst::ReplaceFstImpl::StackPrefix
/external/llvm/lib/CodeGen/
H A DSplitKit.cpp705 unsigned Depth = Loop->getLoopDepth(); local
706 if (Depth < BestDepth) {
708 BestDepth = Depth;
710 << MBB->getNumber() << " at depth " << Depth << '\n');
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp938 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); local
939 if (Depth) {
960 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); local
963 while (Depth--)
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp894 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); local
897 if (Depth > 0) {
920 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue(); local
923 while (Depth--)
/external/clang/include/clang/AST/
H A DDeclTemplate.h836 /// given a Depth - the nesting of template parameter scopes - and a Position -
844 : Depth(0), Position(0)
848 : Depth(D), Position(P)
853 unsigned Depth; member in class:clang::TemplateParameterList::TemplateParmPosition
858 unsigned getDepth() const { return Depth; }
859 void setDepth(unsigned D) { Depth = D; }

Completed in 608 milliseconds

12