Searched refs:theLen (Results 1 – 4 of 4) sorted by relevance
49 int theLen = 0; in hexa2str() local53 theRes[theLen] = unhex(*anHexaStr) << 4; in hexa2str()55 theRes[theLen] += unhex(*anHexaStr); in hexa2str()58 theLen++; in hexa2str()60 theRes[theLen] = '\0'; in hexa2str()61 * aResLen = theLen; in hexa2str()
99 int theLen = 0; in ascii2hex() local105 theRes[theLen] = unhex(*anHexaStr) << 4; in ascii2hex()107 theRes[theLen] += unhex(*anHexaStr); in ascii2hex()110 theLen++; in ascii2hex()112 theRes[theLen] = '\0'; in ascii2hex()113 *aResLen = theLen; in ascii2hex()
50 size_t theLen = strlen(dir); in srcpath() local53 copy += theLen; in srcpath()54 copyLen = (sizeof (tmppath) - theLen); in srcpath()
127 appendToPath(struct pcdir *dp, char *thePath, int *theLen) in appendToPath() argument140 if (*theLen < MAXPATHLEN) in appendToPath()141 *(thePath + (*theLen)++) = '/'; in appendToPath()146 while (*theLen < MAXPATHLEN && i < PCFNAMESIZE) { in appendToPath()154 *(thePath + (*theLen)++) = dp->pcd_filename[i++]; in appendToPath()159 if ((dp->pcd_ext[i] == ' ') || ((*theLen) >= MAXPATHLEN) || in appendToPath()165 *(thePath + (*theLen)++) = '.'; in appendToPath()167 while ((*theLen < MAXPATHLEN) && (i < PCFEXTSIZE)) { in appendToPath()170 *(thePath + (*theLen)++) = dp->pcd_ext[i++]; in appendToPath()