Home
last modified time | relevance | path

Searched refs:Depth (Results 1 – 25 of 110) sorted by relevance

12345

/external/llvm/include/llvm/CodeGen/
DScoreboardHazardRecognizer.h47 size_t Depth; variable
51 Scoreboard():Data(NULL), Depth(0), Head(0) { } in Scoreboard()
56 size_t getDepth() const { return Depth; } in getDepth()
59 assert(Depth && !(Depth & (Depth - 1)) &&
62 return Data[(Head + idx) & (Depth-1)];
67 Depth = d;
68 Data = new unsigned[Depth];
71 memset(Data, 0, Depth * sizeof(Data[0]));
76 Head = (Head + 1) & (Depth-1); in advance()
80 Head = (Head - 1) & (Depth-1); in recede()
/external/llvm/lib/Analysis/
DValueTracking.cpp49 const TargetData *TD, unsigned Depth) { in ComputeMaskedBitsAddSub() argument
60 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1); in ComputeMaskedBitsAddSub()
81 llvm::ComputeMaskedBits(Op0, LHSKnownZero, LHSKnownOne, TD, Depth+1); in ComputeMaskedBitsAddSub()
86 llvm::ComputeMaskedBits(Op1, KnownZero2, KnownOne2, TD, Depth+1); in ComputeMaskedBitsAddSub()
135 const TargetData *TD, unsigned Depth) { in ComputeMaskedBitsMul() argument
137 ComputeMaskedBits(Op1, KnownZero, KnownOne, TD, Depth+1); in ComputeMaskedBitsMul()
138 ComputeMaskedBits(Op0, KnownZero2, KnownOne2, TD, Depth+1); in ComputeMaskedBitsMul()
161 isKnownNonZero(Op0, TD, Depth)) || in ComputeMaskedBitsMul()
163 isKnownNonZero(Op1, TD, Depth)); in ComputeMaskedBitsMul()
229 const TargetData *TD, unsigned Depth) { in ComputeMaskedBits() argument
[all …]
/external/javassist/src/main/javassist/runtime/
DCflow.java26 private static class Depth { class in Cflow
28 Depth() { depth = 0; } in Depth() method in Cflow.Depth
35 return new Depth(); in initialValue()
41 public void enter() { ((Depth)get()).inc(); } in enter()
46 public void exit() { ((Depth)get()).dec(); } in exit()
51 public int value() { return ((Depth)get()).get(); } in value()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp70 unsigned Depth) { in SimplifyDemandedBits() argument
72 KnownZero, KnownOne, Depth); in SimplifyDemandedBits()
102 unsigned Depth) { in SimplifyDemandedUseBits() argument
104 assert(Depth <= 6 && "Limit Search Depth"); in SimplifyDemandedUseBits()
137 if (Depth == 6) // Limit search depth. in SimplifyDemandedUseBits()
145 ComputeMaskedBits(V, KnownZero, KnownOne, Depth); in SimplifyDemandedUseBits()
152 if (Depth != 0 && !I->hasOneUse()) { in SimplifyDemandedUseBits()
159 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1); in SimplifyDemandedUseBits()
160 ComputeMaskedBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth+1); in SimplifyDemandedUseBits()
181 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1); in SimplifyDemandedUseBits()
[all …]
DInstCombine.h295 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/include/llvm/Analysis/
DValueTracking.h40 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/llvm/lib/Transforms/Utils/
DAddrModeMatcher.cpp70 unsigned Depth) { in MatchScaledValue() argument
74 return MatchAddr(ScaleReg, Depth); in MatchScaledValue()
156 unsigned Depth) { in MatchOperationAddr() argument
158 if (Depth >= 5) return false; in MatchOperationAddr()
163 return MatchAddr(AddrInst->getOperand(0), Depth); in MatchOperationAddr()
168 return MatchAddr(AddrInst->getOperand(0), Depth); in MatchOperationAddr()
179 return MatchAddr(AddrInst->getOperand(0), Depth); in MatchOperationAddr()
185 if (MatchAddr(AddrInst->getOperand(1), Depth+1) && in MatchOperationAddr()
186 MatchAddr(AddrInst->getOperand(0), Depth+1)) in MatchOperationAddr()
194 if (MatchAddr(AddrInst->getOperand(0), Depth+1) && in MatchOperationAddr()
[all …]
/external/clang/include/clang/Sema/
DTemplate.h65 const TemplateArgument &operator()(unsigned Depth, unsigned Index) const { in operator()
66 assert(Depth < TemplateArgumentLists.size()); in operator()
67 assert(Index < TemplateArgumentLists[getNumLevels() - Depth - 1].second); in operator()
68 return TemplateArgumentLists[getNumLevels() - Depth - 1].first[Index]; in operator()
75 bool hasTemplateArgument(unsigned Depth, unsigned Index) const { in hasTemplateArgument() argument
76 assert(Depth < TemplateArgumentLists.size()); in hasTemplateArgument()
78 if (Index >= TemplateArgumentLists[getNumLevels() - Depth - 1].second) in hasTemplateArgument()
81 return !(*this)(Depth, Index).isNull(); in hasTemplateArgument()
85 void setArgument(unsigned Depth, unsigned Index, in setArgument() argument
87 assert(Depth < TemplateArgumentLists.size()); in setArgument()
[all …]
/external/opencv/cxcore/include/
Dcvwimage.h207 int Depth() const;
243 assert(!img || img->depth == Depth()); in WImage()
247 assert(!image || image->depth == Depth()); in SetIpl()
290 assert(!image || image->depth == WImage<T>::Depth()); in SetIpl()
507 inline int WImage<uchar>::Depth() const {return IPL_DEPTH_8U; } in Depth() function
509 inline int WImage<schar>::Depth() const {return IPL_DEPTH_8S; } in Depth() function
511 inline int WImage<short>::Depth() const {return IPL_DEPTH_16S; } in Depth() function
513 inline int WImage<ushort>::Depth() const {return IPL_DEPTH_16U; } in Depth() function
515 inline int WImage<int>::Depth() const {return IPL_DEPTH_32S; } in Depth() function
517 inline int WImage<float>::Depth() const {return IPL_DEPTH_32F; } in Depth() function
[all …]
/external/clang/lib/Parse/
DParseTemplate.cpp45 unsigned &Depth; member in __anon3ab554430111::TemplateParameterDepthCounter
49 explicit TemplateParameterDepthCounter(unsigned &Depth) in TemplateParameterDepthCounter() argument
50 : Depth(Depth), AddedLevels(0) { } in TemplateParameterDepthCounter()
53 Depth -= AddedLevels; in ~TemplateParameterDepthCounter()
57 ++Depth; in operator ++()
61 operator unsigned() const { return Depth; } in operator unsigned()
120 TemplateParameterDepthCounter Depth(TemplateParameterDepth); in ParseTemplateDeclarationOrSpecialization() local
140 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc, in ParseTemplateDeclarationOrSpecialization()
150 Actions.ActOnTemplateParameterList(Depth, ExportLoc, in ParseTemplateDeclarationOrSpecialization()
157 ++Depth; in ParseTemplateDeclarationOrSpecialization()
[all …]
/external/expat/examples/
Doutline.c46 int Depth; variable
53 for (i = 0; i < Depth; i++) in start()
63 Depth++; in start()
69 Depth--; in end()
/external/clang/lib/Sema/
DScope.cpp33 Depth = parent->Depth + 1; in Init()
40 Depth = 0; in Init()
DSemaTemplateVariadic.cpp545 unsigned Depth = 0, Index = 0; in CheckParameterPacksForExpansion() local
551 Depth = TTP->getDepth(); in CheckParameterPacksForExpansion()
559 llvm::tie(Depth, Index) = getDepthAndIndex(ND); in CheckParameterPacksForExpansion()
586 if (Depth >= TemplateArgs.getNumLevels() || in CheckParameterPacksForExpansion()
587 !TemplateArgs.hasTemplateArgument(Depth, Index)) { in CheckParameterPacksForExpansion()
593 NewPackSize = TemplateArgs(Depth, Index).pack_size(); in CheckParameterPacksForExpansion()
605 if (PartialDepth == Depth && PartialIndex == Index) in CheckParameterPacksForExpansion()
648 unsigned Depth; in getNumArgumentsInExpansion() local
653 Depth = TTP->getDepth(); in getNumArgumentsInExpansion()
675 llvm::tie(Depth, Index) = getDepthAndIndex(ND); in getNumArgumentsInExpansion()
[all …]
DSemaTemplateDeduction.cpp756 unsigned Depth, Index; in DeduceTemplateArguments() local
757 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); in DeduceTemplateArguments()
758 if (Depth == 0 && !SawIndices[Index]) { in DeduceTemplateArguments()
1777 unsigned Depth, Index; in DeduceTemplateArguments() local
1778 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); in DeduceTemplateArguments()
1779 if (Depth == 0 && !SawIndices[Index]) { in DeduceTemplateArguments()
3148 unsigned Depth, Index; in DeduceTemplateArguments() local
3149 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); in DeduceTemplateArguments()
3150 if (Depth == 0 && !SawIndices[Index]) { in DeduceTemplateArguments()
4171 unsigned Depth,
[all …]
/external/llvm/include/llvm/Transforms/Utils/
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/qemu/distrib/sdl-1.2.15/src/video/vgl/
DSDL_vglvideo.c175 if (inmode->Depth < 8) { /* Not supported */ in VGL_AddMode()
178 index = ((inmode->Depth + 7) / 8) - 1; in VGL_AddMode()
267 vformat->BitsPerPixel = VGLCurMode->Depth; in VGL_VideoInit()
346 VGLCurMode->Depth = modes[i]->Depth; in VGL_SetVideoMode()
380 if (! SDL_ReallocFormat(current, modes[i]->Depth, VGLCurMode->Rmask, in VGL_SetVideoMode()
592 modescp->Depth = minfo.vi_depth; in VGLListModes()
607 (modes[i]->Depth >= modescp->Depth)) in VGLListModes()
/external/llvm/test/MC/COFF/
Dsimple-fixups.s18 # =>This Inner Loop Header: Depth=1
31 # =>This Inner Loop Header: Depth=1
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
DBloomFilter.java118 …eGlowPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth); in initFilter()
142 …renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, extractMat); in initFilter()
157 …t(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, hBlurMat); in initFilter()
172 …t(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, vBlurMat); in initFilter()
/external/llvm/include/llvm/
DPassManagers.h266 explicit PMDataManager() : TPM(NULL), Depth(0) { in PMDataManager()
335 unsigned getDepth() const { return Depth; } in getDepth()
336 void setDepth(unsigned newDepth) { Depth = newDepth; } in setDepth()
399 unsigned Depth; variable
/external/llvm/lib/CodeGen/
DScheduleDAGInstrs.cpp611 SUnit *SUa, SUnit *SUb, SUnit *ExitSU, unsigned *Depth, in iterateChainSucc() argument
614 return *Depth; in iterateChainSucc()
618 return *Depth; in iterateChainSucc()
631 return *Depth; in iterateChainSucc()
636 if (*Depth > 200 || in iterateChainSucc()
640 return *Depth; in iterateChainSucc()
643 (*Depth)++; in iterateChainSucc()
648 iterateChainSucc (AA, MFI, SUa, I->getSUnit(), ExitSU, Depth, Visited); in iterateChainSucc()
649 return *Depth; in iterateChainSucc()
663 unsigned Depth = 0; in adjustChainDeps() local
[all …]
DScheduleDAG.cpp201 Depth = NewDepth; in setDepthToAtLeast()
231 PredSU->Depth + I->getLatency()); in ComputeDepth()
240 if (MaxPredDepth != Cur->Depth) { in ComputeDepth()
242 Cur->Depth = MaxPredDepth; in ComputeDepth()
297 dbgs() << " Depth : " << Depth << "\n"; in dumpAll()
/external/mesa3d/docs/OLD/
DMESA_packed_depth_stencil.spec86 DEPTH_COMPONENT Depth Depth component
99 DEPTH_STENCIL Depth, Depth component, stencil index.
/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp181 explicit ScopedIncrement(int *Depth) : Depth(Depth) { ++(*Depth); } in ScopedIncrement()
182 ~ScopedIncrement() { --(*Depth); } in ~ScopedIncrement()
185 int *Depth; member
/external/chromium/chrome/common/
Dlibxml_utils.cc81 const int start_depth = Depth(); in ReadElementContent()
99 while (NodeType() != XML_READER_TYPE_END_ELEMENT || Depth() != start_depth) { in ReadElementContent()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1670 bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const { in SignBitIsZero()
1676 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth); in SignBitIsZero()
1683 unsigned Depth) const { in MaskedValueIsZero()
1685 ComputeMaskedBits(Op, KnownZero, KnownOne, Depth); in MaskedValueIsZero()
1695 APInt &KnownOne, unsigned Depth) const { in ComputeMaskedBits()
1699 if (Depth == 6) in ComputeMaskedBits()
1712 ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1); in ComputeMaskedBits()
1713 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); in ComputeMaskedBits()
1723 ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1); in ComputeMaskedBits()
1724 ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); in ComputeMaskedBits()
[all …]

12345