Lines Matching refs:start

114 static int ForeachObjects(tObject ** ptrObject, tObject * start, tForeachStatus * fep, int n);
119 static void PutTokenBuffer(int start, int end);
179 static char *GetObjectParam(const char *str, char start, char end) in GetObjectParam() argument
181 int pos_start = GetCharPos(str, start); in GetObjectParam()
470 static int ForeachObjects(tObject ** ptrObject, tObject * start, tForeachStatus* fep, int n) in ForeachObjects() argument
485 while (start) in ForeachObjects()
487 if (isObjectOK(start, section, filter)) in ForeachObjects()
489 *ptrObject = start; in ForeachObjects()
491 fep->isLast = (start->next ? FALSE : TRUE); in ForeachObjects()
496 start = start->next; in ForeachObjects()
817 tOverlay *start; in ForeachAutoloads() local
822 start = AutoloadList.head; in ForeachAutoloads()
824 while (start) in ForeachAutoloads()
826 if (memtype == MEMTYPE_NONE || memtype == RecgSectionMemTypeByName(start->name)) in ForeachAutoloads()
830 start = start->next; in ForeachAutoloads()
833 start = AutoloadList.head; in ForeachAutoloads()
835 while (start) in ForeachAutoloads()
837 if (memtype == MEMTYPE_NONE || memtype == RecgSectionMemTypeByName(start->name)) in ForeachAutoloads()
839 Autoload = start; in ForeachAutoloads()
846 start = start->next; in ForeachAutoloads()
1014 tOverlay *start; in ForeachOverlays() local
1019 start = OverlayList.head; in ForeachOverlays()
1021 while (start) in ForeachOverlays()
1023 if (memtype == MEMTYPE_NONE || memtype == RecgSectionMemTypeByName(start->name)) in ForeachOverlays()
1027 start = start->next; in ForeachOverlays()
1030 start = OverlayList.head; in ForeachOverlays()
1032 while (start) in ForeachOverlays()
1034 if (memtype == MEMTYPE_NONE || memtype == RecgSectionMemTypeByName(start->name)) in ForeachOverlays()
1036 Overlay = start; in ForeachOverlays()
1043 start = start->next; in ForeachOverlays()
1414 static void PutTokenBuffer(int start, int end) in PutTokenBuffer() argument
1418 for (i = start; i <= end; i++) in PutTokenBuffer()