Symbol: RING_CNT
usr/src/uts/common/io/asy.c
3239
if ((RING_CNT(async) > (RINGSIZE * 3)/4) &&
usr/src/uts/common/io/asy.c
3488
cc = RING_CNT(async);
usr/src/uts/common/io/asy.c
3558
if ((cc = RING_CNT(async)) == 0)
usr/src/uts/common/io/asy.c
3626
if ((RING_CNT(async) < (RINGSIZE/4)) &&
usr/src/uts/common/sys/asy.h
317
#define RING_FRAC(ap) ((int)RING_CNT(ap) >= (int)(RINGSIZE/RINGFRAC))
usr/src/uts/common/sys/asy.h
318
#define RING_POK(ap, n) ((int)RING_CNT(ap) < (int)(RINGSIZE-(n)))
usr/src/uts/common/sys/asy.h
322
#define RING_GOK(ap, n) ((int)RING_CNT(ap) >= (int)(n))
usr/src/uts/sun/sys/ser_async.h
83
#define RING_FRAC(zap) ((int)RING_CNT(zap) >= (int)(RINGSIZE/RINGFRAC))
usr/src/uts/sun/sys/ser_async.h
84
#define RING_POK(zap, n) ((int)RING_CNT(zap) < (int)(RINGSIZE-(n)))
usr/src/uts/sun/sys/ser_async.h
88
#define RING_GOK(zap, n) ((int)RING_CNT(zap) >= (int)(n))
usr/src/uts/sun4/io/su_driver.c
1895
if ((int)(RING_CNT(async)) > (RINGSIZE * 3)/4) {
usr/src/uts/sun4/io/su_driver.c
2057
cc = RING_CNT(async);
usr/src/uts/sun4/io/su_driver.c
2196
if ((cc = RING_CNT(async)) == 0) {
usr/src/uts/sun4/io/su_driver.c
2222
((int)(RING_CNT(async)) < (RINGSIZE/4))) {
usr/src/uts/sun4/sys/sudev.h
202
#define RING_FRAC(ap) ((int)RING_CNT(ap) >= (int)(RINGSIZE/RINGFRAC))
usr/src/uts/sun4/sys/sudev.h
203
#define RING_POK(ap, n) ((int)RING_CNT(ap) < (int)(RINGSIZE-(n)))
usr/src/uts/sun4/sys/sudev.h
207
#define RING_GOK(ap, n) ((int)RING_CNT(ap) >= (int)(n))
usr/src/uts/sun4v/io/qcn.c
1004
cc = RING_CNT(qcn_state);
usr/src/uts/sun4v/io/qcn.c
1089
if (RING_CNT(qcn_state) <= 0) {
usr/src/uts/sun4v/sys/qcn.h
52
#define RING_POK(qsp, n) ((int)RING_CNT(qsp) < (int)(RINGSIZE-(n)))