Searched refs:ListNode (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | globals.c | 293 ListNode *CurExGroups=NULL; /* Current list of exception groups for rule/alts */ 294 ListNode *CurElementLabels=NULL; 295 ListNode *CurAstLabelsInActions=NULL; /* MR27 */ 300 ListNode *CurActionLabels=NULL; /* MR10 Element Labels appearing in last action */ 302 ListNode *NumericPredLabels=NULL; /* MR10 << ... $1 ... >>? ONLY */ 303 ListNode *ContextGuardPredicateList=NULL; /* MR13 for re-evaluating predicates 331 ListNode *ForcedTokens = 0; /* list of token_id/token_num pairs to remap */ 332 ListNode *MetaTokenNodes=NULL; /* list of meta token refs such as token classes etc... */ 340 ListNode *ExprOrder=NULL; /* list of exprs as they are found in grammar */ 341 ListNode *BeforeActions=NULL;/* list of grammar actions before rules */ [all …]
|
D | generic.h | 68 } ListNode; typedef 81 ListNode *elist; /* linked list of elements in error set */ 89 ListNode *tlist; /* linked list of elements in token set */ 109 #define newListNode (ListNode *) calloc(1, sizeof(ListNode)); 136 ListNode *el_labels;/* list of element labels ref in all of rule */ 138 ListNode *ast_labels_in_actions; /* MR27 */
|
D | proto.h | 79 extern ListNode *CurElementLabels; 80 extern ListNode *CurAstLabelsInActions; /* MR27 */ 81 extern ListNode *ContextGuardPredicateList; /* MR13 */ 82 extern ListNode *CurActionLabels; 84 extern ListNode *NumericPredLabels; /* MR10 << ... $1 ... >>? ONLY */ 97 extern ListNode *ExprOrder; 98 extern ListNode **Cycles; 101 extern ListNode *BeforeActions, *AfterActions, *LexActions; 108 extern ListNode *LexMemberActions; /* MR1 */ 109 extern ListNode *LexPrefixActions; /* MR1 */ [all …]
|
D | misc.c | 272 ListNode *p; in RemapForcedTokens() 582 list_add( ListNode **list, void *e ) in list_add() 585 ListNode **list; in list_add() 589 ListNode *p, *tail; 597 ListNode *sentinel = newListNode; 605 tail = (ListNode *) (*list)->elem; /* get tail pointer */ 616 list_free(ListNode **list,int freeData) in list_free() 619 ListNode **list; in list_free() 623 ListNode *p; 624 ListNode *next; [all …]
|
D | dumpcycles.c | 18 ListNode *p; in dumpcycles()
|
D | bits.c | 247 ListNode *e; 339 ListNode *t, *e = NULL, *e1, *e2; in ComputeTokSets() 442 ListNode *t; in DumpRemainingTokSets() 474 ListNode *p; 1009 ListNode *t;
|
D | main.c | 845 ListNode *p; 860 ListNode *p; 1004 Cycles = (ListNode **) calloc(CLL_k+1, sizeof(ListNode *)); in init() 1432 ListNode * p; in CompleteContextGuards() 1453 ListNode *p; in CompleteTokenSetRefs()
|
D | gen.c | 277 ListNode *q; 325 ListNode *q; 382 dumpExceptions(ListNode *list) in dumpExceptions() 385 ListNode *list; in dumpExceptions() 388 ListNode *p; 417 genElementLabels(ListNode *list) in genElementLabels() 420 ListNode *list; in genElementLabels() 424 ListNode *p; 3957 ListNode *p; 4239 ListNode *p;
|
D | lex.c | 52 ListNode *p; in genLexDescr() 187 ListNode *p;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Dxe/ |
D | Service.c | 552 LIST_ENTRY *ListNode; in DxeRegisterCallBackWorker() local 564 ListNode = GetFirstNode (ListHead); in DxeRegisterCallBackWorker() 566 while (ListNode != ListHead) { in DxeRegisterCallBackWorker() 567 FnTableEntry = CR_FNENTRY_FROM_LISTNODE(ListNode, CALLBACK_FN_ENTRY, Node); in DxeRegisterCallBackWorker() 576 ListNode = GetNextNode (ListHead, ListNode); in DxeRegisterCallBackWorker() 611 LIST_ENTRY *ListNode; in DxeUnRegisterCallBackWorker() local 623 ListNode = GetFirstNode (ListHead); in DxeUnRegisterCallBackWorker() 625 while (ListNode != ListHead) { in DxeUnRegisterCallBackWorker() 626 FnTableEntry = CR_FNENTRY_FROM_LISTNODE(ListNode, CALLBACK_FN_ENTRY, Node); in DxeUnRegisterCallBackWorker() 634 RemoveEntryList (ListNode); in DxeUnRegisterCallBackWorker() [all …]
|