Home
last modified time | relevance | path

Searched refs:depth_ (Results 1 - 25 of 46) sorted by relevance

12

/third_party/ninja/src/
H A 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
H A 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/
H A 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; member in Pool
/third_party/node/deps/v8/src/compiler/
H A Dloop-analysis.h52 uint32_t depth() const { return depth_; } in depth()
60 depth_(0), in Loop()
67 int depth_; member in v8::internal::compiler::LoopTree::Loop
161 child->depth_ = parent->depth_ + 1; in SetParent()
H A 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/protobuf/src/google/protobuf/util/internal/
H A 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()
247 // As long as depth_ >= 0, we know we haven't reached the end of Any. in EndObject()
252 // A negative depth_ implies that we have reached the end of Any in EndObject()
254 if (depth_ < 0) { in EndObject()
262 ++depth_; in StartList()
[all...]
H A Dprotostream_objectwriter.h241 int depth_; member in google::protobuf::util::converter::ProtoStreamObjectWriter::AnyWriter
/third_party/vk-gl-cts/external/amber/src/src/
H A Dbuffer.h114 uint32_t GetDepth() const { return depth_; } in GetDepth()
116 void SetDepth(uint32_t depth) { depth_ = depth; } in SetDepth()
270 uint32_t depth_ = 1; member in amber::Buffer
/third_party/gn/src/base/json/
H A 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::__anon2846::StackMarker
/third_party/node/deps/v8/src/ast/
H A Dast-traversal-visitor.h54 int depth() const { return depth_; } in depth()
60 int depth_; member in v8::internal::AstTraversalVisitor
85 ++depth_; \
87 --depth_; \
94 : root_(root), depth_(0) { in AstTraversalVisitor()
101 : root_(root), depth_(0) { in AstTraversalVisitor()
/third_party/protobuf/src/google/protobuf/
H A 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_; member in google::protobuf::ParseContext
613 if (--depth_ < 0) return nullptr; in ParseMessage()
616 depth_++; in ParseMessage()
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Dframe_buffer.cc73 height_ << info->base_mip_level, depth_, info->buffer->GetMipLevels(), in Initialize()
99 VK_IMAGE_TYPE_2D, usage_flags, width_, height_, depth_, 1u, 0u, 1u, 1u); in Initialize()
114 VK_IMAGE_TYPE_2D, usage_flags, width_, height_, depth_, 1u, 0u, 1u, in Initialize()
H A Dframe_buffer.h82 uint32_t depth_ = 1; member in amber::vulkan::FrameBuffer
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A 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()
H A Dtypes.h323 uint32_t depth() const { return depth_; } in depth()
338 uint32_t depth_; member in spvtools::opt::analysis::Image
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A 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()
H A Dtypes.h323 uint32_t depth() const { return depth_; } in depth()
338 uint32_t depth_; member in spvtools::opt::analysis::Image
/third_party/spirv-tools/source/opt/
H A Dtypes.cpp369 depth_(d), in Image()
381 return dim_ == it->dim_ && depth_ == it->depth_ && arrayed_ == it->arrayed_ && in IsSameImpl()
391 << depth_ << ", " << arrayed_ << ", " << ms_ << ", " << sampled_ << ", " in str()
397 hash = hash_combine(hash, uint32_t(dim_), depth_, arrayed_, ms_, sampled_, in ComputeExtraStateHash()
H A Dtypes.h327 uint32_t depth() const { return depth_; } in depth()
341 uint32_t depth_; member in spvtools::opt::analysis::Image
/third_party/node/deps/v8/src/objects/
H A Dstring.h1059 depth_ = 0; in Reset()
1067 if (depth_ == 0) return String(); in Next()
1083 inline bool StackBlown() { return maximum_depth_ - depth_ == kStackSize; } in StackBlown()
1093 int depth_; member in v8::internal::String::FlatContent::ConsStringIterator
H A 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()
H A 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/littlefs/scripts/
H A Dstack.py491 def recurse(names_, depth_, prefixes=('', '', '', '')):
514 if name in table and depth_ > 1:
521 depth_-1,
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fStencilTests.cpp137 StencilOp (Type type_, GLenum stencilTest_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFail_ = GL_KEEP, GLenum dFail_ = GL_KEEP, GLenum dPass_ = GL_KEEP) in StencilOp()
143 , depth (depth_) in StencilOp()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fStencilTests.cpp134 StencilOp (Type type_, GLenum stencilTest_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFail_ = GL_KEEP, GLenum dFail_ = GL_KEEP, GLenum dPass_ = GL_KEEP) in StencilOp()
140 , depth (depth_) in StencilOp()

Completed in 26 milliseconds

12