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

/darwin-on-arm/xnu/libkern/
H A DOSKextVersion.c398 int cpos = 0; local
450 cpos = snprintf(buffer, bufferLength, "%u", (uint32_t)vers_major);
454 buffer[cpos] = '.';
455 cpos++;
456 cpos += snprintf(buffer+cpos, bufferLength - cpos, "%u", (uint32_t)vers_minor);
461 buffer[cpos] = '.';
462 cpos++;
463 cpos
[all...]
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_serv.c3892 char *cpos, *cend, *rbuf; local
4012 cpos = rbuf;
4014 dp = (struct direntry *)cpos;
4015 while ((dp->d_fileno == 0) && (cpos < cend) && (nentries > 0)) {
4016 cpos += dp->d_reclen;
4017 dp = (struct direntry *)cpos;
4020 if ((cpos >= cend) || (nentries == 0)) {
4047 while ((cpos < cend) && (nentries > 0)) {
4077 cpos += dp->d_reclen;
4078 dp = (struct direntry *)cpos;
4114 char *cpos, *cend, *rbuf; local
[all...]
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_subr.c7891 char *rbuf = NULL, *cpos, *cend; local
7945 cpos = rbuf;
7947 dp = (struct dirent*) cpos;
7949 if (cpos == cend)
7952 while ((cpos < cend)) {
7970 cpos += dp->d_reclen;
7971 dp = (struct dirent*)cpos;
8017 cpos = rbuf;
8019 dp = (struct dirent*) cpos;
8021 if (cpos
[all...]

Completed in 29 milliseconds