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

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

Completed in 60 milliseconds