HomeSort by relevance Sort by last modified time
    Searched refs:Depth (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/javassist/src/main/javassist/runtime/
Cflow.java 26 private static class Depth {
27 private int depth; field in class:Cflow.Depth
28 Depth() { depth = 0; }
29 int get() { return depth; }
30 void inc() { ++depth; }
31 void dec() { --depth; }
35 return new Depth();
41 public void enter() { ((Depth)get()).inc(); }
46 public void exit() { ((Depth)get()).dec();
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
dynamic_cast_stress.cpp 15 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>..
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 46 size_t Depth;
50 Scoreboard():Data(NULL), 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/chrome/common/media_galleries/
itunes_xml_utils.cc 25 int depth = reader->Depth(); local
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());
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
depth.c 29 #include "depth.h"
42 _mesa_ClearDepth( GLclampd depth )
48 _mesa_debug(ctx, "glClearDepth(%f)\n", depth);
50 depth = CLAMP( depth, 0.0, 1.0 );
52 if (ctx->Depth.Clear == depth)
56 ctx->Depth.Clear = depth;
61 _mesa_ClearDepthf( GLclampf depth )
    [all...]
matrix.c 251 if (stack->Depth + 1 >= stack->MaxDepth) {
263 _math_matrix_copy( &stack->Stack[stack->Depth + 1],
264 &stack->Stack[stack->Depth] );
265 stack->Depth++;
266 stack->Top = &(stack->Stack[stack->Depth]);
291 if (stack->Depth == 0) {
303 stack->Depth--;
304 stack->Top = &(stack->Stack[stack->Depth]);
658 * \param maxDepth maximum stack depth.
670 stack->Depth = 0
    [all...]
  /external/mesa3d/src/mesa/main/
depth.c 29 #include "depth.h"
42 _mesa_ClearDepth( GLclampd depth )
48 _mesa_debug(ctx, "glClearDepth(%f)\n", depth);
50 depth = CLAMP( depth, 0.0, 1.0 );
52 if (ctx->Depth.Clear == depth)
56 ctx->Depth.Clear = depth;
61 _mesa_ClearDepthf( GLclampf depth )
    [all...]
  /external/llvm/include/llvm/Analysis/
ValueTracking.h 40 const DataLayout *TD = 0, unsigned Depth = 0);
46 const DataLayout *TD = 0, unsigned Depth = 0);
53 bool isKnownToBeAPowerOfTwo(Value *V, bool OrZero = false, unsigned Depth = 0);
59 bool isKnownNonZero(Value *V, const DataLayout *TD = 0, unsigned Depth = 0);
71 const DataLayout *TD = 0, unsigned Depth = 0);
83 unsigned Depth = 0);
92 unsigned Depth = 0);
97 bool CannotBeNegativeZero(const Value *V, unsigned Depth = 0);
  /external/clang/lib/Sema/
Scope.cpp 33 Depth = parent->Depth + 1;
40 Depth = 0;
  /external/expat/examples/
outline.c 46 int Depth;
53 for (i = 0; i < Depth; i++)
63 Depth++;
69 Depth--;
  /external/llvm/test/MC/COFF/
simple-fixups.s 18 # =>This Inner Loop Header: Depth=1
31 # =>This Inner Loop Header: Depth=1
  /external/llvm/lib/Analysis/
ValueTracking.cpp 49 const DataLayout *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 DataLayout *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 DataLayout *TD, unsigned Depth) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 71 unsigned Depth) {
73 KnownZero, KnownOne, Depth);
103 unsigned Depth) {
105 assert(Depth <= 6 && "Limit Search Depth");
138 if (Depth == 6) // Limit search depth.
146 ComputeMaskedBits(V, KnownZero, KnownOne, Depth);
153 if (Depth != 0 && !I->hasOneUse()) {
160 ComputeMaskedBits(I->getOperand(1), RHSKnownZero, RHSKnownOne, Depth+1)
    [all...]
InstCombine.h 303 APInt &KnownOne, unsigned Depth = 0) const {
304 return llvm::ComputeMaskedBits(V, KnownZero, KnownOne, TD, Depth);
308 unsigned Depth = 0) const {
309 return llvm::MaskedValueIsZero(V, Mask, TD, Depth);
311 unsigned ComputeNumSignBits(Value *Op, unsigned Depth = 0) const {
312 return llvm::ComputeNumSignBits(Op, TD, Depth);
332 unsigned Depth);
335 unsigned Depth=0);
348 APInt& UndefElts, unsigned Depth = 0);
  /external/chromium_org/chrome/utility/media_galleries/
