OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:common_suffix_len
(Results
1 - 2
of
2
) 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
...]
/external/chromium_org/v8/src/
liveedit.cc
316
int
common_suffix_len
;
local
326
common_suffix_len
= 0;
329
while (
common_suffix_len
< suffix_limit &&
330
input->Equals(len1 -
common_suffix_len
- 1,
331
len2 -
common_suffix_len
- 1)) {
332
common_suffix_len
++;
336
if (common_prefix_len > 0 ||
common_suffix_len
> 0) {
337
int new_len1 = len1 -
common_suffix_len
- common_prefix_len;
338
int new_len2 = len2 -
common_suffix_len
- common_prefix_len;
[
all
...]
Completed in 1754 milliseconds