Searched defs:first_length (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/
H A Dhandles.cc845 int first_length = first->length(); local
846 if (first_length - from > to - first_length) {
847 if (first_length < to) {
853 to - first_length,
861 to = first_length;
867 if (first_length > from) {
870 total += first_length - from;
875 to -= first_length;
878 total += to - first_length;
[all...]
H A Dheap.cc3000 int first_length = first->length(); local
3001 if (first_length == 0) {
3010 int length = first_length + second_length;
3064 for (int i = 0; i < first_length; i++) *dest++ = src[i];
3081 String::WriteToFlat(first, dest, 0, first_length);
3082 String::WriteToFlat(second, dest + first_length, 0, second_length);
3093 String::WriteToFlat(first, dest, 0, first_length);
3094 String::WriteToFlat(second, dest + first_length, 0, second_length);
H A Dobjects.cc870 int first_length = first->length(); local
872 WriteToFlat(first, dest, 0, first_length);
875 dest + first_length,
877 len - first_length);
886 int first_length = first->length(); local
887 WriteToFlat(first, dest, 0, first_length);
890 dest + first_length,
892 len - first_length);
/external/v8/test/cctest/
H A Dtest-regexp.cc1488 int first_length = un_canonicalize.get(block_start, '\0', first); local
1492 CHECK_EQ(first_length, succ_length);

Completed in 119 milliseconds