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

1234567891011>>

/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/libcxxabi/test/
H A Ddynamic_cast_stress.cpp15 template <std::size_t Indx, std::size_t Depth>
17 : public virtual C<Indx, Depth-1>,
18 public virtual C<Indx+1, Depth-1>
29 template <std::size_t Indx, std::size_t Depth>
31 : public virtual C<Indx, Depth-1>,
32 public virtual C<Indx+1, Depth-1>
36 template <class Indx, std::size_t Depth>
39 template <std::size_t ...Indx, std::size_t Depth>
40 struct makeB<std::__tuple_indices<Indx...>, Depth>
41 : public B<Indx, Depth>
56 const std::size_t Depth = 5; local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DScoreboardHazardRecognizer.h46 size_t Depth; member in class:llvm::ScoreboardHazardRecognizer::Scoreboard
50 Scoreboard():Data(nullptr), Depth(0), Head(0) { }
55 size_t getDepth() const { return Depth; }
57 // Depth is expected to be a power-of-2.
58 assert(Depth && !(Depth & (Depth - 1)) &&
61 return Data[(Head + idx) & (Depth-1)];
66 Depth = d;
67 Data = new unsigned[Depth];
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddepth.c52 if (ctx->Depth.Clear == depth)
56 ctx->Depth.Clear = depth;
91 if (ctx->Depth.Func == func)
95 ctx->Depth.Func = func;
116 if (ctx->Depth.Mask == flag)
120 ctx->Depth.Mask = flag;
148 if (ctx->Depth.BoundsMin == zmin && ctx->Depth.BoundsMax == zmax)
152 ctx->Depth.BoundsMin = (GLfloat) zmin;
153 ctx->Depth
[all...]
/external/mesa3d/src/mesa/main/
H A Ddepth.c52 if (ctx->Depth.Clear == depth)
56 ctx->Depth.Clear = depth;
91 if (ctx->Depth.Func == func)
95 ctx->Depth.Func = func;
116 if (ctx->Depth.Mask == flag)
120 ctx->Depth.Mask = flag;
148 if (ctx->Depth.BoundsMin == zmin && ctx->Depth.BoundsMax == zmax)
152 ctx->Depth.BoundsMin = (GLfloat) zmin;
153 ctx->Depth
[all...]
/external/chromium_org/chrome/utility/media_galleries/
H A Diapps_xml_utils.cc25 int depth = reader->Depth();
27 if (!SkipToNextElement(reader) || reader->Depth() < depth)
29 DCHECK_EQ(depth, reader->Depth());
40 int dict_content_depth = reader->Depth() + 1;
45 while (reader->Depth() >= dict_content_depth) {
51 DCHECK_EQ(dict_content_depth, reader->Depth());
108 int dict_content_depth = reader_->Depth() + 1;
113 while (reader_->Depth() >= dict_content_depth && ShouldLoop()) {
119 DCHECK_EQ(dict_content_depth, reader_->Depth());
125 while (reader_->Depth() >
[all...]
/external/llvm/include/llvm/Analysis/
H A DValueTracking.h39 const DataLayout *TD = nullptr, unsigned Depth = 0);
48 const DataLayout *TD = nullptr, unsigned Depth = 0);
55 bool isKnownToBeAPowerOfTwo(Value *V, bool OrZero = false, unsigned Depth = 0);
62 unsigned Depth = 0);
74 const DataLayout *TD = nullptr, unsigned Depth = 0);
86 unsigned Depth = 0);
95 unsigned Depth = 0);
100 bool CannotBeNegativeZero(const Value *V, unsigned Depth = 0);
/external/expat/examples/
H A Doutline.c46 int Depth; variable
53 for (i = 0; i < Depth; i++)
63 Depth++;
69 Depth--;
/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/Analysis/
H A DValueTracking.cpp51 const DataLayout *TD, unsigned Depth) {
62 llvm::computeKnownBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
83 llvm::computeKnownBits(Op0, LHSKnownZero, LHSKnownOne, TD, Depth+1);
86 llvm::computeKnownBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
134 const DataLayout *TD, unsigned Depth) {
136 computeKnownBits(Op1, KnownZero, KnownOne, TD, Depth+1);
137 computeKnownBits(Op0, KnownZero2, KnownOne2, TD, Depth+1);
158 isKnownNonZero(Op0, TD, Depth)) ||
160 isKnownNonZero(Op1, TD, Depth));
228 const DataLayout *TD, unsigned Depth) {
48 computeKnownBitsAddSub(bool Add, Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const DataLayout *TD, unsigned Depth) argument
131 computeKnownBitsMul(Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const DataLayout *TD, unsigned Depth) argument
227 computeKnownBits(Value *V, APInt &KnownZero, APInt &KnownOne, const DataLayout *TD, unsigned Depth) argument
801 ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne, const DataLayout *TD, unsigned Depth) argument
820 isKnownToBeAPowerOfTwo(Value *V, bool OrZero, unsigned Depth) argument
915 isGEPKnownNonNull(GEPOperator *GEP, const DataLayout *DL, unsigned Depth) argument
979 isKnownNonZero(Value *V, const DataLayout *TD, unsigned Depth) argument
1114 MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout *TD, unsigned Depth) argument
1131 ComputeNumSignBits(Value *V, const DataLayout *TD, unsigned Depth) argument
1302 ComputeMultiple(Value *V, unsigned Base, Value *&Multiple, bool LookThroughSExt, unsigned Depth) argument
1424 CannotBeNegativeZero(const Value *V, unsigned Depth) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp72 unsigned Depth) {
74 KnownZero, KnownOne, Depth);
104 unsigned Depth) {
106 assert(Depth <= 6 && "Limit Search Depth");
139 if (Depth == 6) // Limit search depth.
147 computeKnownBits(V, KnownZero, KnownOne, Depth);
154 if (Depth != 0 && !I->hasOneUse()) {
161 computeKnownBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1);
162 computeKnownBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth
70 SimplifyDemandedBits(Use &U, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
102 SimplifyDemandedUseBits(Value *V, APInt DemandedMask, APInt &KnownZero, APInt &KnownOne, unsigned Depth) argument
917 SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, APInt &UndefElts, 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].size());
68 return TemplateArgumentLists[getNumLevels() - Depth - 1][Index];
75 bool hasTemplateArgument(unsigned Depth, unsigned Index) const {
76 assert(Depth < TemplateArgumentLists.size());
78 if (Index >= TemplateArgumentLists[getNumLevels() - Depth - 1].size())
81 return !(*this)(Depth, Index).isNull();
85 void setArgument(unsigned Depth, unsigned Index,
87 assert(Depth < TemplateArgumentList
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dgen6_depthstencil.c85 if (ctx->Depth.Test && depth_irb) {
86 ds->ds2.depth_test_enable = ctx->Depth.Test;
87 ds->ds2.depth_test_func = intel_translate_compare_func(ctx->Depth.Func);
88 ds->ds2.depth_write_enable = ctx->Depth.Mask;
/external/lldb/include/lldb/Core/
H A DAddressResolverFileLine.h42 virtual Searcher::Depth
H A DAddressResolverName.h50 virtual Searcher::Depth
H A DFileLineResolver.h50 virtual Searcher::Depth
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp44 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
71 bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) { argument
83 if (Depth < 3 &&
85 MayAutorelease(JCS, Depth + 1))
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_depthstencil.c85 if (ctx->Depth.Test && depth_irb) {
86 ds->ds2.depth_test_enable = ctx->Depth.Test;
87 ds->ds2.depth_test_func = intel_translate_compare_func(ctx->Depth.Func);
88 ds->ds2.depth_write_enable = ctx->Depth.Mask;
/external/clang/lib/Sema/
H A DScope.cpp35 Depth = parent->Depth + 1;
47 Depth = 0;
208 OS << "Depth: " << Depth << '\n'; local
/external/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverAddress.h50 virtual Searcher::Depth
H A DBreakpointResolverFileLine.h46 virtual Searcher::Depth
H A DBreakpointResolverFileRegex.h43 virtual Searcher::Depth
/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.15/src/video/vgl/
H A DSDL_vglvideo.h40 int Depth; member in struct:__anon29599
/external/chromium_org/third_party/libxml/chromium/
H A Dlibxml_utils.cc56 const int start_depth = Depth();
74 while (NodeType() != XML_READER_TYPE_END_ELEMENT || Depth() != start_depth) {

Completed in 639 milliseconds

1234567891011>>