Lines Matching refs:res
82 int res; in sourceGetbuf() local
86 res = ((lctx->src->source) (lctx->src->context, buf, size)); in sourceGetbuf()
93 if (res == 0) { in sourceGetbuf()
95 } else if (res < 0) { in sourceGetbuf()
98 return res; in sourceGetbuf()
104 int res; in sourceGetchar() local
107 res = sourceGetbuf (ctx, &buf, 1); in sourceGetchar()
109 if (res == 1) { in sourceGetchar()
119 int res; in sinkPutbuf() local
123 res = (lctx->snk->sink) (lctx->snk->context, buf, size); in sinkPutbuf()
125 if (res <= 0) { in sinkPutbuf()
128 return res; in sinkPutbuf()