/external/strace/tests-m32/ |
D | test_nlattr.h | 227 depth_, ...) \ argument 234 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 235 (hdrlen_) + NLA_HDRLEN * depth_, \ 241 for (i = 0; i < depth_; ++i) \ 244 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 245 (hdrlen_) + NLA_HDRLEN * depth_, \ 252 for (i = 0; i < depth_; ++i) \ 255 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 256 (hdrlen_) + NLA_HDRLEN * depth_, \ 263 for (i = 0; i < depth_; ++i) \ [all …]
|
/external/strace/tests/ |
D | test_nlattr.h | 227 depth_, ...) \ argument 234 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 235 (hdrlen_) + NLA_HDRLEN * depth_, \ 241 for (i = 0; i < depth_; ++i) \ 244 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 245 (hdrlen_) + NLA_HDRLEN * depth_, \ 252 for (i = 0; i < depth_; ++i) \ 255 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 256 (hdrlen_) + NLA_HDRLEN * depth_, \ 263 for (i = 0; i < depth_; ++i) \ [all …]
|
/external/strace/tests-mx32/ |
D | test_nlattr.h | 227 depth_, ...) \ argument 234 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 235 (hdrlen_) + NLA_HDRLEN * depth_, \ 241 for (i = 0; i < depth_; ++i) \ 244 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 245 (hdrlen_) + NLA_HDRLEN * depth_, \ 252 for (i = 0; i < depth_; ++i) \ 255 TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * depth_, \ 256 (hdrlen_) + NLA_HDRLEN * depth_, \ 263 for (i = 0; i < depth_; ++i) \ [all …]
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | xmppstanzaparser.cc | 28 depth_(0), in XmppStanzaParser() 35 depth_ = 0; in Reset() 42 if (depth_++ == 0) { in IncomingStartElement() 59 if (depth_ > 1) { in IncomingCharacterData() 67 if (--depth_ == 0) { in IncomingEndElement() 74 if (depth_ == 1) { in IncomingEndElement()
|
/external/pdfium/xfa/fxfa/fm2js/ |
D | cxfa_fmtojavascriptdepth.h | 10 CXFA_FMToJavaScriptDepth() { depth_++; } in CXFA_FMToJavaScriptDepth() 11 ~CXFA_FMToJavaScriptDepth() { depth_--; } in ~CXFA_FMToJavaScriptDepth() 13 bool IsWithinMaxDepth() const { return depth_ <= kMaxDepth; } in IsWithinMaxDepth() 23 static unsigned long depth_; variable
|
D | cxfa_fmtojavascriptdepth.cpp | 7 unsigned long CXFA_FMToJavaScriptDepth::depth_ = 0; member in CXFA_FMToJavaScriptDepth 10 depth_ = 0; in Reset()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | pooling_ops_3d_sycl.h | 39 : depth_(depth), in SYCL3DPoolParams() 68 : depth_(params.depth), in SYCL3DPoolParams() 86 const int depth_; member 142 int d = n % p_.depth_; in operator() 143 n /= p_.depth_; in operator() 158 input_data + n * p_.in_planes_ * p_.in_cols_ * p_.in_rows_ * p_.depth_; in operator() 162 int idx = ((p * p_.in_rows_ + r) * p_.in_cols_ + c) * p_.depth_ + d; in operator() 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 …]
|
D | mkl_fused_batch_norm_op.cc | 527 depth_ = 0; in MklFusedBatchNormOp() 596 depth_ = dnn_shape_src.DimSize(MklDnnDims::Dim_C); in Compute() 644 weights.AllocateBuffer(2 * depth_ * sizeof(U)); in Compute() 649 std::memcpy(weights_data, scale_tf, depth_ * sizeof(U)); in Compute() 650 std::memcpy(weights_data + depth_, shift_tf, depth_ * sizeof(U)); in Compute() 654 depth_ * sizeof(U)); in Compute() 660 depth_ * sizeof(U)); in Compute() 664 src_dims, depth_, epsilon_, is_training_, in Compute() 698 depth_ * sizeof(U)); in Compute() 713 for (int k = 0; k < depth_; k++) { in Compute() [all …]
|
D | deep_conv2d.cc | 510 depth_(depth), in GemmFilterPacker() 512 lhs_mapper_(lhs_input, depth_) {} in GemmFilterPacker() 514 void Run() { pack_lhs(lhs_block_, lhs_mapper_, depth_, rows_); } in Run() 518 const int64 depth_; member in tensorflow::GemmFilterPacker 593 depth_(depth), in GemmState() 598 rhs_mapper_(rhs_input, depth_), in GemmState() 601 void PackRhs() { pack_rhs(rhs_block_, rhs_mapper_, depth_, cols_); } in PackRhs() 605 gebp(out_mapper_, lhs_block_, rhs_block_, rows_, depth_, cols_, 1.0); in Compute() 611 const int64 depth_; member in tensorflow::GemmState
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
D | linear_storage.cc | 24 : depth_(depth), storage_type_(storage_type), data_type_(data_type) {} in LinearStorage() 30 depth_(storage.depth_), in LinearStorage() 42 std::swap(depth_, storage.depth_); in operator =()
|
/external/v8/src/compiler/ |
D | loop-analysis.h | 48 size_t depth() const { return static_cast<size_t>(depth_); } in depth() 56 depth_(0), in Loop() 63 int depth_; variable 146 child->depth_ = parent->depth_ + 1; in SetParent()
|
D | loop-analysis.cc | 406 loop->loop->depth_ > innermost->loop->depth_) { in FinishLoopTree() 496 if (parent == nullptr || upper->depth_ > parent->depth_) { in ConnectLoopTree() 507 for (int i = 0; i < loop->depth_; i++) PrintF(" "); in PrintLoop() 508 PrintF("Loop depth = %d ", loop->depth_); in PrintLoop()
|
/external/gemmlowp/internal/ |
D | pack.h | 149 : data_(data), width_(width), depth_(depth), stride_(stride) {} in SideMap() 152 : data_(data), width_(width), depth_(depth) { in SideMap() 153 stride_ = kOrder == SideMapOrder::WidthMajor ? depth_ : width_; in SideMap() 159 depth_(other.depth_), in SideMap() 163 int depth() const { return depth_; } in depth() 183 assert(start_depth + block_depth <= depth_); in block() 191 int width_, depth_, stride_; variable
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectwriter.cc | 210 depth_(0), in AnyWriter() 217 ++depth_; in StartObject() 224 } else if (is_well_known_type_ && depth_ == 1) { in StartObject() 242 --depth_; in EndObject() 244 if (depth_ >= 0) { in EndObject() 248 } else if (depth_ >= 0 || !is_well_known_type_) { in EndObject() 256 if (depth_ < 0) { in EndObject() 264 ++depth_; in StartList() 268 } else if (is_well_known_type_ && depth_ == 1) { in StartList() 281 --depth_; in EndList() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | call_graph.h | 127 int depth() const { return depth_; } in depth() 139 void set_depth(int value) { depth_ = value; } in set_depth() 177 int depth_ = 0; variable
|
/external/libchrome/base/json/ |
D | json_parser.cc | 34 : max_depth_(max_depth), depth_(depth) { in StackMarker() 35 ++(*depth_); in StackMarker() 36 DCHECK_LE(*depth_, max_depth_); in StackMarker() 39 --(*depth_); in ~StackMarker() 42 bool IsTooDeep() const { return *depth_ >= max_depth_; } in IsTooDeep() 46 int* const depth_; member in base::internal::__anonbe7e90ed0111::StackMarker
|
/external/protobuf/src/google/protobuf/ |
D | parse_context.h | 331 : EpsCopyInputStream(aliasing), depth_(depth) { in ParseContext() 340 int depth() const { return depth_; } in depth() 355 if (--depth_ < 0) return nullptr; in ParseGroup() 359 depth_++; in ParseGroup() 370 int depth_; 577 if (--depth_ < 0) return nullptr; in ParseMessage() 580 depth_++; in ParseMessage()
|
/external/v8/src/ast/ |
D | ast-traversal-visitor.h | 52 int depth() const { return depth_; } in AST_NODE_LIST() 58 int depth_; variable 85 ++depth_; \ 87 --depth_; \ 94 : root_(root), depth_(0) { in AstTraversalVisitor() 101 : root_(root), depth_(0) { in AstTraversalVisitor()
|
/external/deqp-deps/amber/src/vulkan/ |
D | frame_buffer.cc | 66 width_, height_, depth_)); in Initialize() 85 width_, height_, depth_); in Initialize()
|
D | frame_buffer.h | 77 uint32_t depth_ = 1; variable
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | 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_, 157 void channelDepth(const ChannelType channel_,const size_t depth_); 212 void depth(const size_t depth_); 1214 void read(const Blob &blob_,const Geometry &size_,const size_t depth_); 1218 void read(const Blob &blob_,const Geometry &size_,const size_t depth_, 1481 void write(Blob *blob_,const std::string &magick_,const size_t depth_);
|
/external/v8/src/objects/ |
D | string-inl.h | 816 frames_[depth_++ & kDepthMask] = string; in PushLeft() 821 frames_[(depth_ - 1) & kDepthMask] = string; in PushRight() 825 if (depth_ > maximum_depth_) maximum_depth_ = depth_; in AdjustMaximumDepth() 829 DCHECK_GT(depth_, 0); in Pop() 830 DCHECK(depth_ <= maximum_depth_); in Pop() 831 depth_--; in Pop()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | types.cpp | 335 depth_(d), in Image() 347 return dim_ == it->dim_ && depth_ == it->depth_ && arrayed_ == it->arrayed_ && in IsSameImpl() 356 oss << "image(" << sampled_type_->str() << ", " << dim_ << ", " << depth_ in str() 366 words->push_back(depth_); in GetExtraHashWords()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | types.cpp | 338 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()
|
/external/angle/third_party/spirv-tools/src/source/opt/ |
D | types.cpp | 338 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()
|