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

1 2 3

  /external/pdfium/xfa/fxfa/fm2js/
cxfa_fmtojavascriptdepth.h 10 CXFA_FMToJavaScriptDepth() { depth_++; }
11 ~CXFA_FMToJavaScriptDepth() { depth_--; }
13 bool IsWithinMaxDepth() const { return depth_ <= max_depth_; }
18 static unsigned long depth_; member in class:CXFA_FMToJavaScriptDepth
cxfa_fmtojavascriptdepth.cpp 16 unsigned long CXFA_FMToJavaScriptDepth::depth_ = 0; member in class:CXFA_FMToJavaScriptDepth
20 depth_ = 0;
  /external/webrtc/webrtc/libjingle/xmpp/
xmppstanzaparser.cc 28 depth_(0),
35 depth_ = 0;
42 if (depth_++ == 0) {
59 if (depth_ > 1) {
67 if (--depth_ == 0) {
74 if (depth_ == 1) {
xmppstanzaparser.h 72 int depth_; member in class:buzz::XmppStanzaParser
  /art/runtime/
subtype_check_info.h 143 return depth_;
157 io.depth_ = depth;
200 io.depth_ = 0u;
218 child.depth_ = depth_ + 1u;
287 if (path_to_root.Length() == depth_) {
313 return GetBitString()[depth_];
322 *next = GetBitString()[depth_];
336 depth_ = depth;
339 DCHECK_GE(depth_, path_to_root.Length()
486 size_t depth_; member in struct:art::SubtypeCheckInfo
    [all...]
thread_pool_test.cc 130 depth_(depth) {}
133 if (depth_ > 1) {
134 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1));
135 thread_pool_->AddTask(self, new TreeTask(thread_pool_, count_, depth_ - 1));
148 const int depth_; member in class:art::TreeTask
  /art/openjdkjvmti/
ti_stack.h 93 depth_(static_cast<size_t>(depth)) { }
103 if (cnt_ == depth_) {
116 size_t depth_; member in struct:openjdkjvmti::FindFrameAtDepthVisitor
  /external/strace/tests/
test_nlattr.h 209 pattern_, obj_, depth_, ...) \
215 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
216 (hdrlen_) + NLA_HDRLEN * depth_, \
222 for (i = 0; i < depth_; ++i) \
225 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
226 (hdrlen_) + NLA_HDRLEN * depth_, \
233 for (i = 0; i < depth_; ++i) \
236 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
237 (hdrlen_) + NLA_HDRLEN * depth_, \
244 for (i = 0; i < depth_; ++i)
    [all...]
  /external/strace/tests-m32/
test_nlattr.h 209 pattern_, obj_, depth_, ...) \
215 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
216 (hdrlen_) + NLA_HDRLEN * depth_, \
222 for (i = 0; i < depth_; ++i) \
225 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
226 (hdrlen_) + NLA_HDRLEN * depth_, \
233 for (i = 0; i < depth_; ++i) \
236 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
237 (hdrlen_) + NLA_HDRLEN * depth_, \
244 for (i = 0; i < depth_; ++i)
    [all...]
  /external/strace/tests-mx32/
test_nlattr.h 209 pattern_, obj_, depth_, ...) \
215 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
216 (hdrlen_) + NLA_HDRLEN * depth_, \
222 for (i = 0; i < depth_; ++i) \
225 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
226 (hdrlen_) + NLA_HDRLEN * depth_, \
233 for (i = 0; i < depth_; ++i) \
236 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \
237 (hdrlen_) + NLA_HDRLEN * depth_, \
244 for (i = 0; i < depth_; ++i)
    [all...]
  /external/v8/src/compiler/
loop-analysis.h 45 size_t depth() const { return static_cast<size_t>(depth_); }
53 depth_(0),
60 int depth_; member in class:v8::internal::compiler::LoopTree::Loop
144 child->depth_ = parent->depth_ + 1;
loop-analysis.cc 396 loop->loop->depth_ > innermost->loop->depth_) {
478 if (parent == nullptr || upper->depth_ > parent->depth_) {
489 for (int i = 0; i < loop->depth_; i++) PrintF(" ");
490 PrintF("Loop depth = %d ", loop->depth_);
  /system/update_engine/
certificate_checker_unittest.cc 52 depth_);
64 int depth_{0};
81 SetArgPointee<1>(depth_),
98 SetArgPointee<1>(depth_),
116 SetArgPointee<1>(depth_),
  /frameworks/base/tools/aapt2/xml/
XmlPullParser.cpp 33 XmlPullParser::XmlPullParser(InputStream* in) : in_(in), empty_(), depth_(0) {
41 event_queue_.push(EventData{Event::kStartDocument, 0, depth_++});
220 XML_GetCurrentLineNumber(parser->parser_), parser->depth_++,
231 parser->depth_++};
254 parser->depth_, std::string(s, len)});
263 --(parser->depth_)};
276 --(parser->depth_), prefix != nullptr ? prefix : std::string(),
287 parser->depth_, comment});
  /art/compiler/debug/dwarf/
