Home
last modified time | relevance | path

Searched refs:__p (Results 1 – 6 of 6) sorted by relevance

/picolibc-latest/newlib/libc/stdio/
Dlocal.h293 #define __swputc_raw(__c, __p) \ argument
294 (--(__p)->_w < 0 ? \
295 (__p)->_w >= (__p)->_lbfsize ? \
296 (*(__p)->_p = (__c)), *(__p)->_p != '\n' ? \
297 (int)*(__p)->_p++ : \
298 __swbufw('\n', __p) : \
299 __swbufw((int)(__c), __p) : \
300 (*(__p)->_p = (__c), (int)*(__p)->_p++))
302 #define __swputc(__c, __p) \ argument
303 ((((__p)->_flags & __SCLE) && ((__c) == '\n')) \
[all …]
Dstdio.h673 _ELIDABLE_INLINE int _sgetc( FILE *__p);
675 _ELIDABLE_INLINE int _sgetc( FILE *__p) in _sgetc() argument
677 int __c = _sgetc_raw( __p); in _sgetc()
678 if ((__p->_flags & __SCLE) && (__c == '\r')) in _sgetc()
680 int __c2 = _sgetc_raw( __p); in _sgetc()
684 ungetc(__c2, __p); in _sgetc()
689 #define _sgetc( __p) _sgetc_raw( __p) argument
707 #define _sputc_raw( __c, __p) \ argument
708 (--(__p)->_w < 0 ? \
709 (__p)->_w >= (__p)->_lbfsize ? \
[all …]
/picolibc-latest/test/
Drounding-mode.c305 double __p = (param); \ in main()
307 printf("testing sqrt %s for value %a\n", #mode, __p); \ in main()
308 double __r = sqrt(__p); \ in main()
310 printf("ERROR %s: sqrt(%a) got %a expect %a\n", #mode, __p, __r, __e); \ in main()
349 float __p = (param); \ in main()
351 printf("testing sqrtf %s for value %a\n", #mode, (double) __p); \ in main()
352 float __r = sqrtf(__p); \ in main()
354 …printf("ERROR %s: sqrtf(%a) got %a expect %a\n", #mode, (double) __p, (double) __r, (double) __e);… in main()
/picolibc-latest/newlib/libc/machine/x86/machine/
Dfastmath.h81 #define frexp(__x,__p) _f_frexp((__x),(__p)) argument
108 #define frexpf(__x,__p) _f_frexpf((__x),(__p)) argument
/picolibc-latest/newlib/libc/include/sys/
D_select.h73 fd_set *__p = (p); \
76 __p->__fds_bits[__i] = 0; \
Dtime.h69 int gettimeofday (struct timeval *__restrict __p,