Home
last modified time | relevance | path

Searched refs:strptr (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/board/freescale/common/
H A Dpixis.c362 static unsigned long strfractoint(char *strptr) in strfractoint() argument
376 while (strptr[i] != '.') { in strfractoint()
377 if (strptr[i] == 0) { in strfractoint()
381 intarr[i] = strptr[i]; in strfractoint()
394 while ((strptr[i] >= '0') && (strptr[i] <= '9')) { in strfractoint()
395 decarr[j] = strptr[i]; in strfractoint()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-cleanup.patch1314 - register char *strptr, *word;
1317 + char *strptr, *word;
1324 while (strptr) {
1325 word = strptr;
1326 - if (cp = strchr(strptr, ','))
1327 + if ((cp = strchr(strptr, ',')))
1329 strptr = cp;
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/fbida/files/
H A Dsupport-jpeg-turbo.patch779 + * *strptr is advanced over the digit string, and *result is set to its value.
783 +jt_read_integer (const char ** strptr, JDIMENSION * result)
785 + const char * ptr = *strptr;
792 + if (ptr == *strptr)
794 + *strptr = ptr;