HomeSort by relevance Sort by last modified time
    Searched refs:final_length (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.c 603 int skip_next_lf = 0, needed_length = strlen(s) + 2, final_length; local
634 final_length = current - buf + 1;
635 if (final_length < needed_length && final_length)
637 buf = PyMem_REALLOC(buf, final_length);
    [all...]
  /external/libchrome/base/strings/
string_util.cc 773 size_t final_length = str_length; local
777 final_length += expansion;
785 str->resize(final_length);
788 for (size_t prev_match = str_length, write_offset = final_length; ;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.c 623 int skip_next_lf = 0, needed_length = strlen(s) + 2, final_length; local
654 final_length = current - buf + 1;
655 if (final_length < needed_length && final_length)
657 buf = PyMem_REALLOC(buf, final_length);
    [all...]
  /external/python/cpython2/Parser/
tokenizer.c 627 int skip_next_lf = 0, needed_length = strlen(s) + 2, final_length; local
658 final_length = current - buf + 1;
659 if (final_length < needed_length && final_length)
661 buf = PyMem_REALLOC(buf, final_length);
    [all...]

Completed in 866 milliseconds