Home
last modified time | relevance | path

Searched refs:kMaxDepth (Results 1 – 14 of 14) sorted by relevance

/external/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmtojavascriptdepth.h13 bool IsWithinMaxDepth() const { return depth_ <= kMaxDepth; } in IsWithinMaxDepth()
21 const unsigned long kMaxDepth = 5000;
/external/boringssl/src/crypto/bytestring/
Dber.c27 static const unsigned kMaxDepth = 2048; variable
59 if (depth > kMaxDepth) { in cbs_find_ber()
112 if (depth > kMaxDepth) { in cbs_convert_ber()
/external/rust/crates/quiche/deps/boringssl/src/crypto/bytestring/
Dber.c27 static const unsigned kMaxDepth = 2048; variable
59 if (depth > kMaxDepth) { in cbs_find_ber()
115 if (depth > kMaxDepth) { in cbs_convert_ber()
/external/compiler-rt/lib/msan/
Dmsan_flags.inc22 MSAN_FLAG(int, origin_history_size, Origin::kMaxDepth, "")
Dmsan_origin.h164 static const int kMaxDepth = (1 << kDepthBits) - 1;
Dmsan.cc200 f->origin_history_size > Origin::kMaxDepth) { in InitializeFlags()
204 f->origin_history_size, Origin::kMaxDepth); in InitializeFlags()
/external/llvm-project/compiler-rt/lib/msan/
Dmsan_flags.inc21 MSAN_FLAG(int, origin_history_size, Origin::kMaxDepth, "")
Dmsan_origin.h163 static const int kMaxDepth = (1 << kDepthBits) - 1;
Dmsan.cpp205 f->origin_history_size > Origin::kMaxDepth) { in InitializeFlags()
209 f->origin_history_size, Origin::kMaxDepth); in InitializeFlags()
/external/pdfium/core/fpdfapi/page/
Dcpdf_psengine.h101 static const int kMaxDepth = 128;
Dcpdf_psengine.cpp119 if (depth > kMaxDepth) in Parse()
/external/tensorflow/tensorflow/compiler/jit/
Dxla_cluster_util.cc427 const int kMaxDepth = 10; in DoesAnyCalleeHaveRefNodes() local
429 if (depth == kMaxDepth && !call_target_list.empty()) { in DoesAnyCalleeHaveRefNodes()
/external/skia/src/core/
DSkStroke.cpp66 static constexpr int kMaxDepth = 75; member
67 int fCubicDepths[kMaxDepth + 1];
73 for (int i = 0; i <= kMaxDepth; i++) { in ~DepthHistogram()
79 SkASSERT(depth >= 0 && depth <= kMaxDepth); in incDepth()
/external/gemmlowp/standalone/
Dneon-gemm-kernel-benchmark.cc5830 const int kMaxDepth = 1024; in BenchmarkDepthToFitInCache() local
5831 const int clamped_unrounded_depth = std::min(kMaxDepth, unrounded_depth); in BenchmarkDepthToFitInCache()