Home
last modified time | relevance | path

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

12345678910>>...17

/external/libcxxabi/test/
Ddynamic_cast_stress.pass.cpp16 template <std::size_t Indx, std::size_t Depth>
18 : public virtual C<Indx, Depth-1>,
19 public virtual C<Indx+1, Depth-1>
30 template <std::size_t Indx, std::size_t Depth>
32 : public virtual C<Indx, Depth-1>,
33 public virtual C<Indx+1, Depth-1>
37 template <class Indx, std::size_t Depth>
40 template <std::size_t ...Indx, std::size_t Depth>
41 struct makeB<std::__tuple_indices<Indx...>, Depth>
42 : public B<Indx, Depth>...
[all …]
/external/llvm/include/llvm/CodeGen/
DScoreboardHazardRecognizer.h46 size_t Depth; variable
50 Scoreboard():Data(nullptr), Depth(0), Head(0) { } in Scoreboard()
55 size_t getDepth() const { return Depth; } in getDepth()
58 assert(Depth && !(Depth & (Depth - 1)) &&
61 return Data[(Head + idx) & (Depth-1)];
66 Depth = d;
67 Data = new unsigned[Depth];
70 memset(Data, 0, Depth * sizeof(Data[0]));
75 Head = (Head + 1) & (Depth-1); in advance()
79 Head = (Head - 1) & (Depth-1); in recede()
/external/swiftshader/third_party/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/mesa3d/src/mesa/main/
Ddepth.c49 ctx->Depth.Clear = CLAMP( depth, 0.0, 1.0 ); in _mesa_ClearDepth()
68 if (ctx->Depth.Func == func) in _mesa_DepthFunc()
87 ctx->Depth.Func = func; in _mesa_DepthFunc()
107 if (ctx->Depth.Mask == flag) in _mesa_DepthMask()
111 ctx->Depth.Mask = flag; in _mesa_DepthMask()
138 if (ctx->Depth.BoundsMin == zmin && ctx->Depth.BoundsMax == zmax) in _mesa_DepthBoundsEXT()
142 ctx->Depth.BoundsMin = (GLfloat) zmin; in _mesa_DepthBoundsEXT()
143 ctx->Depth.BoundsMax = (GLfloat) zmax; in _mesa_DepthBoundsEXT()
158 ctx->Depth.Test = GL_FALSE; in _mesa_init_depth()
159 ctx->Depth.Clear = 1.0; in _mesa_init_depth()
[all …]
Dmatrix.c234 if (stack->Depth + 1 >= stack->MaxDepth) { in _mesa_PushMatrix()
246 if (stack->Depth + 1 >= stack->StackSize) { in _mesa_PushMatrix()
264 _math_matrix_copy( &stack->Stack[stack->Depth + 1], in _mesa_PushMatrix()
265 &stack->Stack[stack->Depth] ); in _mesa_PushMatrix()
266 stack->Depth++; in _mesa_PushMatrix()
267 stack->Top = &(stack->Stack[stack->Depth]); in _mesa_PushMatrix()
293 if (stack->Depth == 0) { in _mesa_PopMatrix()
305 stack->Depth--; in _mesa_PopMatrix()
306 stack->Top = &(stack->Stack[stack->Depth]); in _mesa_PopMatrix()
665 stack->Depth = 0; in init_matrix_stack()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DValueTracking.cpp62 const TargetData *TD, unsigned Depth) { in ComputeMaskedBits() argument
64 assert(Depth <= MaxDepth && "Limit Search Depth"); in ComputeMaskedBits()
96 TD, Depth); in ComputeMaskedBits()
130 TD, Depth+1); in ComputeMaskedBits()
147 if (Depth == MaxDepth || Mask == 0) in ComputeMaskedBits()
158 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1); in ComputeMaskedBits()
161 Depth+1); in ComputeMaskedBits()
172 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1); in ComputeMaskedBits()
175 Depth+1); in ComputeMaskedBits()
186 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1); in ComputeMaskedBits()
[all …]
/external/llvm/lib/Analysis/
DValueTracking.cpp123 unsigned Depth, const Query &Q);
126 const DataLayout &DL, unsigned Depth, in computeKnownBits() argument
129 ::computeKnownBits(V, KnownZero, KnownOne, Depth, in computeKnownBits()
149 unsigned Depth, const Query &Q);
152 const DataLayout &DL, unsigned Depth, in ComputeSignBit() argument
155 ::ComputeSignBit(V, KnownZero, KnownOne, Depth, in ComputeSignBit()
159 static bool isKnownToBeAPowerOfTwo(Value *V, bool OrZero, unsigned Depth,
163 unsigned Depth, AssumptionCache *AC, in isKnownToBeAPowerOfTwo() argument
166 return ::isKnownToBeAPowerOfTwo(V, OrZero, Depth, in isKnownToBeAPowerOfTwo()
170 static bool isKnownNonZero(Value *V, unsigned Depth, const Query &Q);
[all …]
/external/swiftshader/third_party/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, DemandedMask, KnownZero, KnownOne, Depth); in SimplifyDemandedUseBits()
152 if (Depth != 0 && !I->hasOneUse()) { in SimplifyDemandedUseBits()
160 RHSKnownZero, RHSKnownOne, Depth+1); in SimplifyDemandedUseBits()
162 LHSKnownZero, LHSKnownOne, Depth+1); in SimplifyDemandedUseBits()
184 RHSKnownZero, RHSKnownOne, Depth+1); in SimplifyDemandedUseBits()
[all …]
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp71 unsigned Depth) { in SimplifyDemandedBits() argument
74 KnownOne, Depth, UserI); in SimplifyDemandedBits()
105 unsigned Depth, in SimplifyDemandedUseBits() argument
108 assert(Depth <= 6 && "Limit Search Depth"); in SimplifyDemandedUseBits()
138 if (Depth == 6) // Limit search depth. in SimplifyDemandedUseBits()
146 computeKnownBits(V, KnownZero, KnownOne, Depth, CxtI); in SimplifyDemandedUseBits()
153 if (Depth != 0 && !I->hasOneUse()) { in SimplifyDemandedUseBits()
160 computeKnownBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth + 1, in SimplifyDemandedUseBits()
162 computeKnownBits(I->getOperand(0), LHSKnownZero, LHSKnownOne, Depth + 1, in SimplifyDemandedUseBits()
184 computeKnownBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth + 1, in SimplifyDemandedUseBits()
[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/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DAddrModeMatcher.cpp68 unsigned Depth) { in MatchScaledValue() argument
72 return MatchAddr(ScaleReg, Depth); in MatchScaledValue()
154 unsigned Depth) { in MatchOperationAddr() argument
156 if (Depth >= 5) return false; in MatchOperationAddr()
161 return MatchAddr(AddrInst->getOperand(0), Depth); in MatchOperationAddr()
166 return MatchAddr(AddrInst->getOperand(0), Depth); in MatchOperationAddr()
177 return MatchAddr(AddrInst->getOperand(0), Depth); in MatchOperationAddr()
183 if (MatchAddr(AddrInst->getOperand(1), Depth+1) && in MatchOperationAddr()
184 MatchAddr(AddrInst->getOperand(0), Depth+1)) in MatchOperationAddr()
192 if (MatchAddr(AddrInst->getOperand(0), Depth+1) && in MatchOperationAddr()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
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/llvm/lib/Target/NVPTX/
DNVPTXFavorNonGenericAddrSpaces.cpp107 Value *hoistAddrSpaceCastFrom(Value *V, int Depth = 0);
109 Value *hoistAddrSpaceCastFromGEP(GEPOperator *GEP, int Depth);
111 Value *hoistAddrSpaceCastFromBitCast(BitCastOperator *BC, int Depth);
149 GEPOperator *GEP, int Depth) { in hoistAddrSpaceCastFromGEP() argument
151 hoistAddrSpaceCastFrom(GEP->getPointerOperand(), Depth + 1); in hoistAddrSpaceCastFromGEP()
187 BitCastOperator *BC, int Depth) { in hoistAddrSpaceCastFromBitCast() argument
188 Value *NewOperand = hoistAddrSpaceCastFrom(BC->getOperand(0), Depth + 1); in hoistAddrSpaceCastFromBitCast()
224 int Depth) { in hoistAddrSpaceCastFrom() argument
231 if (Depth >= MaxDepth) in hoistAddrSpaceCastFrom()
238 return hoistAddrSpaceCastFromGEP(GEP, Depth); in hoistAddrSpaceCastFrom()
[all …]
/external/eigen/test/
Dproduct_small.cpp43 template<typename T, int Rows, int Cols, int Depth, int OC, int OA, int OB>
44 typename internal::enable_if<! ( (Rows ==1&&Depth!=1&&OA==ColMajor)
45 || (Depth==1&&Rows !=1&&OA==RowMajor)
46 || (Cols ==1&&Depth!=1&&OB==RowMajor)
47 || (Depth==1&&Cols !=1&&OB==ColMajor)
52 Matrix<T,Rows,Depth,OA> A(rows,depth); A.setRandom(); in test_lazy_single()
53 Matrix<T,Depth,Cols,OB> B(depth,cols); B.setRandom(); in test_lazy_single()
59 template<typename T, int Rows, int Cols, int Depth, int OC, int OA, int OB>
60 typename internal::enable_if< ( (Rows ==1&&Depth!=1&&OA==ColMajor)
61 || (Depth==1&&Rows !=1&&OA==RowMajor)
[all …]
/external/llvm/include/llvm/Analysis/
DValueTracking.h53 const DataLayout &DL, unsigned Depth = 0,
71 const DataLayout &DL, unsigned Depth = 0,
82 bool OrZero = false, unsigned Depth = 0,
91 bool isKnownNonZero(Value *V, const DataLayout &DL, unsigned Depth = 0,
97 bool isKnownNonNegative(Value *V, const DataLayout &DL, unsigned Depth = 0,
104 bool isKnownPositive(Value *V, const DataLayout &DL, unsigned Depth = 0,
111 bool isKnownNegative(Value *V, const DataLayout &DL, unsigned Depth = 0,
133 unsigned Depth = 0, AssumptionCache *AC = nullptr,
145 unsigned Depth = 0, AssumptionCache *AC = nullptr,
156 unsigned Depth = 0);
[all …]
/external/vulkan-validation-layers/libs/glm/gtx/
Dnorm.inl131 unsigned int Depth argument
134 …return pow(pow(y.x - x.x, T(Depth)) + pow(y.y - x.y, T(Depth)) + pow(y.z - x.z, T(Depth)), T(1) / …
141 unsigned int Depth argument
144 return pow(pow(v.x, T(Depth)) + pow(v.y, T(Depth)) + pow(v.z, T(Depth)), T(1) / T(Depth));
/external/llvm/lib/Support/
DSignals.cpp52 static bool findModulesAndOffsets(void **StackTrace, int Depth,
66 void **StackTrace, int Depth,
72 void **StackTrace, int Depth, in printSymbolizedStackTrace() argument
101 std::vector<const char *> Modules(Depth, nullptr); in printSymbolizedStackTrace()
102 std::vector<intptr_t> Offsets(Depth, 0); in printSymbolizedStackTrace()
103 if (!findModulesAndOffsets(StackTrace, Depth, Modules.data(), Offsets.data(), in printSymbolizedStackTrace()
115 for (int i = 0; i < Depth; i++) { in printSymbolizedStackTrace()
149 for (int i = 0; i < Depth; i++) { in printSymbolizedStackTrace()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DSignals.cpp52 static bool findModulesAndOffsets(void **StackTrace, int Depth,
66 void **StackTrace, int Depth,
72 void **StackTrace, int Depth, in printSymbolizedStackTrace() argument
101 std::vector<const char *> Modules(Depth, nullptr); in printSymbolizedStackTrace()
102 std::vector<intptr_t> Offsets(Depth, 0); in printSymbolizedStackTrace()
103 if (!findModulesAndOffsets(StackTrace, Depth, Modules.data(), Offsets.data(), in printSymbolizedStackTrace()
115 for (int i = 0; i < Depth; i++) { in printSymbolizedStackTrace()
149 for (int i = 0; i < Depth; i++) { in printSymbolizedStackTrace()
/external/ImageMagick/Magick++/demo/
Dsmile_anim.miff3 Columns=48 Rows=48 Depth=8
12 Columns=48 Rows=48 Depth=8
20 Columns=48 Rows=48 Depth=8
28 Columns=48 Rows=48 Depth=8
36 Columns=48 Rows=48 Depth=8
44 Columns=48 Rows=48 Depth=8
/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].size()); in operator()
68 return TemplateArgumentLists[getNumLevels() - Depth - 1][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].size()) 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/mesa3d/src/gallium/state_trackers/nine/
Dvolumetexture9.c33 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_ctor() argument
48 This, pParams, Width, Height, Depth, Levels, in NineVolumeTexture9_ctor()
51 user_assert(Width && Height && Depth, D3DERR_INVALIDCALL); in NineVolumeTexture9_ctor()
84 info->depth0 = Depth; in NineVolumeTexture9_ctor()
88 info->last_level = util_logbase2(MAX2(MAX2(Width, Height), Depth)); in NineVolumeTexture9_ctor()
119 voldesc.Depth = u_minify(Depth, l); in NineVolumeTexture9_ctor()
280 UINT Width, UINT Height, UINT Depth, UINT Levels, in NineVolumeTexture9_new() argument
288 Width, Height, Depth, Levels, in NineVolumeTexture9_new()
/external/mesa3d/src/mesa/state_tracker/
Dst_atom_depth.c109 if (ctx->Depth.Test) { in update_depth_stencil_alpha()
111 dsa->depth.writemask = ctx->Depth.Mask; in update_depth_stencil_alpha()
112 dsa->depth.func = st_compare_func_to_pipe(ctx->Depth.Func); in update_depth_stencil_alpha()
114 if (ctx->Depth.BoundsTest) { in update_depth_stencil_alpha()
116 dsa->depth.bounds_min = ctx->Depth.BoundsMin; in update_depth_stencil_alpha()
117 dsa->depth.bounds_max = ctx->Depth.BoundsMax; in update_depth_stencil_alpha()
/external/expat/examples/
Doutline.c58 int Depth; variable
66 for (i = 0; i < Depth; i++) in start()
76 Depth++; in start()
85 Depth--; in end()
/external/llvm/test/CodeGen/ARM/
Ddebug-info-no-frame.ll9 %Depth = alloca i32, align 4
10 call void @llvm.dbg.declare(metadata i32* %Depth, metadata !9, metadata !10), !dbg !11
11 store i32 2, i32* %Depth, align 4, !dbg !11
33 !9 = !DILocalVariable(name: "Depth", scope: !3, file: !1, line: 3, type: !6)
/external/llvm/lib/Transforms/ObjCARC/
DObjCARCAPElim.cpp44 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
71 bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) { in MayAutorelease() argument
80 if (Depth < 3 && in MayAutorelease()
82 MayAutorelease(JCS, Depth + 1)) in MayAutorelease()

12345678910>>...17