Lines Matching refs:start
46 static int ForeachObjects(tObject ** ptrObject, tObject * start, int n);
51 static void PutTokenBuffer(int start, int end);
123 static char *GetObjectParam(const char *str, char start, char end) in GetObjectParam() argument
125 int pos_start = GetCharPos(str, start); in GetObjectParam()
424 static int ForeachObjects(tObject ** ptrObject, tObject * start, int n) in ForeachObjects() argument
437 while (start) in ForeachObjects()
439 if (isObjectOK(start, section, filter)) in ForeachObjects()
441 *ptrObject = start; in ForeachObjects()
445 start = start->next; in ForeachObjects()
455 static int ForeachObjectsForce(tObject ** ptrObject, tObject * start, int n) in ForeachObjectsForce() argument
468 while (start) in ForeachObjectsForce()
470 *ptrObject = start; in ForeachObjectsForce()
473 start = start->next; in ForeachObjectsForce()
711 tOverlay *start = AutoloadList.head; in ForeachAutoloads() local
713 while (start) in ForeachAutoloads()
715 Autoload = start; in ForeachAutoloads()
717 start = start->next; in ForeachAutoloads()
843 tOverlay *start = OverlayList.head; in ForeachOverlays() local
847 while (start) in ForeachOverlays()
849 if (memtype == MEMTYPE_NONE || memtype == RecgSectionMemTypeByName(start->name)) in ForeachOverlays()
851 Overlay = start; in ForeachOverlays()
854 start = start->next; in ForeachOverlays()
952 tOverlay *start = LtdautoloadList.head; in ForeachLtdautoloads() local
954 while (start) in ForeachLtdautoloads()
956 Ltdautoload = start; in ForeachLtdautoloads()
958 start = start->next; in ForeachLtdautoloads()
1083 tOverlay *start = LtdoverlayList.head; in ForeachLtdoverlays() local
1087 while (start) in ForeachLtdoverlays()
1089 if (memtype == MEMTYPE_NONE || memtype == RecgSectionMemTypeByName(start->name)) in ForeachLtdoverlays()
1091 Ltdoverlay = start; in ForeachLtdoverlays()
1094 start = start->next; in ForeachLtdoverlays()
1421 static void PutTokenBuffer(int start, int end) in PutTokenBuffer() argument
1425 for (i = start; i <= end; i++) in PutTokenBuffer()