HomeSort by relevance Sort by last modified time
    Searched refs:recursion_depth (Results 1 - 25 of 38) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
ceval.h 49 (_Py_MakeRecCheck(PyThreadState_GET()->recursion_depth) && \
52 (--PyThreadState_GET()->recursion_depth)
pystate.h 63 int recursion_depth; member in struct:_ts
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
ceval.h 49 (_Py_MakeRecCheck(PyThreadState_GET()->recursion_depth) && \
52 (--PyThreadState_GET()->recursion_depth)
pystate.h 63 int recursion_depth; member in struct:_ts
  /external/python/cpython2/Include/
ceval.h 49 (_Py_MakeRecCheck(PyThreadState_GET()->recursion_depth) && \
52 (--PyThreadState_GET()->recursion_depth)
pystate.h 63 int recursion_depth; member in struct:_ts
  /external/python/cpython3/Include/
symtable.h 33 int recursion_depth; /* current recursion depth */ member in struct:symtable
ceval.h 93 (_Py_MakeRecCheck(PyThreadState_GET()->recursion_depth) && \
96 do{ if(_Py_MakeEndRecCheck(PyThreadState_GET()->recursion_depth)) \
pystate.h 220 int recursion_depth; member in struct:_ts
  /external/python/cpython3/Lib/
string.py 194 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,
196 if recursion_depth < 0:
239 used_args, recursion_depth-1,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
string_format.h 50 int recursion_depth, AutoNumber *auto_number);
885 int recursion_depth, AutoNumber *auto_number)
911 tmp = build_string(format_spec, args, kwargs, recursion_depth-1,
946 OutputString *output, int recursion_depth, AutoNumber *auto_number)
967 args, kwargs, recursion_depth, auto_number))
980 int recursion_depth, AutoNumber *auto_number)
989 if (recursion_depth <= 0) {
1002 if (!do_markup(input, args, kwargs, &output, recursion_depth,
1035 int recursion_depth = 2; local
1041 return build_string(&input, args, kwargs, recursion_depth, &auto_number);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
string_format.h 50 int recursion_depth, AutoNumber *auto_number);
888 int recursion_depth, AutoNumber *auto_number)
914 tmp = build_string(format_spec, args, kwargs, recursion_depth-1,
949 OutputString *output, int recursion_depth, AutoNumber *auto_number)
970 args, kwargs, recursion_depth, auto_number))
983 int recursion_depth, AutoNumber *auto_number)
992 if (recursion_depth <= 0) {
1005 if (!do_markup(input, args, kwargs, &output, recursion_depth,
1038 int recursion_depth = 2; local
1044 return build_string(&input, args, kwargs, recursion_depth, &auto_number);
    [all...]
  /external/python/cpython2/Objects/stringlib/
string_format.h 50 int recursion_depth, AutoNumber *auto_number);
885 int recursion_depth, AutoNumber *auto_number)
911 tmp = build_string(format_spec, args, kwargs, recursion_depth-1,
946 OutputString *output, int recursion_depth, AutoNumber *auto_number)
967 args, kwargs, recursion_depth, auto_number))
980 int recursion_depth, AutoNumber *auto_number)
989 if (recursion_depth <= 0) {
1002 if (!do_markup(input, args, kwargs, &output, recursion_depth,
1035 int recursion_depth = 2; local
1041 return build_string(&input, args, kwargs, recursion_depth, &auto_number)
    [all...]
  /external/python/cpython3/Objects/stringlib/
unicode_format.h 35 int recursion_depth, AutoNumber *auto_number);
802 int recursion_depth, AutoNumber *auto_number)
828 tmp = build_string(format_spec, args, kwargs, recursion_depth-1,
862 _PyUnicodeWriter *writer, int recursion_depth, AutoNumber *auto_number)
891 args, kwargs, recursion_depth, auto_number))
905 int recursion_depth, AutoNumber *auto_number)
910 if (recursion_depth <= 0) {
920 if (!do_markup(input, args, kwargs, &writer, recursion_depth,
943 int recursion_depth = 2; local
952 return build_string(&input, args, kwargs, recursion_depth, &auto_number)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
string.py 567 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth):
568 if recursion_depth < 0:
593 used_args, recursion_depth-1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
string.py 553 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth):
554 if recursion_depth < 0:
579 used_args, recursion_depth-1)
  /external/python/cpython2/Lib/
string.py 567 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth):
568 if recursion_depth < 0:
593 used_args, recursion_depth-1)
  /external/libunwind/tests/
Gia64-test-stack.c 44 need to recurse RECURSION_DEPTH times to ensure all physical
47 #define RECURSION_DEPTH ((MAX_PHYS_STACKED + 94) / 95)
49 extern void touch_all (unsigned long recursion_depth);
120 else if (i > NSTACKS && i <= NSTACKS + RECURSION_DEPTH)
167 touch_all (RECURSION_DEPTH);
  /external/libexif/libexif/
exif-data.c 358 * \param[in] recursion_depth number of times this function has been
364 unsigned int ds, unsigned int offset, unsigned int recursion_depth)
379 if (recursion_depth > 30) {
423 exif_data_load_data_content (data, EXIF_IFD_EXIF, d, ds, o, recursion_depth + 1);
427 exif_data_load_data_content (data, EXIF_IFD_GPS, d, ds, o, recursion_depth + 1);
431 exif_data_load_data_content (data, EXIF_IFD_INTEROPERABILITY, d, ds, o, recursion_depth + 1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
errors.c 228 if (++tstate->recursion_depth > Py_GetRecursionLimit()) {
229 --tstate->recursion_depth;
242 --tstate->recursion_depth;
pystate.c 168 tstate->recursion_depth = 0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
errors.c 226 if (++tstate->recursion_depth > Py_GetRecursionLimit()) {
227 --tstate->recursion_depth;
240 --tstate->recursion_depth;
  /external/python/cpython2/Python/
errors.c 228 if (++tstate->recursion_depth > Py_GetRecursionLimit()) {
229 --tstate->recursion_depth;
239 --tstate->recursion_depth;
  /external/python/cpython3/Python/
errors.c 235 int recursion_depth = 0; local
298 recursion_depth++;
299 if (recursion_depth == Py_NORMALIZE_RECURSION_LIMIT) {
320 if (recursion_depth >= Py_NORMALIZE_RECURSION_LIMIT + 2) {
symtable.c 276 st->recursion_depth = (tstate->recursion_depth < INT_MAX / COMPILER_STACK_FRAME_SCALE) ?
277 tstate->recursion_depth * COMPILER_STACK_FRAME_SCALE : tstate->recursion_depth;
    [all...]

Completed in 3653 milliseconds

1 2