Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsldap/common/
H A Dns_crypt.c94 int theLen = 0; in ascii2hex() local
100 theRes[theLen] = unhex(*anHexaStr) << 4; in ascii2hex()
102 theRes[theLen] += unhex(*anHexaStr); in ascii2hex()
105 theLen++; in ascii2hex()
107 theRes[theLen] = '\0'; in ascii2hex()
108 *aResLen = theLen; in ascii2hex()
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dsrcpath.c50 size_t theLen = strlen(dir); in srcpath() local
53 copy += theLen; in srcpath()
54 copyLen = (sizeof (tmppath) - theLen); in srcpath()
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Ddir.c125 appendToPath(struct pcdir *dp, char *thePath, int *theLen) in appendToPath() argument
138 if (*theLen < MAXPATHLEN) in appendToPath()
139 *(thePath + (*theLen)++) = '/'; in appendToPath()
144 while (*theLen < MAXPATHLEN && i < PCFNAMESIZE) { in appendToPath()
152 *(thePath + (*theLen)++) = dp->pcd_filename[i++]; in appendToPath()
157 if ((dp->pcd_ext[i] == ' ') || ((*theLen) >= MAXPATHLEN) || in appendToPath()
163 *(thePath + (*theLen)++) = '.'; in appendToPath()
165 while ((*theLen < MAXPATHLEN) && (i < PCFEXTSIZE)) { in appendToPath()
168 *(thePath + (*theLen)++) = dp->pcd_ext[i++]; in appendToPath()