Lines Matching refs:cell_index
879 int cell_index = Int(0);
880 if (cell_index > 0) {
883 // The actual array index is (cell_index - 1).
884 cell_index -= 1;
888 // The actual array index is (-cell_index - 1).
889 cell_index = -cell_index - 1;
891 __ LoadFixedArrayElement(scratch, scratch, cell_index);
897 int cell_index = Int(0);
898 if (V8_UNLIKELY(cell_index < 0)) {
918 // The actual array index is (cell_index - 1).
919 cell_index -= 1;
920 __ LoadFixedArrayElement(scratch, scratch, cell_index);