| /src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| complexity.cc | 99 unsigned max_depth = 0; local 104 max_depth = MAX (max_depth, iter_c.m_max_depth); 106 return complexity (num_nodes + 1, max_depth + 1);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_symbolizer_markup.cc | 108 u32 max_depth; member in struct:__sanitizer::UnwindTraceArg 113 CHECK_LT(arg->stack->size, arg->max_depth); 117 return (arg->stack->size == arg->max_depth ? _URC_NORMAL_STOP 121 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { 122 CHECK_GE(max_depth, 2); 124 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; 137 u32 max_depth) {
|
| sanitizer_unwind_linux_libcdep.cc | 44 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth); 106 u32 max_depth; member in struct:__sanitizer::UnwindTraceArg 111 CHECK_LT(arg->stack->size, arg->max_depth); 119 if (arg->stack->size == arg->max_depth) return UNWIND_STOP; 123 void BufferedStackTrace::SlowUnwindStack(uptr pc, u32 max_depth) { 124 CHECK_GE(max_depth, 2); 126 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; 143 u32 max_depth) { 144 CHECK_GE(max_depth, 2); 146 SlowUnwindStack(pc, max_depth); [all...] |
| /src/external/bsd/ntp/dist/libntp/lib/isc/ |
| backtrace.c | 95 int max_depth; member in struct:__anon5100 108 if (arg->count == arg->max_depth) 124 arg.max_depth = maxaddrs;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_symbolizer_markup.cpp | 115 u32 max_depth; member in struct:__sanitizer::UnwindTraceArg 120 CHECK_LT(arg->stack->size, arg->max_depth); 124 return (arg->stack->size == arg->max_depth ? _URC_NORMAL_STOP 128 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { 129 CHECK_GE(max_depth, 2); 131 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; 143 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { 145 CHECK_GE(max_depth, 2);
|
| sanitizer_unwind_linux_libcdep.cpp | 45 backtrace_frame_t *backtrace, uptr ignore_depth, uptr max_depth); 75 u32 max_depth; member in struct:__sanitizer::__anon12056::UnwindTraceArg 80 CHECK_LT(arg->stack->size, arg->max_depth); 88 if (arg->stack->size == arg->max_depth) return UNWIND_STOP; 126 void BufferedStackTrace::UnwindSlow(uptr pc, u32 max_depth) { 127 CHECK_GE(max_depth, 2); 129 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; 151 void BufferedStackTrace::UnwindSlow(uptr pc, void *context, u32 max_depth) { 153 CHECK_GE(max_depth, 2); 155 UnwindSlow(pc, max_depth); [all...] |
| /src/sbin/fsck_lfs/ |
| bufcache.c | 70 int max_depth = 0; variable 148 hashmax, max_depth); 203 if (++depth > max_depth) 204 max_depth = depth;
|
| /src/external/bsd/unbound/dist/edns-subnet/ |
| addrtree.h | 76 addrlen_t max_depth; member in struct:addrtree 134 * @param max_depth: Tree will cap keys to this length. 143 addrtree_create(addrlen_t max_depth, void (*delfunc)(void *, void *),
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| pointer-query.h | 199 mutable unsigned max_depth; member in class:pointer_query
|
| ipa-inline.cc | 999 int max_depth = opt_for_fn (outer_node->decl, local 1003 max_depth = opt_for_fn (outer_node->decl, 1011 else if (depth > max_depth) 1032 We ensure that the frequency of recursing is at most 1 - (1/max_depth). 1033 This way the expected number of recursion is at most max_depth. */ 1036 sreal max_prob = (sreal)1 - ((sreal)1 / (sreal)max_depth);
|
| tree-ssa-math-opts.cc | 1777 of the sqrt chains to MAX_DEPTH. Return the tree holding the 1791 FRAC_PART == <SUM from i = 1 until MAX_DEPTH> (a[i] * (0.5**i)) 1827 tree arg0, tree arg1, HOST_WIDE_INT max_depth) 1842 gcc_assert (max_depth > 0); 1843 tree *cache = XALLOCAVEC (tree, max_depth + 1); 1846 synth_info.factors = XALLOCAVEC (bool, max_depth + 1); 1870 if (!representable_as_half_series_p (frac_part, max_depth, &synth_info)) 1877 alt_synth_info.factors = XALLOCAVEC (bool, max_depth + 1); 1881 if (representable_as_half_series_p (ceil_fract, max_depth, 1891 (max_depth + 1) * sizeof (bool)) 2108 unsigned int max_depth = speed_p local [all...] |
| tree-ssa-sccvn.cc | 8011 unsigned max_depth = param_rpo_vn_max_loop_depth; local 8013 if (loop_depth (loop) > max_depth) 8015 i < loop_depth (loop) - max_depth; ++i)
|
| /src/sys/arch/amiga/dev/ |
| grfabs_ccreg.h | 68 u_short max_depth; member in struct:display_mode_data
|
| /src/sys/arch/powerpc/oea/ |
| pmap.c | 2797 int max_depth = 0; local 2806 if (depth > max_depth) 2807 max_depth = depth; 2817 if (depth == max_depth) 2822 printf("Max depth found was %d\n", max_depth);
|
| /src/external/gpl3/binutils/dist/bfd/ |
| elf32-spu.c | 381 unsigned int max_depth; member in struct:call_info 3302 unsigned int max_depth = depth; local 3311 call->max_depth = depth + !call->is_pasted; 3314 if (!remove_cycles (call->fun, info, &call->max_depth)) 3316 if (max_depth < call->max_depth) 3317 max_depth = call->max_depth; 3340 *(unsigned int *) param = max_depth; 3401 /* qsort predicate to sort calls by priority, max_depth then count. * [all...] |
| /src/external/gpl3/binutils.old/dist/bfd/ |
| elf32-spu.c | 381 unsigned int max_depth; member in struct:call_info 3302 unsigned int max_depth = depth; local 3311 call->max_depth = depth + !call->is_pasted; 3314 if (!remove_cycles (call->fun, info, &call->max_depth)) 3316 if (max_depth < call->max_depth) 3317 max_depth = call->max_depth; 3340 *(unsigned int *) param = max_depth; 3401 /* qsort predicate to sort calls by priority, max_depth then count. * [all...] |
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_set_format_iso9660.c | 89 #define MAX_DEPTH 8 732 int max_depth; member in struct:iso9660::vdd 1072 iso9660->primary.max_depth = 0; 1076 iso9660->joliet.max_depth = 0; 2135 for (i = 0; i < iso9660->primary.max_depth; i++) 2141 for (i = 0; i < iso9660->joliet.max_depth; i++) 4212 for (depth = 0; depth < vdd->max_depth; depth++) { 4316 for (depth = 0; depth < vdd->max_depth; depth++) { 4342 !iso9660->opt.rr && depth + 1 >= vdd->max_depth)) 4388 !iso9660->opt.rr && depth + 1 >= vdd->max_depth)) { [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| pt.cc | 10768 max_depth (TMPL_PARMS_DEPTH (ctx_parms)) 10775 int max_depth; 10797 if (level == 0 || level > ftpi->max_depth) 10774 int max_depth; member in struct:find_template_parameter_info
|