Home | History | Annotate | Download | only in compiler

Lines Matching defs:Start

227     char                    *Start;
233 /* Skip lines that start with a space */
241 /* Setup pointers to start and end of input string */
243 Start = String;
248 while ((Start <= End) && ((*Start == ' ') || (*Start == '\t')))
250 Start++;
255 while (End >= Start)
273 if (*Start == '\"')
275 Start++;
284 Length = ACPI_PTR_DIFF (End, Start) + 1;
286 if (strlen (Start))
288 memcpy (ReturnString, Start, Length);
316 char *Start;
348 Start = LineBuffer;
351 while (Start < Colon)
353 if (*Start == '[')
357 while (Start < Colon && *Start != ']')
359 Start++;
362 else if (*Start != ' ')
367 Start++;
375 NameColumn = ACPI_PTR_DIFF (Start, LineBuffer) + 1;
377 Length = ACPI_PTR_DIFF (End, Start);
380 memcpy (TmpName, Start, Length);
384 Start = End = (Colon + 1);
425 Length = ACPI_PTR_DIFF (End, Start);
428 memcpy (TmpValue, Start, Length);
459 * RETURN: Filled line buffer and offset of start-of-line (ASL_EOF on EOF)
604 /* Toss this line and start a new one */
809 * RETURN: Pointer to start of the constructed parse tree.