Lines Matching refs:Sfulong_t
44 #define Sfulong_t uintmax_t
282 extern int sfulen _ARG_((Sfulong_t));
286 extern int sfputu _ARG_((Sfio_t*, Sfulong_t));
287 extern int sfputm _ARG_((Sfio_t*, Sfulong_t, Sfulong_t));
292 extern Sfulong_t sfgetu _ARG_((Sfio_t*));
293 extern Sfulong_t sfgetm _ARG_((Sfio_t*, Sfulong_t));
298 extern int _sfputu _ARG_((Sfio_t*, Sfulong_t));
299 extern int _sfputm _ARG_((Sfio_t*, Sfulong_t, Sfulong_t));
306 extern int _sfulen _ARG_((Sfulong_t));
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v)))
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m)))
353 #define __sf_ulen(v) ((Sfulong_t)(v) < SF_U1 ? 1 : (Sfulong_t)(v) < SF_U2 ? 2 : \
354 (Sfulong_t)(v) < SF_U3 ? 3 : (Sfulong_t)(v) < SF_U4 ? 4 : 5)
369 __INLINE__ int sfputu(Sfio_t* f, Sfulong_t v) { return __sf_putu(f,v); }
370 __INLINE__ int sfputm(Sfio_t* f, Sfulong_t v, Sfulong_t m)
378 __INLINE__ int sfulen(Sfulong_t v) { return __sf_ulen(v); }