Home | History | Annotate | Download | only in compiler

Lines Matching defs:End

228     char                    *End;
241 /* Setup pointers to start and end of input string */
244 End = String + strlen (String) - 1;
248 while ((Start <= End) && ((*Start == ' ') || (*Start == '\t')))
255 while (End >= Start)
257 if (*End == '\n')
259 End--;
263 if (*End != ' ')
268 End--;
277 if (*End == '\"')
279 End--;
284 Length = ACPI_PTR_DIFF (End, Start) + 1;
317 char *End;
349 End = Colon;
377 Length = ACPI_PTR_DIFF (End, Start);
384 Start = End = (Colon + 1);
385 while (*End)
389 if (*End == '"')
391 End++;
395 if (*End == '"')
399 while (*End && (*End != '"'))
401 End++;
404 End++;
409 * Special "comment" fields at line end, ignore them.
416 if (*End == '[')
418 End--;
422 End++;
425 Length = ACPI_PTR_DIFF (End, Start);
624 /* Insert raw chars until end of quoted string */
723 /* Ignore chars until end-of-line */
736 /* End comment if this char is a slash */