Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:COST

23 struct COST
25 S *cost;
29 ~COST();
30 COST();
34 COST::COST()
36 cost = new S[3];
41 COST::~COST()
43 if (cost) {
44 delete [] cost;
53 COST c1;
57 COST c3;
59 COST c2;