Home
last modified time | relevance | path

Searched refs:depth_ (Results 1 – 25 of 41) sorted by relevance

12

/third_party/ninja/src/
Dstate.h42 : name_(name), current_use_(0), depth_(depth), delayed_() {} in Pool()
45 bool is_valid() const { return depth_ >= 0; } in is_valid()
46 int depth() const { return depth_; } in depth()
51 bool ShouldDelayEdge() const { return depth_ != 0; } in ShouldDelayEdge()
76 int depth_; member
Dstate.cc27 if (depth_ != 0) in EdgeScheduled()
32 if (depth_ != 0) in EdgeFinished()
37 assert(depth_ != 0); in DelayEdge()
45 if (current_use_ + edge->weight() > depth_) in RetrieveReadyEdges()
55 printf("%s (%d/%d) ->\n", name_.c_str(), current_use_, depth_); in Dump()
/third_party/gn/src/gn/
Dpool.h26 int64_t depth() const { return depth_; } in depth()
27 void set_depth(int64_t depth) { depth_ = depth; } in set_depth()
35 int64_t depth_ = 0; variable
/third_party/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter.cc208 depth_(0), in AnyWriter()
215 ++depth_; in StartObject()
222 } else if (is_well_known_type_ && depth_ == 1) { in StartObject()
240 --depth_; in EndObject()
242 if (depth_ >= 0) { in EndObject()
246 } else if (depth_ >= 0 || !is_well_known_type_) { in EndObject()
254 if (depth_ < 0) { in EndObject()
262 ++depth_; in StartList()
266 } else if (is_well_known_type_ && depth_ == 1) { in StartList()
279 --depth_; in EndList()
[all …]
Dprotostream_objectwriter.h241 int depth_; variable
/third_party/node/deps/v8/src/compiler/
Dloop-analysis.h52 uint32_t depth() const { return depth_; } in depth()
60 depth_(0), in Loop()
67 int depth_; variable
161 child->depth_ = parent->depth_ + 1; in SetParent()
Dloop-analysis.cc421 loop->loop->depth_ > innermost->loop->depth_) { in FinishLoopTree()
511 if (parent == nullptr || upper->depth_ > parent->depth_) { in ConnectLoopTree()
522 for (int i = 0; i < loop->depth_; i++) PrintF(" "); in PrintLoop()
523 PrintF("Loop depth = %d ", loop->depth_); in PrintLoop()
/third_party/vk-gl-cts/external/amber/src/src/
Dbuffer.h112 uint32_t GetDepth() const { return depth_; } in GetDepth()
114 void SetDepth(uint32_t depth) { depth_ = depth; } in SetDepth()
268 uint32_t depth_ = 1; variable
/third_party/gn/src/base/json/
Djson_parser.cc33 : max_depth_(max_depth), depth_(depth) { in StackMarker()
34 ++(*depth_); in StackMarker()
35 DCHECK_LE(*depth_, max_depth_); in StackMarker()
37 ~StackMarker() { --(*depth_); } in ~StackMarker()
39 bool IsTooDeep() const { return *depth_ >= max_depth_; } in IsTooDeep()
43 int* const depth_; member in base::internal::__anonee42242b0111::StackMarker
/third_party/protobuf/src/google/protobuf/
Dparse_context.h350 : EpsCopyInputStream(aliasing), depth_(depth) { in ParseContext()
359 int depth() const { return depth_; } in depth()
373 if (--depth_ < 0) return nullptr; in ParseGroup()
377 depth_++; in ParseGroup()
388 int depth_;
613 if (--depth_ < 0) return nullptr;
616 depth_++;
/third_party/node/deps/v8/src/ast/
Dast-traversal-visitor.h54 int depth() const { return depth_; } in AST_NODE_LIST()
60 int depth_; variable
85 ++depth_; \
87 --depth_; \
94 : root_(root), depth_(0) { in AstTraversalVisitor()
101 : root_(root), depth_(0) { in AstTraversalVisitor()
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
Dframe_buffer.cc71 height_ << info->base_mip_level, depth_, info->buffer->GetMipLevels(), in Initialize()
97 VK_IMAGE_TYPE_2D, usage_flags, width_, height_, depth_, 1u, 0u, 1u, 1u); in Initialize()
Dframe_buffer.h79 uint32_t depth_ = 1; variable
/third_party/spirv-tools/source/opt/
Dtypes.cpp365 depth_(d), in Image()
377 return dim_ == it->dim_ && depth_ == it->depth_ && arrayed_ == it->arrayed_ && in IsSameImpl()
386 oss << "image(" << sampled_type_->str() << ", " << dim_ << ", " << depth_ in str()
393 hash = hash_combine(hash, uint32_t(dim_), depth_, arrayed_, ms_, sampled_, in ComputeExtraStateHash()
Dtypes.h317 uint32_t depth() const { return depth_; } in depth()
331 uint32_t depth_; variable
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dtypes.cpp338 depth_(d), in Image()
350 return dim_ == it->dim_ && depth_ == it->depth_ && arrayed_ == it->arrayed_ && in IsSameImpl()
359 oss << "image(" << sampled_type_->str() << ", " << dim_ << ", " << depth_ in str()
369 words->push_back(depth_); in GetExtraHashWords()
Dtypes.h323 uint32_t depth() const { return depth_; } in depth()
338 uint32_t depth_; variable
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dtypes.cpp338 depth_(d), in Image()
350 return dim_ == it->dim_ && depth_ == it->depth_ && arrayed_ == it->arrayed_ && in IsSameImpl()
359 oss << "image(" << sampled_type_->str() << ", " << dim_ << ", " << depth_ in str()
369 words->push_back(depth_); in GetExtraHashWords()
Dtypes.h323 uint32_t depth() const { return depth_; } in depth()
338 uint32_t depth_; variable
/third_party/node/deps/v8/src/objects/
Dstring-inl.h1309 frames_[depth_++ & kDepthMask] = string; in PushLeft()
1314 frames_[(depth_ - 1) & kDepthMask] = string; in PushRight()
1318 if (depth_ > maximum_depth_) maximum_depth_ = depth_; in AdjustMaximumDepth()
1322 DCHECK_GT(depth_, 0); in Pop()
1323 DCHECK(depth_ <= maximum_depth_); in Pop()
1324 depth_--; in Pop()
Dstring.h1059 depth_ = 0;
1067 if (depth_ == 0) return String();
1083 inline bool StackBlown() { return maximum_depth_ - depth_ == kStackSize; }
1093 int depth_;
Dstring.cc1842 depth_ = 1; in Initialize()
1843 maximum_depth_ = kStackSize + depth_; in Initialize()
1848 DCHECK_NE(depth_, 0); in Continue()
1867 depth_ = 1; in Search()
1926 if (depth_ == 0) { in NextLeaf()
1936 ConsString cons_string = frames_[OffsetForDepth(depth_ - 1)]; in NextLeaf()
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fStencilTests.cpp134 …est_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFa… in StencilOp() argument
140 , depth (depth_) in StencilOp()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fStencilTests.cpp137 …est_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFa… in StencilOp() argument
143 , depth (depth_) in StencilOp()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c12417 int depth_; member
12488 if (!p->first_elem_[p->depth_]) { in print_comma()
12491 p->first_elem_[p->depth_] = false; in print_comma()
12766 p->depth_++; in start_frame()
12767 p->first_elem_[p->depth_] = true; in start_frame()
12773 p->depth_--; in end_frame()
12779 if (p->depth_ == 0) { in printer_startmsg()
12791 if (p->depth_ == 0) { in printer_endmsg()
12800 p->depth_++; in startseq()
12801 p->first_elem_[p->depth_] = true; in startseq()
[all …]

12