Home | History | Annotate | Download | only in compiler

Lines Matching refs:list_ptr

201 	struct schedule_instruction * list_ptr;
202 for (list_ptr = *list; list_ptr; prev = list_ptr,
203 list_ptr = list_ptr->NextReady) {
204 if (list_ptr == inst) {
983 struct schedule_instruction * list_ptr = *inst_list;
984 while (list_ptr && *inst_list && (*inst_list)->NextReady) {
986 if (list_ptr->Instruction->U.P.Alpha.Opcode != RC_OPCODE_NOP
987 && list_ptr->Instruction->U.P.RGB.Opcode
991 if (list_ptr->NumWriteValues == 1
992 && convert_rgb_to_alpha(s, list_ptr)) {
995 remove_inst_from_list(inst_list, list_ptr);
996 add_inst_to_list_score(&s->ReadyAlpha, list_ptr);
1001 &list_ptr->Instruction->U.P)) {
1002 remove_inst_from_list(&s->ReadyAlpha, list_ptr);
1004 pair_ptr->PairedInst = list_ptr;
1007 list_ptr = *inst_list;
1016 list_ptr = list_ptr->NextReady;
1071 struct schedule_instruction * list_ptr;
1072 for (list_ptr = *list; list_ptr; list_ptr = list_ptr->NextReady) {
1074 s->CalcScore(list_ptr);
1075 score = list_ptr->Score;
1078 *max_inst_out = list_ptr;