Lines Matching defs:count
55 int count;
76 return (ps == NULL || ((const _GB2312State *)ps)->count == 0);
113 if (gs->count < 0 || gs->count > sizeof (gs->bytes)) {
124 ncopy = MIN(MIN(n, MB_CUR_MAX), sizeof (gs->bytes) - gs->count);
125 (void) memcpy(gs->bytes + gs->count, s, ncopy);
126 ocount = gs->count;
127 gs->count += ncopy;
129 n = gs->count;
139 gs->count = 0;
151 if (gs->count != 0) {