Home | History | Annotate | Download | only in i965

Lines Matching refs:latency

38  * compute a DAG of the dependencies (RAW ordering with latency, WAW
73 this->latency = 1 * chans * math_latency;
76 this->latency = 2 * chans * math_latency;
82 this->latency = 3 * chans * math_latency;
87 this->latency = 4 * chans * math_latency;
90 this->latency = 8 * chans * math_latency;
94 /* minimum latency, max is 12 rounds. */
95 this->latency = 5 * chans * math_latency;
98 this->latency = 2;
110 int latency;
129 void add_dep(schedule_node *before, schedule_node *after, int latency);
164 * schedule it @latency cycles after @before, but no guarantees there.
168 int latency)
177 before->child_latency[i] = MAX2(before->child_latency[i], latency);
196 before->child_latency[before->child_count] = latency;
207 add_dep(before, after, before->latency);
494 time + chosen->latency);