itunes_library_parser.cc 63 int dict_content_depth = reader->Depth() + 1;
73 while (reader->Depth() >= dict_content_depth &&
80 DCHECK_EQ(dict_content_depth, reader->Depth());
137 while (reader->Depth() >= dict_content_depth)
201 int tracks_dict_depth = reader.Depth() + 1;
209 while (reader.Depth() >= tracks_dict_depth) {
  /external/clang/include/clang/Sema/
Template.h 40 /// list will contain a template argument list (int) at depth 0 and a
41 /// template argument list (17) at depth 1.
43 /// \brief The template argument list at a certain template depth
64 /// \brief Retrieve the template argument at a given depth and index.
65 const TemplateArgument &operator()(unsigned Depth, unsigned Index) const {
66 assert(Depth < TemplateArgumentLists.size());
67 assert(Index < TemplateArgumentLists[getNumLevels() - Depth - 1].size());
68 return TemplateArgumentLists[getNumLevels() - Depth - 1][Index];
72 /// given depth and index.
74 /// There must exist a template argument list at the given depth
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_depthstencil.c 85 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/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 43 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
70 bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) {
80 // This recursion depth limit is arbitrary. It's just great
82 if (Depth < 3 &&
84 MayAutorelease(JCS, Depth + 1))
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_depthstencil.c 85 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/qemu/distrib/sdl-1.2.15/src/video/vgl/
SDL_vglvideo.h 40 int Depth;
  /external/opencv/cxcore/include/
cvwimage.h 204 // Return depth type (e.g. IPL_DEPTH_8U, IPL_DEPTH_32F) which is the number
207 int Depth() const;
243 assert(!img || img->depth == Depth());
247 assert(!image || image->depth == Depth());
290 assert(!image || image->depth == WImage<T>::Depth());
505 // Specializations for depth
507 inline int WImage<uchar>::Depth() const {return IPL_DEPTH_8U;
    [all...]
  /external/chromium_org/third_party/libxml/chromium/
libxml_utils.cc 52 const int start_depth = Depth();
70 while (NodeType() != XML_READER_TYPE_END_ELEMENT || Depth() != start_depth) {
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texture.c 71 texImage->Height, texImage->Depth);
86 swImg->ImageOffsets = (GLuint *) malloc(texImage->Depth * sizeof(GLuint));
90 for (i = 0; i < texImage->Depth; i++) {
114 (texImage->Depth == 1 || _mesa_is_pow_two(texImage->Depth2)))
129 swImg->DepthScale = (GLfloat) texImage->Depth;
220 assert(slice < texImage->Depth);
337 GLsizei height, GLsizei depth)
  /external/mesa3d/src/mesa/swrast/
s_texture.c 71 texImage->Height, texImage->Depth);
86 swImg->ImageOffsets = (GLuint *) malloc(texImage->Depth * sizeof(GLuint));
90 for (i = 0; i < texImage->Depth; i++) {
114 (texImage->Depth == 1 || _mesa_is_pow_two(texImage->Depth2)))
129 swImg->DepthScale = (GLfloat) texImage->Depth;
220 assert(slice < texImage->Depth);
337 GLsizei height, GLsizei depth)
  /external/chromium_org/third_party/libxml/src/
regressions.py 263 if reader.Depth() == 2:
269 elif reader.Depth() == 3:
296 if reader.Depth() == 2:
304 elif reader.Depth() == 3:
316 if reader.Depth() == 0:
318 if reader.Depth() != 1:
320 reader.Depth(), reader.NodeType(), reader.Name())

Completed in 1296 milliseconds

1 2 3 4 5 6 7 8 91011