HomeSort by relevance Sort by last modified time
    Searched defs:beginning (Results 1 - 5 of 5) sorted by null

  /external/srec/portable/src/
LCHAR.c 28 size_t beginning, ending, len; local
32 /* locating first non-whitespace character from beginning */
33 for (beginning = 0; beginning < len && LISSPACE(text[beginning]); ++beginning);
35 for (ending = len - 1; ending > beginning && LISSPACE(text[ending]); --ending);
37 if (beginning > 0 && beginning <= ending)
38 LMEMMOVE(text, text + beginning, ending - beginning + 1)
    [all...]
PFileSystem.c 67 const LCHAR* beginning; local
83 beginning = linear;
86 ending = LSTRCHR(beginning, L('/'));
88 ending = beginning + LSTRLEN(beginning);
89 value = MALLOC(sizeof(LCHAR) * (ending - beginning + 1 + 1), MTAG);
96 LSTRNCPY(value, beginning, ending - beginning + 1);
97 value[ending-beginning+1] = L('\0');
111 beginning = ending + 1
    [all...]
  /external/srec/shared/src/
SessionTypeImpl.c 1016 size_t size, pos, beginning; local
1024 /* Scan for beginning of next token */
1029 /* Reached end of string while looking for beginning of next token */
1032 beginning = pos;
1037 CHKLOG(rc, lstrtoi(text + beginning, &value, 10));
    [all...]
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 474 LCHAR* beginning = source; local
478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning);
479 if (*beginning==L('\0'))
482 if(*beginning == '\"') {
483 beginning++;
484 for (ending=beginning; *ending!=L('\0') && *ending!='\"'; ++ending);
488 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending);
490 if ((size_t) (ending-beginning) > *charsRead
    [all...]
  /external/srec/srec/test/SRecTestAudio/src/
SRecTestAudio.c 474 LCHAR* beginning = source; local
478 for (; *beginning!=L('\0') && LISSPACE(*beginning); ++beginning);
479 if (*beginning==L('\0'))
482 for (ending=beginning; *ending!=L('\0') && !LISSPACE(*ending); ++ending);
483 if ((size_t) (ending-beginning) > *charsRead)
485 *charsRead = ending-beginning;
489 LSTRNCPY(target, beginning, ending-beginning);
    [all...]

Completed in 53 milliseconds