46 code results in cc65/cc65 or view all results on GitHub
| 69 | /* Combined symbol entry flags used within this module */ |
| 70 | #define SF_UNDEFMASK (SF_REFERENCED | SF_DEFINED | SF_IMPORT) |
| 71 | #define SF_UNDEFVAL (SF_REFERENCED) |
| 72 | |
| 73 | /* Symbol tables */ |
| 74 | SymTable* CurrentScope = 0; /* Pointer to current symbol table */ |
C
Showing the top match
Last indexed | 79 | /* Symbol reference management */ |
| 80 | unsigned SymCount; /* Number of symbols referenced */ |
| 81 | unsigned SymLimit; /* Memory allocated */ |
| … | |
| 85 | unsigned SecCount; /* Number of sections referenced */ |
| 86 | unsigned SecLimit; /* Memory allocated */ |
| 87 | ED_SecRef* SecRef; /* Section references */ |
C
Showing the top two matches
Last indexed | 122 | /* Output all global or referenced functions */ |
| 123 | SymTab = GetGlobalSymTab (); |
| 124 | Entry = SymTab->SymHead; |
| 125 | while (Entry) { |
| … | |
| 127 | /* Function which is defined and referenced or extern */ |
| 128 | OutputSegments (Entry->V.F.Seg); |
| 129 | } |
| 130 | Entry = Entry->NextSym; |
| 131 | } |
| 132 | } |
C
Showing the top two matches
Last indexed
Motorola 68K Assembly
Showing the top match
Last indexed
C
Showing the top match
Last indexed | 113 | /* Get the index of the referenced label */ |
| 114 | if (Which > 0) { |
| 115 | --Which; |
| 116 | } |
| 117 | Index = (int) ULabDefCount + Which; |
| … | |
| 134 | L = NewULabel (0); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | /* Mark the label as referenced */ |
| 139 | ++L->Ref; |
| 140 | |
| 141 | /* If the label is already defined, return its value, otherwise return |
C
Showing the top two matches
Last indexed
Motorola 68K Assembly
Showing the top match
Last indexed