Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Data

15 // Recursive data structure tests...
18 int Data;
22 list *Data;
28 Data = (list*)malloc(12); // This is not a proper list allocation
41 void InsertIntoListTail(list **L, int Data) {
45 (*L)->Data = Data;
50 list *FindData(list *L, int Data) {
52 if (L->Data == Data) return L;
53 return FindData(L->Next, Data);