Searched refs:_c (Results 1 – 5 of 5) sorted by relevance
/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/ |
D | spu_timer_internal.h | 131 #define __likely(_c) __builtin_expect((_c), 1) argument 132 #define __unlikely(_c) __builtin_expect((_c), 0) argument
|
/picolibc-3.7.0-3.6.0/newlib/libc/stdio/ |
D | stdio.h | 696 _ELIDABLE_INLINE int _sputc( int _c, FILE *_p) { in _sputc() argument 698 if ((_p->_flags & __SCLE) && _c == '\n') in _sputc() 701 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) in _sputc() 702 return (*_p->_p++ = (unsigned char) _c); in _sputc() 704 return (_swbuf( _c, _p)); in _sputc() 757 _putchar_unlocked(int _c) in _putchar_unlocked() argument 759 return (_sputc( _c, stdout)); in _putchar_unlocked() 764 #define putc(_c, _p) _sputc( _c, _p) argument 766 #define putchar(_c) _putchar_unlocked(_c) argument 771 #define putchar_unlocked(_c) _putchar_unlocked(_c) argument
|
D | local.h | 271 _ELIDABLE_INLINE int __swputc(int _c, FILE *_p) { in __swputc() argument 273 if ((_p->_flags & __SCLE) && _c == '\n') in __swputc() 276 if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n')) in __swputc() 277 return (*_p->_p++ = _c); in __swputc() 279 return (__swbufw(_c, _p)); in __swputc()
|
D | vfwscanf.c | 215 #define INCCL(_c) \ argument 216 (cclcompl ? (wmemchr(ccls, (_c), ccle - ccls) == NULL) : \ 217 (wmemchr(ccls, (_c), ccle - ccls) != NULL))
|
/picolibc-3.7.0-3.6.0/newlib/libm/machine/spu/headers/ |
D | cos_sin.h | 134 #define COMPUTE_COS_SIN_F(_x, _c, _s) { \ argument 147 _c = spu_madd(cos_hi, x6, cos_lo); \ 171 #define COMPUTE_COS_SIN(_x, _c, _s) { \ argument 186 _c = spu_madd(cos_hi, x8, cos_lo); \
|