Searched defs:new_index (Results 51 - 55 of 55) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp418 void rename_temp_register(int index, int new_index);
3082 glsl_to_tgsi_visitor::rename_temp_register(int index, int new_index) argument
3091 inst->src[j].index = new_index;
3096 inst->dst.index = new_index;
3661 int new_index = 0; local
3665 if (i != new_index)
3666 rename_temp_register(i, new_index);
3667 new_index++;
3670 this->next_temp = new_index;
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp418 void rename_temp_register(int index, int new_index);
3082 glsl_to_tgsi_visitor::rename_temp_register(int index, int new_index) argument
3091 inst->src[j].index = new_index;
3096 inst->dst.index = new_index;
3661 int new_index = 0; local
3665 if (i != new_index)
3666 rename_temp_register(i, new_index);
3667 new_index++;
3670 this->next_temp = new_index;
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.cc1812 HInstruction* new_index = HBitwise::New(zone, context, token, index_base, local
1814 ASSERT(new_index->IsBitwise());
1815 new_index->ClearAllSideEffects();
1816 new_index->AssumeRepresentation(Representation::Integer32());
1817 set_added_index(HBitwise::cast(new_index));
H A Dhydrogen.cc3695 HInstruction* new_index = New<HAdd>(current_index, local
3697 PushAndAdd(new_index);
/external/v8/src/
H A Dhydrogen.cc3413 HInstruction* new_index = new(zone()) HAdd(environment()->LookupContext(), local
3416 new_index->AssumeRepresentation(Representation::Integer32());
3417 PushAndAdd(new_index);

Completed in 184 milliseconds

123