/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
H A D | stacktrace.cc | 34 // correctly when absl::GetStackTrace() is called with max_depth == 0. 70 int max_depth, int skip_count, in Unwind() 78 int size = (*f)(result, sizes, max_depth, skip_count + 1, uc, in Unwind() 88 void** result, int* sizes, int max_depth, int skip_count) { in GetStackFrames() 89 return Unwind<true, false>(result, sizes, max_depth, skip_count, nullptr, in GetStackFrames() 94 GetStackFramesWithContext(void** result, int* sizes, int max_depth, in GetStackFramesWithContext() argument 97 return Unwind<true, true>(result, sizes, max_depth, skip_count, uc, in GetStackFramesWithContext() 102 void** result, int max_depth, int skip_count) { in GetStackTrace() 103 return Unwind<false, false>(result, nullptr, max_depth, skip_count, nullptr, in GetStackTrace() 108 GetStackTraceWithContext(void** result, int max_depth, in argument 69 Unwind(void** result, int* sizes, int max_depth, int skip_count, const void* uc, int* min_dropped_frames) Unwind() argument 87 GetStackFrames( void** result, int* sizes, int max_depth, int skip_count) GetStackFrames() argument 101 GetStackTrace( void** result, int max_depth, int skip_count) GetStackTrace() argument [all...] |
H A D | stacktrace.h | 41 // Records program counter values for up to `max_depth` frames, skipping the 81 extern int GetStackFrames(void** result, int* sizes, int max_depth, 87 // program counter values for up to `max_depth` frames, skipping the most recent 104 // max_depth + *min_dropped_frames. 105 extern int GetStackFramesWithContext(void** result, int* sizes, int max_depth, 111 // Records program counter values for up to `max_depth` frames, skipping the 133 extern int GetStackTrace(void** result, int max_depth, int skip_count); 138 // program counter values for up to `max_depth` frames, skipping the most recent 154 // max_depth + *min_dropped_frames. 155 extern int GetStackTraceWithContext(void** result, int max_depth, [all...] |
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-webdriver-serializer.cc | 20 v8::Local<v8::Value> value, v8::Local<v8::Context> context, int max_depth, in _serializeRecursively() 25 mirror->buildWebDriverValue(context, max_depth - 1, &webDriver_value); in _serializeRecursively() 74 v8::Local<v8::RegExp> value, v8::Local<v8::Context> context, int max_depth, in _serializeRegexp() 97 v8::Local<v8::Date> value, v8::Local<v8::Context> context, int max_depth, in _serializeDate() 109 v8::Local<v8::Array> value, v8::Local<v8::Context> context, int max_depth, in _serializeArrayValue() 120 Response response = _serializeRecursively(element_value, context, max_depth, in _serializeArrayValue() 131 v8::Local<v8::Array> value, v8::Local<v8::Context> context, int max_depth, in _serializeArray() 137 if (max_depth <= 0) return Response::Success(); in _serializeArray() 141 _serializeArrayValue(value, context, max_depth, &result_value); in _serializeArray() 149 v8::Local<v8::Map> value, v8::Local<v8::Context> context, int max_depth, in _serializeMap() 19 _serializeRecursively( v8::Local<v8::Value> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Value>* result) _serializeRecursively() argument 73 _serializeRegexp( v8::Local<v8::RegExp> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Runtime::WebDriverValue>* result) _serializeRegexp() argument 96 _serializeDate( v8::Local<v8::Date> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Runtime::WebDriverValue>* result) _serializeDate() argument 108 _serializeArrayValue( v8::Local<v8::Array> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Value>* result) _serializeArrayValue() argument 130 _serializeArray( v8::Local<v8::Array> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Runtime::WebDriverValue>* result) _serializeArray() argument 148 _serializeMap( v8::Local<v8::Map> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Runtime::WebDriverValue>* result) _serializeMap() argument 201 _serializeSet( v8::Local<v8::Set> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Runtime::WebDriverValue>* result) _serializeSet() argument 219 _serializeObjectValue( v8::Local<v8::Object> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Value>* result) _serializeObjectValue() argument 271 _serializeObject( v8::Local<v8::Object> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Runtime::WebDriverValue>* result) _serializeObject() argument 289 serializeV8Value( v8::Local<v8::Object> value, v8::Local<v8::Context> context, int max_depth, std::unique_ptr<protocol::Runtime::WebDriverValue>* result) serializeV8Value() argument [all...] |
H A D | v8-webdriver-serializer.h | 20 int max_depth,
|
/third_party/python/Lib/xml/etree/ |
H A D | ElementInclude.py | 107 # @param max_depth The maximum number of recursive inclusions. 110 # @throws LimitedRecursiveIncludeError If the {@link max_depth} was exceeded. 117 max_depth=DEFAULT_MAX_INCLUSION_DEPTH): 118 if max_depth is None: 119 max_depth = -1 120 elif max_depth < 0: 121 raise ValueError("expected non-negative depth or None for 'max_depth', got %r" % max_depth) 128 _include(elem, loader, base_url, max_depth, set()) 131 def _include(elem, loader, base_url, max_depth, _parent_href [all...] |
/third_party/node/deps/v8/src/base/debug/ |
H A D | stack_trace_android.cc | 23 StackCrawlState(uintptr_t* frames, size_t max_depth) in StackCrawlState() 26 max_depth(max_depth), in StackCrawlState() 31 size_t max_depth; member 46 if (state->frame_count >= state->max_depth) in TraceStackFrame()
|
/third_party/jerryscript/jerry-core/vm/ |
H A D | vm-utils.c | 101 vm_get_backtrace (uint32_t max_depth) /**< maximum backtrace depth, 0 = unlimited */ in vm_get_backtrace() argument 106 if (max_depth == 0) in vm_get_backtrace() 108 max_depth = UINT32_MAX; in vm_get_backtrace() 135 if (index >= max_depth) in vm_get_backtrace() 143 JERRY_UNUSED (max_depth); in vm_get_backtrace()
|
/third_party/elfutils/libdw/ |
H A D | dwarf_peel_type.c | 52 int max_depth = MAX_DEPTH; in dwarf_peel_type() local 61 && max_depth-- > 0) in dwarf_peel_type() 75 if (tag == DW_TAG_invalid || max_depth <= 0) in dwarf_peel_type()
|
/third_party/gn/src/base/json/ |
H A D | json_reader.cc | 37 JSONReader::JSONReader(int options, int max_depth) 38 : parser_(new internal::JSONParser(options, max_depth)) {} 45 int max_depth) { 46 internal::JSONParser parser(options, max_depth);
|
H A D | json_reader.h | 88 JSONReader(int options = JSON_PARSE_RFC, int max_depth = kStackMaxDepth); 98 int max_depth = kStackMaxDepth);
|
H A D | json_parser.cc | 32 StackMarker(int max_depth, int* depth) in StackMarker() argument 33 : max_depth_(max_depth), depth_(depth) { in StackMarker() 56 JSONParser::JSONParser(int options, int max_depth) in JSONParser() argument 58 max_depth_(max_depth), in JSONParser() 66 CHECK_LE(max_depth, JSONReader::kStackMaxDepth); in JSONParser()
|
/third_party/node/deps/brotli/c/enc/ |
H A D | bit_cost_inc.h | 73 size_t max_depth = 1; in BrotliPopulationCost() local 87 if (depth > max_depth) { in BrotliPopulationCost() 88 max_depth = depth; in BrotliPopulationCost() 120 bits += (double)(18 + 2 * max_depth); in BrotliPopulationCost()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | bit_cost_inc.h | 73 size_t max_depth = 1; in BrotliPopulationCost() local 87 if (depth > max_depth) { in BrotliPopulationCost() 88 max_depth = depth; in BrotliPopulationCost() 120 bits += (double)(18 + 2 * max_depth); in BrotliPopulationCost()
|
/third_party/ffmpeg/libavcodec/ |
H A D | get_bits.h | 692 * If the vlc code is invalid and max_depth=1, then no bits will be removed. 693 * If the vlc code is invalid and max_depth>1, then the number of bits removed 696 #define GET_VLC(code, name, gb, table, bits, max_depth) \ 705 if (max_depth > 1 && n < 0) { \ 714 if (max_depth > 2 && n < 0) { \ 729 max_depth, need_update) \ 738 if (max_depth > 1 && n < 0) { \ 749 if (max_depth > 2 && n < 0) { \ 782 * @param max_depth is the number of times bits bits must be read to completely 788 int bits, int max_depth) [all...] |
H A D | dcahuff.h | 38 int max_depth; ///< Parameter for get_vlc2() member
|
/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | huffman_encode_utils.c | 245 int max_depth = bit_depths[0]; in GenerateOptimalTree() local 247 if (max_depth < bit_depths[j]) { in GenerateOptimalTree() 248 max_depth = bit_depths[j]; in GenerateOptimalTree() 251 if (max_depth <= tree_depth_limit) { in GenerateOptimalTree()
|
/third_party/rust/crates/cxx/gen/build/src/ |
H A D | lib.rs | 378 let max_depth = 6; in make_crate_dir() 379 best_effort_copy_headers(manifest_dir, link, max_depth); in make_crate_dir() 431 fn best_effort_copy_headers(src: &Path, dst: &Path, max_depth: usize) { in best_effort_copy_headers() 447 Ok(file_type) if file_type.is_dir() && max_depth > 0 => { in best_effort_copy_headers() 453 best_effort_copy_headers(&src, &dst, max_depth - 1); in best_effort_copy_headers()
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | json_stream_parser.h | 87 void set_max_recursion_depth(int max_depth) { in set_max_recursion_depth() argument 88 max_recursion_depth_ = max_depth; in set_max_recursion_depth()
|
/third_party/ltp/testcases/kernel/fs/inode/ |
H A D | inode02.c | 85 int max_depth, max_breadth, file_length; variable 138 max_depth = 6; in main() 145 ("\tinode02 max_depth max_breadth file_length #children\n\tdefault: inode02 6 5 8 5\n"); in main() 149 if (sscanf(argv[i++], "%d", &max_depth) != 1) in main() 220 "Bad argument - %s - could not parse as number.\n\tinode02 [max_depth] [max_breadth] [file_length] [#children]\n\tdefault: inode02 6 5 8 5\n", in bd_arg() 422 } else if (level < max_depth) { in generate()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_test_dma.c | 210 unsigned bpp, max_width, max_height, max_depth, j, num; in r600_test_dma() local 300 max_depth = MIN2(tsrc.array_size, tdst.array_size); in r600_test_dma() 314 depth = max_depth; in r600_test_dma() 319 depth = (rand() % max_depth) + 1; in r600_test_dma()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-create-lowering.h | 103 int max_depth, 107 AllocationType allocation, int max_depth, int* max_properties);
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-sanitize.hh | 283 bool check_start_recursion (int max_depth) in check_start_recursion() 285 if (unlikely (recursion_depth >= max_depth)) return false; in check_start_recursion()
|
/third_party/jerryscript/jerry-core/debugger/ |
H A D | debugger.c | 126 uint32_t max_depth; in jerry_debugger_send_backtrace() local 127 memcpy (&max_depth, get_backtrace_p->max_depth, sizeof (uint32_t)); in jerry_debugger_send_backtrace() 129 if (max_depth == 0) in jerry_debugger_send_backtrace() 131 max_depth = UINT32_MAX; in jerry_debugger_send_backtrace() 164 if (min_depth <= max_depth) in jerry_debugger_send_backtrace() 174 while (frame_ctx_p != NULL && min_depth_offset++ < max_depth) in jerry_debugger_send_backtrace()
|
/third_party/jerryscript/jerry-debugger/ |
H A D | jerry_client_main.py | 451 max_depth = 0 464 max_depth = int(args[1]) 465 if max_depth <= 0 or min_depth < 0: 467 if min_depth > max_depth: 470 max_depth = int(args[0]) 471 if max_depth <= 0: 483 max_depth,
|
/third_party/python/Lib/test/ |
H A D | test_runpy.py | 561 max_depth = 4 567 for depth in range(1, max_depth): 574 pkg_name = ".".join([base_name] * max_depth) 578 self._make_pkg("", max_depth)) 580 for depth in range(2, max_depth+1):
|