| /external/harfbuzz_ng/src/ | 
| D | hb-sanitize.hh | 126         recursion_depth (0),  in hb_sanitize_context_t() 210     this->recursion_depth = 0;  in start_processing() 288     if (unlikely (recursion_depth >= max_depth)) return false;  in check_start_recursion() 289     return ++recursion_depth;  in check_start_recursion() 294     recursion_depth--;  in end_recursion() 409   int recursion_depth;  member
  | 
| /external/python/cpython3/Include/internal/ | 
| D | pycore_ceval.h | 74     return (++tstate->recursion_depth > tstate->interp->ceval.recursion_limit  in _Py_MakeRecCheck() 79     return (++tstate->recursion_depth > tstate->interp->ceval.recursion_limit);  in _Py_MakeRecCheck() 100     tstate->recursion_depth--;  in _Py_LeaveRecursiveCall()
  | 
| D | pycore_compile.h | 32     int recursion_depth;            /* current recursion depth */  member
  | 
| D | pycore_symtable.h | 40     int recursion_depth;            /* current recursion depth */  member
  | 
| /external/python/cpython3/Python/ | 
| D | ast.c | 13     int recursion_depth;            /* current recursion depth */  member 142         if (++state->recursion_depth > state->recursion_limit) {  in validate_constant() 171         --state->recursion_depth;  in validate_constant() 187     if (++state->recursion_depth > state->recursion_limit) {  in validate_expr() 367     state->recursion_depth--;  in validate_expr() 509     if (++state->recursion_depth > state->recursion_limit) {  in validate_pattern() 647     state->recursion_depth--;  in validate_pattern() 679     if (++state->recursion_depth > state->recursion_limit) {  in validate_stmt() 861     state->recursion_depth--;  in validate_stmt() 936     starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ?  in _PyAST_Validate() [all …] 
 | 
| D | ast_opt.c | 492     if (++state->recursion_depth > state->recursion_limit) {  in astfold_expr() 595             state->recursion_depth--;  in astfold_expr() 608     state->recursion_depth--;  in astfold_expr() 655     if (++state->recursion_depth > state->recursion_limit) {  in astfold_stmt() 769     state->recursion_depth--;  in astfold_stmt() 801     if (++state->recursion_depth > state->recursion_limit) {  in astfold_pattern() 837     state->recursion_depth--;  in astfold_pattern() 871     starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ?  in _PyAST_Optimize() 872         tstate->recursion_depth * COMPILER_STACK_FRAME_SCALE : tstate->recursion_depth;  in _PyAST_Optimize() 873     state->recursion_depth = starting_recursion_depth;  in _PyAST_Optimize() [all …] 
 | 
| D | symtable.c | 308     starting_recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ?  in _PySymtable_Build() 309         tstate->recursion_depth * COMPILER_STACK_FRAME_SCALE : tstate->recursion_depth;  in _PySymtable_Build() 310     st->recursion_depth = starting_recursion_depth;  in _PySymtable_Build() 351     if (st->recursion_depth != starting_recursion_depth) {  in _PySymtable_Build() 354             starting_recursion_depth, st->recursion_depth);  in _PySymtable_Build() 1139     return --(ST)->recursion_depth,(X) 1202     if (++st->recursion_depth > st->recursion_limit) {  in symtable_visit_stmt() 1582     if (++st->recursion_depth > st->recursion_limit) {  in symtable_visit_expr() 1745     if (++st->recursion_depth > st->recursion_limit) {  in symtable_visit_pattern()
  | 
| /external/python/cpython2/Objects/stringlib/ | 
| D | string_format.h | 50              int recursion_depth, AutoNumber *auto_number); 885               int recursion_depth, AutoNumber *auto_number)  in output_markup()  argument 911         tmp = build_string(format_spec, args, kwargs, recursion_depth-1,  in output_markup() 946           OutputString *output, int recursion_depth, AutoNumber *auto_number)  in do_markup()  argument 967                                args, kwargs, recursion_depth, auto_number))  in do_markup() 980              int recursion_depth, AutoNumber *auto_number)  in build_string()  argument 989     if (recursion_depth <= 0) {  in build_string() 1002     if (!do_markup(input, args, kwargs, &output, recursion_depth,  in build_string() 1035     int recursion_depth = 2;  in do_string_format()  local 1041     return build_string(&input, args, kwargs, recursion_depth, &auto_number);  in do_string_format()
  | 
| /external/python/cpython3/Objects/stringlib/ | 
| D | unicode_format.h | 35              int recursion_depth, AutoNumber *auto_number); 807               int recursion_depth, AutoNumber *auto_number)  in output_markup()  argument 833         tmp = build_string(format_spec, args, kwargs, recursion_depth-1,  in output_markup() 867           _PyUnicodeWriter *writer, int recursion_depth, AutoNumber *auto_number)  in do_markup()  argument 896                                args, kwargs, recursion_depth, auto_number))  in do_markup() 910              int recursion_depth, AutoNumber *auto_number)  in build_string()  argument 915     if (recursion_depth <= 0) {  in build_string() 925     if (!do_markup(input, args, kwargs, &writer, recursion_depth,  in build_string() 948     int recursion_depth = 2;  in do_string_format()  local 957     return build_string(&input, args, kwargs, recursion_depth, &auto_number);  in do_string_format()
  | 
| /external/python/cpython3/Lib/ | 
| D | string.py | 169     def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,  argument 171         if recursion_depth < 0: 214                     used_args, recursion_depth-1,
  | 
| /external/python/cpython2/Include/ | 
| D | ceval.h | 49             (_Py_MakeRecCheck(PyThreadState_GET()->recursion_depth) &&  \ 52             (--PyThreadState_GET()->recursion_depth)
  | 
| D | pystate.h | 63     int recursion_depth;  member
  | 
| /external/python/cpython2/Lib/ | 
| D | string.py | 567     def _vformat(self, format_string, args, kwargs, used_args, recursion_depth):  argument 568         if recursion_depth < 0: 593                                             used_args, recursion_depth-1)
  | 
| /external/libexif/libexif/ | 
| D | exif-data.c | 365 			     unsigned int ds, unsigned int offset, unsigned int recursion_depth)  in exif_data_load_data_content()  argument 380 	if (recursion_depth > 30) {  in exif_data_load_data_content() 424 				exif_data_load_data_content (data, EXIF_IFD_EXIF, d, ds, o, recursion_depth + 1);  in exif_data_load_data_content() 428 				exif_data_load_data_content (data, EXIF_IFD_GPS, d, ds, o, recursion_depth + 1);  in exif_data_load_data_content() 432 				exif_data_load_data_content (data, EXIF_IFD_INTEROPERABILITY, d, ds, o, recursion_depth + 1);  in exif_data_load_data_content()
  | 
| /external/protobuf/python/google/protobuf/ | 
| D | json_format.py | 476     self.recursion_depth = 0 489     self.recursion_depth += 1 490     if self.recursion_depth > self.max_recursion_depth: 503     self.recursion_depth -= 1
  | 
| /external/cronet/third_party/protobuf/python/google/protobuf/ | 
| D | json_format.py | 476     self.recursion_depth = 0 489     self.recursion_depth += 1 490     if self.recursion_depth > self.max_recursion_depth: 503     self.recursion_depth -= 1
  | 
| /external/python/cpython2/Python/ | 
| D | errors.c | 228     if (++tstate->recursion_depth > Py_GetRecursionLimit()) {  in PyErr_NormalizeException() 229         --tstate->recursion_depth;  in PyErr_NormalizeException() 239     --tstate->recursion_depth;  in PyErr_NormalizeException()
  | 
| /external/python/cpython3/Include/cpython/ | 
| D | pystate.h | 69     int recursion_depth;  member
  | 
| /external/angle/third_party/abseil-cpp/absl/debugging/internal/ | 
| D | demangle.cc | 179   int recursion_depth;        // For stack exhaustion prevention.  member 190     ++state->recursion_depth;  in ComplexityGuard() 193   ~ComplexityGuard() { --state_->recursion_depth; }  in ~ComplexityGuard() 217     return state_->recursion_depth > kRecursionDepthLimit ||  in IsTooComplex() 263   state->recursion_depth = 0;  in InitState()
  | 
| /external/openscreen/third_party/abseil/src/absl/debugging/internal/ | 
| D | demangle.cc | 179   int recursion_depth;        // For stack exhaustion prevention.  member 190     ++state->recursion_depth;  in ComplexityGuard() 193   ~ComplexityGuard() { --state_->recursion_depth; }  in ~ComplexityGuard() 217     return state_->recursion_depth > kRecursionDepthLimit ||  in IsTooComplex() 261   state->recursion_depth = 0;  in InitState()
  | 
| /external/abseil-cpp/absl/debugging/internal/ | 
| D | demangle.cc | 179   int recursion_depth;        // For stack exhaustion prevention.  member 190     ++state->recursion_depth;  in ComplexityGuard() 193   ~ComplexityGuard() { --state_->recursion_depth; }  in ~ComplexityGuard() 217     return state_->recursion_depth > kRecursionDepthLimit ||  in IsTooComplex() 261   state->recursion_depth = 0;  in InitState()
  | 
| /external/cronet/third_party/abseil-cpp/absl/debugging/internal/ | 
| D | demangle.cc | 179   int recursion_depth;        // For stack exhaustion prevention.  member 190     ++state->recursion_depth;  in ComplexityGuard() 193   ~ComplexityGuard() { --state_->recursion_depth; }  in ~ComplexityGuard() 217     return state_->recursion_depth > kRecursionDepthLimit ||  in IsTooComplex() 263   state->recursion_depth = 0;  in InitState()
  | 
| /external/tensorflow/third_party/absl/abseil-cpp/absl/debugging/internal/ | 
| D | demangle.cc | 179   int recursion_depth;        // For stack exhaustion prevention.  member 190     ++state->recursion_depth;  in ComplexityGuard() 193   ~ComplexityGuard() { --state_->recursion_depth; }  in ~ComplexityGuard() 217     return state_->recursion_depth > kRecursionDepthLimit ||  in IsTooComplex() 261   state->recursion_depth = 0;  in InitState()
  | 
| /external/libtextclassifier/abseil-cpp/absl/debugging/internal/ | 
| D | demangle.cc | 179   int recursion_depth;        // For stack exhaustion prevention.  member 190     ++state->recursion_depth;  in ComplexityGuard() 193   ~ComplexityGuard() { --state_->recursion_depth; }  in ~ComplexityGuard() 217     return state_->recursion_depth > kRecursionDepthLimit ||  in IsTooComplex() 261   state->recursion_depth = 0;  in InitState()
  | 
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/debugging/internal/ | 
| D | demangle.cc | 179   int recursion_depth;        // For stack exhaustion prevention.  member 190     ++state->recursion_depth;  in ComplexityGuard() 193   ~ComplexityGuard() { --state_->recursion_depth; }  in ~ComplexityGuard() 217     return state_->recursion_depth > kRecursionDepthLimit ||  in IsTooComplex() 261   state->recursion_depth = 0;  in InitState()
  |