Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching full:cost

22 struct COST
24 S *cost;
28 ~COST();
29 COST();
33 COST::COST()
35 cost = new S[3];
40 COST::~COST()
42 if (cost) {
43 delete [] cost;
52 COST c1;
56 COST c3;
58 COST c2;