debug_info_entry_writer.h 64 depth_++;
71 DCHECK_GT(depth_, 0);
82 depth_--;
194 int Depth() const { return depth_; }
212 DCHECK_EQ(depth_, 0);
219 int depth_ = 0; member in class:art::dwarf::FINAL
  /external/tensorflow/tensorflow/core/kernels/
pooling_ops_3d_sycl.h 39 : depth_(depth),
68 : depth_(params.depth),
86 const int depth_; member in struct:tensorflow::SYCL3DPoolParams
142 int d = n % p_.depth_;
143 n /= p_.depth_;
158 input_data + n * p_.in_planes_ * p_.in_cols_ * p_.in_rows_ * p_.depth_;
162 int idx = ((p * p_.in_rows_ + r) * p_.in_cols_ + c) * p_.depth_ + d;
260 const int d = n % p_.depth_;
261 n /= p_.depth_;
280 index - n * p_.in_planes_ * p_.in_cols_ * p_.in_rows_ * p_.depth_;
    [all...]
mkl_fused_batch_norm_op.cc 937 size_t depth_; \/\/ batch normalization is done for per channel. member in class:tensorflow::MklFusedBatchNormOp
1283 int depth_; \/\/ batch normalization is done for per channel. member in class:tensorflow::MklFusedBatchNormGradOp
    [all...]
  /external/gemmlowp/internal/
pack.h 145 : data_(data), width_(width), depth_(depth), stride_(stride) {}
148 : data_(data), width_(width), depth_(depth) {
149 stride_ = kOrder == SideMapOrder::WidthMajor ? depth_ : width_;
155 depth_(other.depth_),
159 int depth() const { return depth_; }
179 assert(start_depth + block_depth <= depth_);
187 int width_, depth_, stride_; member in class:gemmlowp::SideMap
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter.cc 184 depth_(0),
191 ++depth_;
204 } else if (is_well_known_type_ && depth_ == 1) {
222 --depth_;
223 // As long as depth_ >= 0, we know we haven't reached the end of Any.
226 if (ow_ != NULL && (depth_ >= 0 || !is_well_known_type_)) {
229 // A negative depth_ implies that we have reached the end of Any
231 if (depth_ < 0) {
239 ++depth_;
248 } else if (is_well_known_type_ && depth_ == 1)
    [all...]
  /external/libchrome/base/json/
json_parser.cc 36 explicit StackMarker(int* depth) : depth_(depth) {
37 ++(*depth_);
38 DCHECK_LE(*depth_, kStackMaxDepth);
41 --(*depth_);
45 return *depth_ >= kStackMaxDepth;
49 int* const depth_; member in class:base::internal::__anon24194::StackMarker
  /external/v8/src/ast/
ast-traversal-visitor.h 52 int depth() const { return depth_; }
58 int depth_; member in class:v8::internal::AstTraversalVisitor
85 ++depth_; \
87 --depth_; \
94 : root_(root), depth_(0) {
101 : root_(root), depth_(0) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
types.cpp 144 depth_(depth),
156 return dim_ == it->dim_ && depth_ == it->depth_ && arrayed_ == it->arrayed_ &&
164 oss << "image(" << sampled_type_->str() << ", " << dim_ << ", " << depth_
  /art/compiler/optimizing/
inliner.h 58 depth_(depth),
290 const size_t depth_; member in class:art::HInliner
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer.cpp 57 PseudoMethodAccent() : depth_(0), word_count_(0), length_(0) {}
64 size_t depth_; member in class:aapt::PseudoMethodAccent
325 if (depth_ == 0) {
329 depth_++;
340 depth_--;
341 if (depth_ == 0) {
  /external/ImageMagick/Magick++/lib/Magick++/
Image.h 67 Image(const Blob &blob_,const Geometry &size_,const size_t depth_);
71 Image(const Blob &blob_,const Geometry &size_,const size_t depth_,
160 void channelDepth(const ChannelType channel_,const size_t depth_);
215 void depth(const size_t depth_);
    [all...]

Completed in 751 milliseconds

1 2 3