Searched defs:char_cnt (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/brand/solaris10/s10_support/
H A Ds10_support.c154 int char_cnt = 0; local
169 char_cnt = len;
174 char_cnt += len - 2;
176 char_cnt += PKGINFO_RD_LEN - 1;
178 if ((p = realloc(start, char_cnt + PKGINFO_RD_LEN)) == NULL) {
184 inp = start + char_cnt;
187 if (errno == ENOMEM || (p == NULL && char_cnt == 0)) {
/illumos-gate/usr/src/boot/lib/libstand/
H A Dpkgfs.c521 pkg_atol8(const char *p, unsigned char_cnt) argument
540 while (digit >= 0 && digit < base && char_cnt-- > 0) {
560 pkg_atol256(const char *_p, unsigned char_cnt) argument
574 while (--char_cnt > 0) {
588 pkg_atol(const char *p, unsigned char_cnt) argument
595 return (pkg_atol256(p, char_cnt));
596 return (pkg_atol8(p, char_cnt));

Completed in 598 milliseconds