Searched refs:left_index (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/wasm/
H A Dasm-wasm-builder.cc864 TypeIndex left_index = TypeIndexOf(left); local
866 if (left_index == kFixnum) {
867 left_index = right_index;
870 right_index = left_index;
872 if (left_index == kFixnum && right_index == kFixnum) {
873 left_index = kInt32;
876 DCHECK((left_index == right_index) ||
877 (ignore_sign && (left_index <= 1) && (right_index <= 1)));
878 return left_index;
/external/v8/src/compiler/
H A Dregister-allocator.cc3241 size_t left_index = 0; local
3244 size_t current_index = left_index + (right_index - left_index) / 2;
3249 DCHECK(left_index < current_index);
3250 left_index = current_index;

Completed in 224 milliseconds