HomeSort by relevance Sort by last modified time
    Searched full:common_suffix_len (Results 1 - 1 of 1) sorted by null

  /external/v8/src/
liveedit.cc 313 int common_suffix_len; local
323 common_suffix_len = 0;
326 while (common_suffix_len < suffix_limit &&
327 input->Equals(len1 - common_suffix_len - 1,
328 len2 - common_suffix_len - 1)) {
329 common_suffix_len++;
333 if (common_prefix_len > 0 || common_suffix_len > 0) {
334 int new_len1 = len1 - common_suffix_len - common_prefix_len;
335 int new_len2 = len2 - common_suffix_len - common_prefix_len;
    [all...]

Completed in 433 milliseconds